@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Space+Mono:wght@400;700&family=Electrolize&display=swap');

/* ==================== 
   VARIABLES & RESET 
   ==================== */

:root {
    /* Neon Gaming Colors */
    --primary-color: #00ff88;
    --secondary-color: #00ffff;
    --dark-color: #0a0e27;
    --light-color: #f0f3ff;
    --accent-color: #ff006e;
    --neon-purple: #b700ff;
    --neon-pink: #ff006e;
    --neon-cyan: #00ffff;
    --neon-lime: #00ff88;
    --dark-bg: #0d1117;
    --text-color: #e0e0e0;
    --light-text: #ffffff;
    --border-color: #00ffff;
    --spacing-unit: 1rem;
    --glow: 0 0 10px rgba(0, 255, 136, 0.5);
    --glow-lg: 0 0 20px rgba(0, 255, 136, 0.6), 0 0 30px rgba(0, 255, 255, 0.4);
    --glow-purple: 0 0 20px rgba(183, 0, 255, 0.6);
    --glow-pink: 0 0 20px rgba(255, 0, 110, 0.6);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', 'Space Mono', monospace;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--dark-bg);
    overflow-x: hidden;
    letter-spacing: 0.05em;
    padding-top: 70px;
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}

/* ==================== 
   CONTAINER & GRID
   ==================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
    width: 100%;
}

/* ==================== 
   NAVBAR
   ==================== */

.navbar {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.98) 0%, rgba(26, 31, 58, 0.98) 100%);
    backdrop-filter: blur(15px);
    color: var(--light-text);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--glow-lg), 0 10px 25px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(0, 255, 136, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 50%;
    box-shadow: var(--glow-cyan), 0 0 20px rgba(183, 0, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.4));
}

.logo-img:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: var(--glow-lg), 0 0 30px rgba(183, 0, 255, 0.6);
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.8)) brightness(1.2);
}

.logo h1 {
    font-size: 1.3rem;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-lime));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    letter-spacing: 0.1em;
}

/* Logo in navbar - hidden by default */
.logo-nav {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo-nav {
    opacity: 1;
    visibility: visible;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    position: relative;
    font-family: 'Orbitron', sans-serif;
}

.nav-links a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8), 0 0 20px rgba(0, 255, 136, 0.5);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--light-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ==================== 
   HERO SECTION
   ==================== */

.hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1f3a 50%, rgba(0, 255, 136, 0.1) 100%);
    color: var(--light-text);
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    margin-top: -70px;
    padding-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 39, 0.75);
    backdrop-filter: blur(5px);
    z-index: 1;
    border-bottom: 2px solid rgba(0, 255, 136, 0.2);
}

.hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: glowPulse 3s ease-in-out infinite, fadeInUp 0.8s ease forwards;
}

.hero-logo-img {
    height: 350px;
    width: 350px;
    border-radius: 50%;
    box-shadow: var(--glow-lg), 0 0 40px rgba(183, 0, 255, 0.5), inset 0 0 20px rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.6));
}

.hero-logo-img:hover {
    transform: scale(1.05);
    box-shadow: var(--glow-lg), 0 0 60px rgba(183, 0, 255, 0.8), inset 0 0 30px rgba(0, 255, 136, 0.4);
}

.hero-title {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-lime));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
    margin-bottom: 1rem;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 5rem auto 0;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
}

.hero-left {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content h2 {
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
    color: var(--neon-lime);
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.6), 0 0 40px rgba(0, 255, 255, 0.3);
    animation: fadeInDown 1s ease 0.2s forwards;
}

.hero-right .btn-primary {
    padding: 1.2rem 3.5rem;
    font-size: 1.3rem;
    margin-top: 2.5rem;
}

.hero-content p {
    color: #d0d8e8;
    line-height: 1.8;
    font-size: 1.15rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
}

.keyword {
    color: var(--neon-cyan);
    font-weight: 700;
}

/* ==================== 
   BUTTONS
   ==================== */

.btn {
    padding: 0.75rem 2rem;
    border: 2px solid var(--neon-lime);
    border-radius: 0px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: transparent;
    color: var(--neon-lime);
    box-shadow: inset 0 0 20px rgba(0, 255, 136, 0.3), 0 0 20px rgba(0, 255, 136, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: inset 0 0 20px rgba(0, 255, 136, 0.6), 0 0 30px rgba(0, 255, 136, 0.8), 0 0 40px rgba(0, 255, 255, 0.5);
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 255, 255, 0.1));
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.8);
}

.btn-secondary {
    background-color: transparent;
    color: var(--neon-cyan);
    border-color: var(--neon-cyan);
    box-shadow: inset 0 0 20px rgba(0, 255, 255, 0.2), 0 0 15px rgba(0, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.15), rgba(183, 0, 255, 0.1));
    color: #ffffff;
    box-shadow: inset 0 0 20px rgba(0, 255, 255, 0.5), 0 0 30px rgba(0, 255, 255, 0.7), 0 0 40px rgba(183, 0, 255, 0.4);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

/* ==================== 
   SECTIONS
   ==================== */

section {
    padding: 5rem 2rem;
    min-height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Override padding for contact section to allow full-width footer */
section.contact {
    padding: 0;
}

section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--neon-lime);
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.6), 0 0 40px rgba(0, 255, 255, 0.3);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-subtitle {
    text-align: center;
    color: var(--neon-cyan);
    font-size: 1.1rem;
    margin-bottom: 4.5rem;
    font-weight: 500;
    font-family: 'Space Mono', monospace;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
}

/* ==================== 
   ABOUT SECTION
   ==================== */

.about {
    background-image: linear-gradient(180deg, rgba(10, 14, 39, 0.85) 0%, rgba(10, 14, 39, 0.9) 100%), url('public/img02.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3.5rem;
}

.about-card {
    background: rgba(10, 14, 39, 0.85);
    padding: 2rem;
    border-radius: 0px;
    border: 2px solid var(--neon-cyan);
    box-shadow: inset 0 0 20px rgba(0, 255, 255, 0.1), 0 0 20px rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    align-items: flex-start;
}

.about-card:hover {
    border-color: var(--neon-lime);
    box-shadow: inset 0 0 20px rgba(0, 255, 136, 0.2), 0 0 30px rgba(0, 255, 136, 0.4);
    transform: translateY(-5px);
}

.card-overlay {
    display: none;
}

.card-content {
    position: relative;
    z-index: 2;
    color: white;
    width: 100%;
}

.about-card h3 {
    color: var(--neon-lime);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.about-card p {
    color: white;
    line-height: 1.8;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    font-family: 'Space Mono', monospace;
}

/* ==================== 
   FEATURES SECTION
   ==================== */

.features {
    background-image: linear-gradient(180deg, rgba(10, 14, 39, 0.85) 0%, rgba(10, 14, 39, 0.9) 100%), url('public/img05.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.features .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3.5rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    border-radius: 0px;
    border: 2px solid var(--neon-lime);
    background: rgba(10, 14, 39, 0.85);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 20px rgba(0, 255, 136, 0.1), 0 0 20px rgba(0, 255, 136, 0.2);
}

.feature-overlay {
    display: none;
}

.feature-content {
    position: relative;
    z-index: 2;
}

.feature-item:hover .feature-overlay {
    opacity: 1;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
}

.feature-item:hover {
    border-color: var(--neon-cyan);
    box-shadow: inset 0 0 20px rgba(0, 255, 136, 0.3), 0 0 30px rgba(0, 255, 255, 0.5);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.6));
}

.feature-item h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.feature-item p {
    color: white;
    font-size: 0.95rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-family: 'Space Mono', monospace;
}

/* ==================== 
   TEAM SECTION
   ==================== */

.team {
    background-image: linear-gradient(180deg, rgba(10, 14, 39, 0.85) 0%, rgba(10, 14, 39, 0.9) 100%), url('public/img11.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.team .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3.5rem;
}

.team-member {
    background: rgba(10, 14, 39, 0.85);
    padding: 2rem;
    border-radius: 0px;
    border: 2px solid var(--neon-cyan);
    text-align: center;
    box-shadow: inset 0 0 20px rgba(0, 255, 255, 0.1), 0 0 20px rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
}

.team-overlay {
    display: none;
}

.team-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.team-member:hover {
    transform: scale(1.05);
    border-color: var(--neon-lime);
    box-shadow: inset 0 0 20px rgba(0, 255, 136, 0.3), 0 0 30px rgba(0, 255, 255, 0.5);
}

.member-avatar {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.6));
}

.team-member h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.team-member .role {
    color: var(--neon-lime);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.5);
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
}

.team-member p:last-child {
    color: white;
    font-size: 0.95rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    font-family: 'Space Mono', monospace;
}

/* ==================== 
   CONTACT SECTION
   ==================== */

.contact {
    background-image: linear-gradient(180deg, rgba(10, 14, 39, 0.85) 0%, rgba(10, 14, 39, 0.9) 100%), url('public/img11.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--light-text);
    display: flex;
    flex-direction: column;
    min-height: 100vh !important;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding: 0 !important;
    overflow: hidden;
    border-top: 2px solid rgba(0, 255, 136, 0.3);
}

.contact-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    overflow-y: auto;
}

.contact-wrapper .container {
    width: 100%;
    max-width: 1200px;
}

.contact h2 {
    color: var(--light-text);
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 2rem;
}

.btn-large {
    width: 100%;
    max-width: 600px;
    padding: 1.5rem 3rem;
    font-size: 1.8rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.btn-discord {
    background: linear-gradient(135deg, #5865F2, #404EED);
    color: white;
    border: 3px solid #5865F2;
    box-shadow: 0 0 30px rgba(88, 101, 242, 0.6), inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.btn-discord:hover {
    background: linear-gradient(135deg, #404EED, #5865F2);
    box-shadow: 0 0 50px rgba(88, 101, 242, 0.9), inset 0 0 30px rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.05);
}

.social-buttons {
    display: flex;
    gap: 2rem;
    width: 100%;
    max-width: 600px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-social {
    flex: 1;
    min-width: 250px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-youtube {
    background: linear-gradient(135deg, #FF0000, #CC0000);
    color: white;
    border: 2px solid #FF0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5), inset 0 0 15px rgba(255, 255, 255, 0.1);
}

.btn-youtube:hover {
    background: linear-gradient(135deg, #CC0000, #FF0000);
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.8), inset 0 0 25px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px) scale(1.05);
}

.btn-tiktok {
    background: linear-gradient(135deg, #000000, #25F4EE, #FE2C55, #000000);
    color: white;
    border: 2px solid #25F4EE;
    box-shadow: 0 0 20px rgba(37, 244, 238, 0.5), inset 0 0 15px rgba(255, 255, 255, 0.1);
}

.btn-tiktok:hover {
    background: linear-gradient(135deg, #25F4EE, #FE2C55, #000000, #25F4EE);
    box-shadow: 0 0 40px rgba(254, 44, 85, 0.8), inset 0 0 25px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px) scale(1.05);
}

.btn-icon {
    font-size: 1.8em;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.rsi-button-wrapper {
    display: none;
}

.btn-rsi {
    background: linear-gradient(135deg, #0066ff, #004acc);
    color: white;
    border: 3px solid #0066ff;
    padding: 1.5rem 3rem;
    font-size: 1.8rem;
    font-weight: 900;
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.6), inset 0 0 20px rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.btn-rsi:hover {
    background: linear-gradient(135deg, #004acc, #0052cc);
    box-shadow: 0 0 50px rgba(0, 102, 255, 0.9), inset 0 0 30px rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.05);
}

.rsi-logo {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

/* ==================== 
   FOOTER
   ==================== */

.footer {
    background: linear-gradient(180deg, rgba(10, 14, 39, 0.8) 0%, rgba(13, 17, 23, 0.95) 100%);
    color: var(--light-text);
    text-align: center;
    padding: 2rem;
    border-top: 2px solid var(--neon-lime);
    flex-shrink: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    box-sizing: border-box;
    box-shadow: inset 0 1px 0 rgba(0, 255, 136, 0.3), 0 -1px 10px rgba(0, 255, 136, 0.2);
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-unit);
}

.footer p {
    margin: 0.5rem 0;
}

/* ==================== 
   SCROLL TO TOP BUTTON
   ==================== */

.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(10, 14, 39, 0.9);
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    cursor: pointer;
    z-index: 999;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3), inset 0 0 20px rgba(0, 255, 255, 0.1);
}

.scroll-top-btn.show {
    opacity: 1;
    pointer-events: all;
    animation: scrollTopPulse 2s ease-in-out infinite;
}

.scroll-top-btn:hover {
    border-color: var(--neon-lime);
    color: var(--neon-lime);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.6), inset 0 0 30px rgba(0, 255, 136, 0.2), 0 0 15px rgba(0, 255, 255, 0.4);
    transform: translateY(-3px);
}

.scroll-top-btn:active {
    transform: translateY(0);
}

/* ====================
   KEYFRAME ANIMATIONS
   ==================== */

@keyframes scrollTopPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.3), inset 0 0 20px rgba(0, 255, 255, 0.1);
    }
    50% {
        box-shadow: 0 0 35px rgba(0, 255, 255, 0.6), inset 0 0 25px rgba(0, 255, 255, 0.3);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowPulse {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.4)) drop-shadow(0 0 20px rgba(0, 255, 255, 0.2));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.8)) drop-shadow(0 0 30px rgba(0, 255, 255, 0.5));
    }
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes glitchText {
    0%, 100% {
        text-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
    }
    50% {
        text-shadow: 0 0 10px rgba(0, 255, 255, 0.2), 0 0 30px rgba(0, 255, 136, 0.6);
    }
}

@keyframes floatStar {
    0%, 100% {
        opacity: 0.3;
        transform: translateY(0) translateX(0);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-20px) translateX(10px);
    }
}

@keyframes twinkleStar {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

@keyframes neonBorder {
    0%, 100% {
        box-shadow: inset 0 0 10px rgba(0, 255, 136, 0.3), 0 0 10px rgba(0, 255, 136, 0.3);
    }
    50% {
        box-shadow: inset 0 0 20px rgba(0, 255, 136, 0.6), 0 0 30px rgba(0, 255, 136, 0.6);
    }
}

/* ==================== 
   RESPONSIVE DESIGN
   ==================== */

/* Tablets (768px and up) */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: 100%;
        background: linear-gradient(135deg, var(--dark-color) 0%, #1a1f3a 100%);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 999;
        border-bottom: 2px solid rgba(0, 255, 136, 0.3);
    }

    .nav-links.active {
        max-height: 500px;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a {
        display: block;
        padding: 1rem 1.5rem;
        color: var(--light-text);
        text-decoration: none;
    }

    .logo-img {
        height: 45px;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .hero-content {
        flex-direction: column;
        gap: 3.5rem;
        text-align: center;
    }

    .hero-left {
        width: 100%;
    }

    .hero-right {
        align-items: center;
        text-align: center;
    }

    .hero-right .btn-primary {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }

    .hero-logo-img {
        height: 250px;
        width: 250px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero {
        min-height: 100vh;
        height: 100vh;
    }

    .about-card {
        min-height: 300px;
    }

    .feature-item {
        min-height: 250px;
    }

    .team-member {
        min-height: 320px;
    }

    section h2 {
        font-size: 2rem;
    }

    section {
        min-height: 100vh;
        padding: 5rem 1rem 3rem 1rem;
        padding-top: 5rem;
    }

    .hero {
        padding-top: 0;
    }

    .contact-buttons {
        padding: 1rem;
    }

    .rsi-button-wrapper {
        margin-top: 2rem;
    }

    .btn-rsi {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .btn-large {
        font-size: 1.3rem;
        padding: 1.2rem 2rem;
    }

    .social-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-social {
        width: 100%;
        font-size: 1rem;
    }

    .contact-content {
        gap: 2rem;
    }
}

/* Mobile (480px and up) */
@media (max-width: 480px) {
    :root {
        --spacing-unit: 0.75rem;
    }

    .logo {
        gap: 0.5rem;
    }

    .logo-img {
        height: 40px;
    }

    .logo h1 {
        font-size: 1rem;
    }

    .hero {
        padding: 0;
        min-height: 100vh;
        height: 100vh;
    }

    .hero-content {
        padding: 3rem 1rem;
        flex-direction: column;
        gap: 2.5rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .hero-logo-img {
        height: 200px;
        width: 200px;
    }

    .hero-right .btn-primary {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .about-card {
        min-height: 280px;
    }

    .feature-item {
        min-height: 220px;
    }

    .team-member {
        min-height: 300px;
    }

    section h2 {
        font-size: 1.5rem;
    }

    section {
        min-height: 100vh;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .about-grid,
    .features-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .btn-large {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }

    .btn-rsi.btn-large {
        font-size: 1rem;
        padding: 1rem 1.5rem;
        gap: 1rem;
    }

    .rsi-logo {
        height: 30px;
    }

    .btn-icon {
        font-size: 1.2em;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

/* Small devices (below 360px) */
@media (max-width: 360px) {
    .hero {
        min-height: 100vh;
        height: 100vh;
    }

    .hero-content h2 {
        font-size: 1.25rem;
    }

    section {
        min-height: 100vh;
    }

    section h2 {
        font-size: 1.25rem;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .member-avatar {
        font-size: 3rem;
    }
}
