/* Base Styles & Reset */
:root {
    --primary: #0CFF7F;
    --primary-dark: #00D66C;
    --secondary: #0172FF;
    --accent: #FF2E63;
    --dark: #080C16;
    --darker: #050810;
    --light: #F2F6FF;
    --gray: #ADB5C3;
    --dark-gray: #212531;

    --font-primary: 'Space Grotesk', sans-serif;
    --font-secondary: 'Rajdhani', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
}

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

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    background: none;
    border: none;
    outline: none;
    color: inherit;
}

/* Special Effects */
#noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    opacity: 0.035;
    pointer-events: none;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAMAAAAp4XiDAAAAUVBMVEWFhYWDg4N3d3dtbW17e3t1dXWBgYGHh4d5eXlzc3OLi4ubm5uVlZWPj4+NjY19fX2JiYl/f39ra2uRkZGZmZlpaWmXl5dvb29xcXGTk5NnZ2c8TV1mAAAAG3RSTlNAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEAvEOwtAAAFVklEQVR4XpWWB67c2BUFb3g557T/hRo9/WUMZHlgr4Bg8Z4qQgQJlHI4A8SzFVrapvmTF9O7dmYRFZ60YiBhJRCgh1FYhiLAmdvX0CzTOpNE77ME0Zty/nWWzchDtiqPLZ1F56Q9eO8OK3rPkNiXn98OvC+PodHvnBqClS4x1xnQowCm0gIKbVgN+qNbxUF8n5PTZMrKxjA7rHDV1S7fgBE2HsP5s7qrlGMBsaUQ9fYw9bZA4bSrChQ11/DO5i7I7H4LlCYCgcMBKYIXeFkUFYGCRZ+FZN8haCFDYa8wdIUDxzX8pFfD6fgzWA5FcYIoCRdE2jm8Z6PJA1I15OzP9YX9jkOwooxH2BkhGAzBtL1tP/eVNuMqbWwhx/Nj/nZAl3lKOXqUgxdLj8vQZ4i5Cz7FkzJc4pEuDSH78EC4ZvCZA5g2L/ML+JK5AlPBeGaGLQ3E7uwB31C3PQKhj9kmAEg9JmnWD4HsVW9FnZk21xAwTPPNssxNlLYw== 1QhPgXQrKEQEQERETmEIBiT4TrCFERm40IgJ0EUUEoRghQ+KIcIJ24AITcQIcFQESBtaJqQPkC+AICROcLUSESAkEYjEkEWcB5xOBH4gjAjlQQEMcCIaPBr9FBQBZEB5QEQEAOw==');
    animation: noise 0.2s steps(1) infinite;
}

#grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    background-image: 
        linear-gradient(rgba(8, 12, 22, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8, 12, 22, 0.03) 1px, transparent 1px);
    background-size: 35px 35px;
    pointer-events: none;
}

@keyframes noise {
    0%, 100% { transform: translate(0,0) }
    10% { transform: translate(-1%,-1%) }
    20% { transform: translate(1%,1%) }
    30% { transform: translate(-1%,-1%) }
    40% { transform: translate(1%,1%) }
    50% { transform: translate(-1%,-1%) }
    60% { transform: translate(1%,1%) }
    70% { transform: translate(-1%,-1%) }
    80% { transform: translate(1%,1%) }
    90% { transform: translate(-1%,-1%) }
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glitch-text {
    position: relative;
    display: inline-block;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    left: 2px;
    text-shadow: -1px 0 var(--accent);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim-1 5s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -2px;
    text-shadow: -1px 0 var(--primary);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim-2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
    0% { clip: rect(25px, 9999px, 29px, 0); }
    10% { clip: rect(65px, 9999px, 84px, 0); }
    20% { clip: rect(95px, 9999px, 11px, 0); }
    30% { clip: rect(53px, 9999px, 27px, 0); }
    40% { clip: rect(79px, 9999px, 92px, 0); }
    50% { clip: rect(23px, 9999px, 29px, 0); }
    60% { clip: rect(16px, 9999px, 75px, 0); }
    70% { clip: rect(39px, 9999px, 49px, 0); }
    80% { clip: rect(46px, 9999px, 78px, 0); }
    90% { clip: rect(89px, 9999px, 34px, 0); }
    100% { clip: rect(75px, 9999px, 76px, 0); }
}

@keyframes glitch-anim-2 {
    0% { clip: rect(49px, 9999px, 99px, 0); }
    10% { clip: rect(59px, 9999px, 43px, 0); }
    20% { clip: rect(61px, 9999px, 59px, 0); }
    30% { clip: rect(17px, 9999px, 31px, 0); }
    40% { clip: rect(94px, 9999px, 71px, 0); }
    50% { clip: rect(34px, 9999px, 90px, 0); }
    60% { clip: rect(89px, 9999px, 89px, 0); }
    70% { clip: rect(75px, 9999px, 76px, 0); }
    80% { clip: rect(12px, 9999px, 46px, 0); }
    90% { clip: rect(40px, 9999px, 30px, 0); }
    100% { clip: rect(67px, 9999px, 68px, 0); }
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--darker);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-content {
    text-align: center;
    width: 300px;
}

.loading-logo {
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    letter-spacing: 0.15em;
}

.loading-progress-container {
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background-color: var(--primary);
    width: 0;
    transition: width 0.3s ease-out;
}

.loading-status {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    color: var(--gray);
    text-transform: uppercase;
    font-family: var(--font-secondary);
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.main-header.scrolled {
    background-color: rgba(5, 8, 16, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.logo a {
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.nav-item {
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--gray);
    position: relative;
    transition: var(--transition);
}

.nav-item:hover {
    color: var(--light);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    transition: width 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background-color: var(--light);
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    padding: 7rem 2rem 3rem;
    background-color: var(--darker);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    flex: 1;
}

@media (min-width: 1024px) {
    .hero-content {
        flex-direction: row;
        align-items: center;
    }
}

.hero-text {
    flex: 1;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(12, 255, 127, 0.15);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.hero-title {
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.hero-title-line {
    display: block;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 500px;
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--light);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(12, 255, 127, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(12, 255, 127, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(12, 255, 127, 0);
    }
}

.hero-visual {
    flex: 1;
    position: relative;
    z-index: 2;
}

.live-marker {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--accent);
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 3;
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    display: inline-block;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

.hero-image-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.3);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.data-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.data-point {
    position: absolute;
    background-color: rgba(8, 12, 22, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 6px;
}

.data-point-1 {
    bottom: 1rem;
    right: 1rem;
}

.data-point-2 {
    top: 1rem;
    right: 1rem;
}

.data-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray);
    margin-bottom: 0.25rem;
}

.data-value {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-weight: 700;
}

.data-scanner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: rgba(12, 255, 127, 0.5);
    box-shadow: 0 0 10px rgba(12, 255, 127, 0.5), 0 0 20px rgba(12, 255, 127, 0.3);
    animation: scan 3s ease-in-out infinite;
}

@keyframes scan {
    0% { transform: translateY(0); }
    100% { transform: translateY(calc(100vh - 4px)); }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-text {
    font-size: 0.75rem;
    color: var(--gray);
    letter-spacing: 0.1em;
}

.scroll-icon {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-icon::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--gray);
    border-radius: 2px;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% { opacity: 1; transform: translate(-50%, 0); }
    75% { opacity: 0; transform: translate(-50%, 12px); }
    100% { opacity: 0; transform: translate(-50%, 12px); }
}

/* Section Components */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--gray);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* Intro Section */
.intro-section {
    padding: 8rem 0;
    background-color: var(--dark);
}

.intro-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.intro-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.card-icon {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.card-title {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.card-text {
    color: var(--gray);
    line-height: 1.6;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-value {
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray);
    letter-spacing: 0.05em;
}

/* Features Section */
.features-section {
    padding: 8rem 0;
    background-color: var(--darker);
    position: relative;
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 6rem;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.04);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-title {
    font-family: var(--font-secondary);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.feature-text {
    color: var(--gray);
    line-height: 1.6;
}

.feature-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .feature-showcase {
        grid-template-columns: 1fr 1fr;
    }
}

.showcase-visual {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(1, 114, 255, 0.2), rgba(12, 255, 127, 0.2));
    mix-blend-mode: overlay;
}

.showcase-details {
    padding: 1rem 0;
}

.showcase-title {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.showcase-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.showcase-step {
    display: flex;
    gap: 1.5rem;
    position: relative;
}

.showcase-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 3rem;
    left: 1.25rem;
    width: 1px;
    height: calc(100% + 0.5rem);
    background-color: rgba(255, 255, 255, 0.1);
}

.step-number {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(12, 255, 127, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.step-title {
    font-family: var(--font-secondary);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-text {
    color: var(--gray);
}

/* Sports Section */
.sports-section {
    padding: 8rem 0;
    background-color: var(--dark);
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.sport-card {
    height: 240px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background-color: var(--dark-gray);
    transition: transform 0.3s ease;
}

.sport-card:hover {
    transform: translateY(-8px);
}

.sport-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
    z-index: 1;
}

.sport-card.cricket {
    background-image: url('/api/placeholder/400/400');
    background-size: cover;
    background-position: center;
}

.sport-card.basketball {
    background-image: url('/api/placeholder/400/400');
    background-size: cover;
    background-position: center;
}

.sport-card.football {
    background-image: url('/api/placeholder/400/400');
    background-size: cover;
    background-position: center;
}

.sport-card.kabaddi {
    background-image: url('/api/placeholder/400/400');
    background-size: cover;
    background-position: center;
}

.sport-card-inner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    z-index: 2;
}

.sport-name {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.sport-info {
    font-size: 0.875rem;
    color: var(--gray);
}

.sports-message {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.message-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.message-icon svg {
    width: 24px;
    height: 24px;
}

.message-text {
    color: var(--gray);
    font-size: 0.9375rem;
}

/* Access Section */
.access-section {
    padding: 8rem 0;
    background-color: var(--darker);
}

.access-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 992px) {
    .access-content {
        grid-template-columns: 1fr 1fr;
    }
}

.access-lead {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 3rem;
}

.access-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 2.5rem;
    left: 0.75rem;
    width: 1px;
    height: calc(100% + 0.5rem);
    background-color: rgba(255, 255, 255, 0.1);
}

.timeline-marker {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    flex-shrink: 0;
}

.timeline-marker.active {
    background-color: var(--primary);
    border-color: var(--primary);
}

.timeline-marker.active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0.5rem;
    height: 0.5rem;
    background-color: white;
    border-radius: 50%;
}

.timeline-date {
    font-size: 0.75rem;
    color: var(--gray);
    margin-bottom: 0.375rem;
}

.timeline-title {
    font-family: var(--font-secondary);
    font-size: 1.125rem;
    font-weight: 600;
}

.form-container {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 2.5rem;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-title {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--gray);
    font-size: 0.9375rem;
}

.form-field {
    margin-bottom: 1.5rem;
}

.form-field label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--gray);
}

.form-field input,
.form-field select {
    width: 100%;
    padding: 0.875rem 1rem;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--light);
    transition: var(--transition);
}

.form-field input:focus,
.form-field select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(12, 255, 127, 0.2);
}

.full-width {
    width: 100%;
}

/* Footer */
.main-footer {
    padding: 4rem 0 2rem;
    background-color: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-logo {
    margin-bottom: 3rem;
}

.logo-text {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.logo-tagline {
    font-size: 0.875rem;
    color: var(--gray);
    letter-spacing: 0.1em;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.column-title {
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    letter-spacing: 0.05em;
}

.footer-link {
    display: block;
    color: var(--gray);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--light);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary);
    color: var(--dark);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright {
    font-size: 0.8125rem;
    color: var(--gray);
}

.footer-quote {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .main-nav {
        display: none;
    }
    
    .main-nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--darker);
        padding: 1.5rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-toggle {
        display: flex;
    }
}

@media (max-width: 767px) {
    html {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}