:root {
  --color-primary: #ff9d00;
  --color-bg: #121212;
  --color-bg-secondary: #212121;
  --color-text-primary: #ffffff;
  --color-text-secondary: #cccccc;
  --color-border: #10100f;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text-primary);
  font-family: 'Inter', sans-serif;
  margin: 0;
  overflow-x: hidden;
  position: relative;
}

.container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

section {
  position: relative;
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Button Styles */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 18px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 157, 0, 0.3);
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text-primary);
}

.btn-primary:hover {
  background-color: #e68e00;
}

/* Section Titles */
.section-title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin-top: 0;
  margin-bottom: 22px;
}

.section-subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  color: var(--color-text-primary);
  max-width: 500px;
  margin: 0 auto;
}

/* Background Elements */
.bg-element {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }
  .section-subtitle {
    font-size: 18px;
  }
}