/* =====================================================
   SPINBORO STYLES — Dark, Bold, Neon Energy
   ===================================================== */

:root {
    --primary-dark: #0a0e27;
    --secondary-dark: #1a1f3a;
    --tertiary-dark: #2d3250;
    --neon-cyan: #00d9ff;
    --neon-magenta: #ff006e;
    --neon-lime: #39ff14;
    --neon-purple: #b537f2;
    --accent-gold: #ffd700;
    --text-light: #e0e0e0;
    --text-muted: #999;
    --border-color: rgba(0, 217, 255, 0.3);
    --transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
}

/* Background animation */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 217, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 110, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* =====================================================
   TYPOGRAPHY
   ===================================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: 1px;
}

h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--neon-magenta);
    text-shadow: 0 0 10px var(--neon-magenta);
}

/* =====================================================
   UTILITIES
   ===================================================== */

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

.highlight {
    color: var(--neon-cyan);
    text-shadow: 0 0 20px var(--neon-cyan);
}

.glow-text {
    color: var(--neon-magenta);
    text-shadow: 
        0 0 10px var(--neon-magenta),
        0 0 20px var(--neon-magenta),
        0 0 30px var(--neon-purple);
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        text-shadow: 
            0 0 10px var(--neon-magenta),
            0 0 20px var(--neon-magenta),
            0 0 30px var(--neon-purple);
    }
    50% {
        text-shadow: 
            0 0 20px var(--neon-magenta),
            0 0 30px var(--neon-magenta),
            0 0 50px var(--neon-purple);
    }
}

.section-title {
    text-align: center;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta), var(--neon-lime));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* =====================================================
   BUTTONS
   ===================================================== */

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: 2px solid;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    background: transparent;
}

.btn-primary:hover {
    background: var(--neon-cyan);
    color: var(--primary-dark);
    box-shadow: 0 0 20px var(--neon-cyan);
}

.btn-secondary {
    border-color: var(--neon-magenta);
    color: var(--neon-magenta);
    background: transparent;
}

.btn-secondary:hover {
    background: var(--neon-magenta);
    color: var(--primary-dark);
    box-shadow: 0 0 20px var(--neon-magenta);
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.1rem;
}

/* =====================================================
   NAVIGATION
   ===================================================== */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 14, 39, 0.95);
    border-bottom: 2px solid var(--border-color);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.logo-sub {
    font-size: 0.75rem;
    color: var(--neon-magenta);
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 0 5px var(--neon-magenta);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.8rem;
    }
}

/* =====================================================
   HERO SECTION
   ===================================================== */

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding: 6rem 2rem;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 10;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.hero-location {
    font-size: 1.1rem;
    color: var(--neon-lime);
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.hero-visual {
    position: relative;
    height: 500px;
}

.dual-screen {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    height: 100%;
}

.screen {
    border: 3px solid;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.5);
}

.screen-left {
    border-color: var(--neon-cyan);
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.15), rgba(0, 217, 255, 0.05));
    box-shadow: 
        0 0 30px var(--neon-cyan),
        inset 0 0 30px rgba(0, 217, 255, 0.1);
}

.screen-right {
    border-color: var(--neon-magenta);
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.15), rgba(255, 0, 110, 0.05));
    box-shadow: 
        0 0 30px var(--neon-magenta),
        inset 0 0 30px rgba(255, 0, 110, 0.1);
}

.screen-content {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.lyrics-scroll {
    animation: scroll-text 4s linear infinite;
}

@keyframes scroll-text {
    0% { transform: translateY(0); opacity: 1; }
    50% { opacity: 1; }
    100% { transform: translateY(-20px); opacity: 0; }
}

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
        min-height: auto;
    }
    
    .hero-visual {
        height: 400px;
    }
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */

.about {
    padding: 6rem 2rem;
    background: var(--secondary-dark);
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

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

.about-card {
    padding: 2rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: rgba(45, 50, 80, 0.5);
    transition: var(--transition);
    position: relative;
}

.about-card:hover {
    border-color: var(--neon-cyan);
    background: rgba(0, 217, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
}

.about-card h3 {
    color: var(--neon-cyan);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.about-card:nth-child(2) h3 {
    color: var(--neon-magenta);
}

.about-card:nth-child(2):hover {
    border-color: var(--neon-magenta);
    background: rgba(255, 0, 110, 0.1);
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.2);
}

.about-card:nth-child(3) h3 {
    color: var(--neon-lime);
}

.about-card:nth-child(3):hover {
    border-color: var(--neon-lime);
    background: rgba(57, 255, 20, 0.1);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
}

.about-card:nth-child(4) h3 {
    color: var(--neon-purple);
}

.about-card:nth-child(4):hover {
    border-color: var(--neon-purple);
    background: rgba(181, 55, 242, 0.1);
    box-shadow: 0 0 20px rgba(181, 55, 242, 0.2);
}

.tagline-banner {
    text-align: center;
    padding: 2rem;
    border: 3px solid var(--neon-magenta);
    border-radius: 8px;
    background: rgba(255, 0, 110, 0.1);
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.2);
}

.tagline {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--neon-magenta);
    text-shadow: 0 0 10px var(--neon-magenta);
    letter-spacing: 1px;
}

/* =====================================================
   FEATURES SECTION
   ===================================================== */

.features {
    padding: 6rem 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    border-radius: 8px;
    background: rgba(45, 50, 80, 0.3);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: var(--neon-cyan);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 217, 255, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    animation: bounce 2s ease-in-out infinite;
}

.feature:nth-child(even) .feature-icon {
    animation-delay: 0.2s;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
}

.feature p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =====================================================
   WARRIORS SECTION
   ===================================================== */

.warriors {
    padding: 6rem 2rem;
    background: var(--secondary-dark);
    border-top: 2px solid var(--border-color);
}

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

.warrior-card {
    padding: 2rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: rgba(45, 50, 80, 0.5);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.warrior-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta), var(--neon-lime));
    opacity: 0;
    transition: var(--transition);
}

.warrior-card:hover {
    border-color: var(--neon-magenta);
    background: rgba(255, 0, 110, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 0, 110, 0.2);
}

.warrior-card:hover::before {
    opacity: 1;
}

.warrior-avatar {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    animation: spin-slow 8s linear infinite;
}

.warrior-card:hover .warrior-avatar {
    animation-play-state: paused;
}

@keyframes spin-slow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.warrior-card h3 {
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.warrior-quote {
    font-style: italic;
    color: var(--text-muted);
    margin: 1rem 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.warrior-stat {
    color: var(--neon-lime);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* =====================================================
   STATS SECTION
   ===================================================== */

.stats {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(255, 0, 110, 0.1));
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
    border: 2px solid var(--neon-cyan);
    border-radius: 8px;
    background: rgba(0, 217, 255, 0.05);
    transition: var(--transition);
}

.stat-card:nth-child(2) {
    border-color: var(--neon-magenta);
    background: rgba(255, 0, 110, 0.05);
}

.stat-card:nth-child(3) {
    border-color: var(--neon-lime);
    background: rgba(57, 255, 20, 0.05);
}

.stat-card:nth-child(4) {
    border-color: var(--neon-purple);
    background: rgba(181, 55, 242, 0.05);
}

.stat-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.3);
}

.stat-card:nth-child(2):hover {
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.3);
}

.stat-card:nth-child(3):hover {
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.3);
}

.stat-card:nth-child(4):hover {
    box-shadow: 0 0 30px rgba(181, 55, 242, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =====================================================
   CTA SECTION
   ===================================================== */

.cta-section {
    padding: 6rem 2rem;
    text-align: center;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--neon-lime);
    text-shadow: 0 0 20px var(--neon-lime);
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-tagline {
    color: var(--neon-magenta);
    font-weight: 700;
    font-size: 1.3rem;
    margin: 2rem 0 3rem 0 !important;
}

/* =====================================================
   FOOTER
   ===================================================== */

.footer {
    padding: 3rem 2rem;
    border-top: 2px solid var(--border-color);
    background: rgba(10, 14, 39, 0.95);
    text-align: center;
    color: var(--text-muted);
}

.footer p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.footer-tagline {
    color: var(--neon-magenta);
    font-weight: 600;
    text-shadow: 0 0 10px var(--neon-magenta);
    margin-top: 1rem !important;
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }
    
    .section-title {
        margin-bottom: 1.5rem;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
        justify-content: center;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .about-grid,
    .features-grid,
    .warriors-grid,
    .stats-grid {
        gap: 1rem;
    }
    
    .feature,
    .warrior-card,
    .about-card {
        padding: 1.5rem;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .tagline {
        font-size: 1.3rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .about,
    .features,
    .warriors,
    .stats,
    .cta-section {
        padding: 3rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .warrior-avatar {
        font-size: 2.5rem;
    }
}
