:root {
    --primary-color: #00e676;
    --secondary-color: #00b0ff;
    --accent-color: #ff3d00;
    --dark-color: #121212;
    --darker-color: #0a0a0a;
    --light-color: #f8f9fa;
    --text-color: #e0e0e0;
    --white: #ffffff;
    --neon-glow: 0 0 10px rgba(0, 230, 118, 0.7), 0 0 20px rgba(0, 230, 118, 0.5);
    --blue-glow: 0 0 10px rgba(0, 176, 255, 0.7), 0 0 20px rgba(0, 176, 255, 0.5);
    --orange-glow: 0 0 10px rgba(255, 61, 0, 0.7), 0 0 20px rgba(255, 61, 0, 0.5);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 62.5%;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: var(--dark-color);
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--darker-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.cricket-ball {
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, #ff3d00, #ff7043);
    border-radius: 50%;
    position: relative;
    animation: bounce 1.5s infinite;
    box-shadow: 0 0 20px rgba(255, 61, 0, 0.7);
}

.seam {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px dashed white;
    animation: rotate 3s linear infinite;
}

.glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    box-shadow: 0 0 30px rgba(255, 61, 0, 0.8);
    animation: pulse 2s infinite;
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        box-shadow: 0 0 20px rgba(255, 61, 0, 0.7);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 40px rgba(255, 61, 0, 1);
    }
}

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

.loader p {
    margin-top: 20px;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-color);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
}

.dots {
    animation: dots 1.5s infinite;
}

@keyframes dots {
    0%, 20% {
        content: '.';
    }
    40% {
        content: '..';
    }
    60%, 100% {
        content: '...';
    }
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 230, 118, 0.2);
}

header.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    box-shadow: 0 2px 20px rgba(0, 230, 118, 0.2);
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 1rem;
    filter: drop-shadow(0 0 5px rgba(0, 230, 118, 0.7));
}

.logo span {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    text-shadow: var(--neon-glow);
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
    box-shadow: var(--neon-glow);
}

.nav-links a:hover {
    color: var(--primary-color);
}

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

.cta-button button {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: var(--neon-glow);
}

.cta-button button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 230, 118, 0.2), transparent);
    transition: var(--transition);
    z-index: -1;
}

.cta-button button:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 230, 118, 0.4);
}

.cta-button button:hover::before {
    left: 100%;
    transition: 0.7s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    background: linear-gradient(135deg, var(--darker-color) 0%, var(--dark-color) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 200px;
    opacity: 0.05;
    z-index: 0;
}

.geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(40px);
}

.shape-1 {
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    animation: float-slow 15s infinite alternate;
}

.shape-2 {
    bottom: 10%;
    right: 15%;
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    animation: float-slow 20s infinite alternate-reverse;
}

.shape-3 {
    top: 50%;
    right: 30%;
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    animation: float-slow 12s infinite alternate;
}

@keyframes float-slow {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.hero-content {
    max-width: 600px;
    z-index: 1;
}

.glitch-container {
    position: relative;
    margin-bottom: 2rem;
}

.glitch {
    font-size: 6rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    color: var(--white);
    position: relative;
    text-shadow: 0 0 10px rgba(0, 230, 118, 0.5);
    animation: glitch 5s infinite;
}

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

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

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

@keyframes glitch-anim {
    0% {
        clip: rect(31px, 9999px, 94px, 0);
    }
    10% {
        clip: rect(112px, 9999px, 76px, 0);
    }
    20% {
        clip: rect(85px, 9999px, 77px, 0);
    }
    30% {
        clip: rect(27px, 9999px, 97px, 0);
    }
    40% {
        clip: rect(64px, 9999px, 98px, 0);
    }
    50% {
        clip: rect(61px, 9999px, 85px, 0);
    }
    60% {
        clip: rect(99px, 9999px, 114px, 0);
    }
    70% {
        clip: rect(34px, 9999px, 115px, 0);
    }
    80% {
        clip: rect(98px, 9999px, 129px, 0);
    }
    90% {
        clip: rect(43px, 9999px, 96px, 0);
    }
    100% {
        clip: rect(82px, 9999px, 64px, 0);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(125px, 9999px, 162px, 0);
    }
    10% {
        clip: rect(120px, 9999px, 147px, 0);
    }
    20% {
        clip: rect(113px, 9999px, 147px, 0);
    }
    30% {
        clip: rect(142px, 9999px, 174px, 0);
    }
    40% {
        clip: rect(175px, 9999px, 153px, 0);
    }
    50% {
        clip: rect(125px, 9999px, 162px, 0);
    }
    60% {
        clip: rect(184px, 9999px, 126px, 0);
    }
    70% {
        clip: rect(129px, 9999px, 168px, 0);
    }
    80% {
        clip: rect(107px, 9999px, 167px, 0);
    }
    90% {
        clip: rect(113px, 9999px, 130px, 0);
    }
    100% {
        clip: rect(138px, 9999px, 157px, 0);
    }
}

.tagline {
    font-size: 2.4rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.highlight {
    color: var(--secondary-color);
    text-shadow: var(--blue-glow);
    font-weight: 700;
}

.talent-highlight {
    color: var(--primary-color);
    text-shadow: var(--blue-glow);
    font-weight: 700;
}

.city-highlight {
    color: var(--accent-color);
    text-shadow: var(--orange-glow);
    font-weight: 700;
}

.coming-soon {
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
}

.countdown {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    min-width: 80px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 230, 118, 0.2);
    border-color: var(--primary-color);
}

.countdown-item span:first-child {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: var(--neon-glow);
    font-family: 'Orbitron', sans-serif;
}

.countdown-item span:last-child {
    font-size: 1.4rem;
    color: var(--text-color);
}

.hero-cta {
    margin-top: 3rem;
}

.notify-form {
    display: flex;
    max-width: 450px;
    position: relative;
}

.notify-form input {
    flex: 1;
    padding: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    font-size: 1.6rem;
    color: var(--text-color);
    padding-right: 150px;
    transition: var(--transition);
}

.notify-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: var(--neon-glow);
}

.notify-form button {
    position: absolute;
    right: 5px;
    top: 8px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.notify-form button:hover {
    background-color: var(--white);
    box-shadow: var(--neon-glow);
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    height: 100%;
    max-height: 600px;
}

.player-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.player-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    pointer-events: none;
    z-index: 1;
}

.player-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
    z-index: 2;
}

.player-image {
    max-height: 90%;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(0, 230, 118, 0.3));
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

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

.stats-overlay {
    position: absolute;
    bottom: 20%;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 3;
}

.stat-item {
    background-color: rgba(10, 10, 20, 0.7);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 230, 118, 0.3);
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-item:hover {
    transform: translateX(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px var(--primary-color);
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 230, 118, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    color: #e0e0e0;
    margin-top: 0.2rem;
}

.player-slide .stats-overlay {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.player-slide.active .stats-overlay {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.3s;
}

.player-slide .stat-item {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.player-slide.active .stat-item {
    opacity: 1;
    transform: translateX(0);
}

.player-slide.active .stat-item:nth-child(1) {
    transition-delay: 0.4s;
}

.player-slide.active .stat-item:nth-child(2) {
    transition-delay: 0.6s;
}

.player-slide.active .stat-item:nth-child(3) {
    transition-delay: 0.8s;
}

.player-selector {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 5;
}

.selector-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.selector-dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    opacity: 0;
    transition: all 0.3s ease;
}

.selector-dot.active {
    background-color: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
}

.selector-dot.active::after {
    opacity: 1;
    animation: pulse 1.5s infinite;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    position: relative;
    box-shadow: var(--neon-glow);
}

.wheel {
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
    box-shadow: var(--neon-glow);
}

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

.arrow {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.arrow span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
    transform: rotate(45deg);
    animation: arrow 1.5s infinite;
    opacity: 0;
    box-shadow: 2px 2px 2px rgba(0, 230, 118, 0.3);
}

.arrow span:nth-child(1) {
    animation-delay: 0s;
}

.arrow span:nth-child(2) {
    animation-delay: 0.2s;
}

.arrow span:nth-child(3) {
    animation-delay: 0.4s;
}

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

/* Features Section */
.features {
    padding: 10rem 5%;
    background-color: var(--darker-color);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 230, 118, 0.1), transparent 70%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', sans-serif;
    text-shadow: var(--neon-glow);
}

.section-header p {
    font-size: 1.8rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 230, 118, 0.1), transparent 70%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.feature-card:hover::before {
    opacity: 1;
    transform: scale(1.1);
}

.feature-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-shadow: var(--neon-glow);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.2);
    color: var(--white);
}

.feature-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    transition: var(--transition);
}

.feature-card:hover h3 {
    color: var(--primary-color);
}

.feature-card p {
    color: rgba(224, 224, 224, 0.7);
}

/* App Preview Section */
.app-preview {
    padding: 10rem 5%;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--darker-color) 100%);
    position: relative;
    overflow: hidden;
}

.app-preview::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at right, rgba(0, 176, 255, 0.1), transparent 70%);
    pointer-events: none;
}

.stats-showcase {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 5rem;
    position: relative;
    z-index: 1;
}

.phone-mockup {
    position: relative;
    flex: 1;
    opacity: 1;
    transform: translateX(0);
}

.phone-mockup img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.screen-content {
    position: absolute;
    top: 12%;
    left: 6%;
    right: 6%;
    bottom: 12%;
    background-color: var(--darker-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: inset 0 0 10px rgba(0, 176, 255, 0.5);
}

.graph-container {
    width: 100%;
    height: 100%;
    padding: 20px;
}

.stats-details {
    flex: 1;
}

.stat-detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    background-color: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    opacity: 1;
    transform: translateX(0);
}

.stat-detail-item:hover {
    transform: translateX(10px);
    border-color: var(--secondary-color);
    box-shadow: var(--blue-glow);
}

.stat-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-right: 2rem;
    min-width: 50px;
    text-shadow: var(--blue-glow);
}

.stat-info h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-family: 'Orbitron', sans-serif;
}

.stat-info p {
    color: rgba(224, 224, 224, 0.7);
}

/* Testimonials Section */
.testimonials {
    padding: 10rem 5%;
    background-color: var(--darker-color);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: radial-gradient(circle at bottom, rgba(255, 61, 0, 0.1), transparent 70%);
    pointer-events: none;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    padding: 2rem 0;
}

.testimonial-card {
    display: none;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 2rem;
    margin: 1rem;
    border: 1px solid rgba(0, 230, 118, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    align-items: center;
    gap: 2rem;
}

.testimonial-card.active {
    display: flex;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.05) 0%, transparent 100%);
    z-index: -1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.testimonial-image {
    flex: 0 0 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-color);
    box-shadow: 0 0 15px var(--accent-color);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: grayscale(30%);
}

.testimonial-card:hover .testimonial-image img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.testimonial-content {
    flex: 1;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    color: #e0e0e0;
}

.testimonial-content p::before {
    content: '"';
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    position: absolute;
    top: -20px;
    left: -15px;
    color: var(--primary-color);
    opacity: 0.3;
}

.testimonial-author h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.testimonial-author p {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin: 0;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    opacity: 0;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
}

.dot.active::after {
    opacity: 1;
    animation: pulse 1.5s infinite;
}

/* Testimonial Navigation Buttons */
.testimonial-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    z-index: 5;
    pointer-events: none;
}

.testimonial-nav button {
    background-color: rgba(10, 10, 20, 0.7);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.3);
    pointer-events: auto;
}

.testimonial-nav button:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
    transform: scale(1.1);
}

.testimonial-nav button i {
    font-size: 1rem;
}

/* Responsive adjustments for testimonials */
@media (max-width: 768px) {
    .testimonial-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .testimonial-image {
        margin: 0 auto;
    }
    
    .testimonial-content p::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .testimonial-nav {
        top: auto;
        /* bottom: -20px; */
        transform: none;
    }
}

/* CTA Section */
.cta-section {
    padding: 10rem 5%;
    background-color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 230, 118, 0.1), transparent 70%);
    pointer-events: none;
}

.cta-content {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3.6rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.2;
    font-family: 'Orbitron', sans-serif;
    text-shadow: var(--neon-glow);
}

.cta-content p {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 3rem;
}

.cta-form {
    display: flex;
    max-width: 450px;
    position: relative;
}

.cta-form input {
    flex: 1;
    padding: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    font-size: 1.6rem;
    color: var(--text-color);
    padding-right: 170px;
    transition: var(--transition);
}

.cta-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: var(--neon-glow);
}

.cta-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cta-form button:hover {
    background-color: var(--white);
    box-shadow: var(--neon-glow);
    transform: translateY(-2px);
}

.cta-image {
    flex: 1;
    max-width: 500px;
    position: relative;
    z-index: 1;
}

.cta-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    border: 2px solid rgba(0, 230, 118, 0.3);
}

.cta-image:hover img {
    transform: scale(1.03);
    box-shadow: var(--neon-glow);
}

/* Contact Section */
.contact {
    padding: 10rem 5%;
    background-color: var(--darker-color);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at right, rgba(0, 176, 255, 0.1), transparent 70%);
    pointer-events: none;
}

.contact-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 5rem;
    position: relative;
    z-index: 1;
}

.contact-info {
    flex: 1;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-item i {
    font-size: 2.4rem;
    color: var(--secondary-color);
    margin-right: 2rem;
    min-width: 30px;
    text-shadow: var(--blue-glow);
}

.contact-item p {
    font-size: 1.8rem;
    color: var(--text-color);
}

.social-links {
    display: flex;
    gap: 2rem;
    margin-top: 4rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--secondary-color);
    font-size: 2rem;
    transition: var(--transition);
    border: 1px solid rgba(0, 176, 255, 0.3);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-5px);
    box-shadow: var(--blue-glow);
}

.contact-form {
    flex: 1;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    font-size: 1.6rem;
    transition: var(--transition);
    color: var(--text-color);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: var(--blue-glow);
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.contact-form button {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-form button::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: var(--transition);
    z-index: -1;
}

.contact-form button:hover {
    background-color: var(--white);
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: var(--blue-glow);
}

.contact-form button:hover::before {
    left: 100%;
    transition: 0.7s;
}

/* Footer */
footer {
    background-color: var(--darker-color);
    color: var(--text-color);
    padding: 5rem 5% 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--primary-color), 
        var(--secondary-color), 
        var(--accent-color), 
        transparent);
    opacity: 0.5;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 40px;
    margin-right: 1rem;
    filter: drop-shadow(0 0 5px rgba(0, 230, 118, 0.7));
}

.footer-logo span {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
    text-shadow: var(--neon-glow);
}

.footer-links {
    display: flex;
    gap: 5rem;
}

.footer-column h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    text-shadow: var(--blue-glow);
    font-family: 'Orbitron', sans-serif;
}

.footer-column a {
    display: block;
    color: rgba(224, 224, 224, 0.7);
    text-decoration: none;
    margin-bottom: 1rem;
    transition: var(--transition);
    position: relative;
    padding-left: 15px;
}

.footer-column a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
    box-shadow: var(--neon-glow);
}

.footer-column a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-column a:hover::before {
    background-color: var(--white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: rgba(224, 224, 224, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    html {
        font-size: 60%;
    }
    
    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 10rem;
    }
    
    .hero-content {
        margin-bottom: 5rem;
    }
    
    .notify-form {
        margin: 0 auto;
    }
    
    .stats-showcase {
        flex-direction: column;
    }
    
    .cta-section {
        flex-direction: column;
    }
    
    .cta-content {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .cta-form {
        margin: 0 auto;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    /* Hide scroll indicator on mobile */
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 20px;
        min-height: auto;
    }

    .hero-content {
        width: 100%;
        text-align: center;
        padding: 20px 0;
    }

    .glitch-container h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .coming-soon {
        font-size: 1.4rem;
    }

    .countdown {
        flex-direction: row;
        gap: 10px;
        margin: 20px 0;
    }

    .countdown-item {
        width: 70px;
        height: 70px;
    }

    .countdown-item span:first-child {
        font-size: 1.5rem;
    }

    .countdown-item span:last-child {
        font-size: 0.8rem;
    }

    .notify-form {
        flex-direction: column;
        gap: 10px;
    }

    .notify-form input {
        padding-right: 1.5rem;
        width: 100%;
    }

    .notify-form button {
        position: static;
        width: 100%;
    }

    .hero-image {
        width: 100%;
        margin-top: 30px;
    }

    .player-container {
        height: 300px;
    }

    .player-image {
        max-height: 250px;
    }

    .stats-overlay {
        bottom: 10px;
        padding: 10px;
    }

    .stat-item {
        padding: 5px 10px;
    }

    .stat-value {
        font-size: 1rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .scroll-indicator {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        height: calc(100vh - 80px);
        width: 100%;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        padding: 2rem;
        transition: right 0.3s ease;
        z-index: 100;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 2rem;
        padding: 1.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 35px;
        height: 25px;
        cursor: pointer;
        z-index: 101;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--primary-color);
        transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .cta-button {
        display: none;
    }

    .mobile-cta {
        display: block !important;
        margin-top: 2rem;
    }

    .mobile-cta button {
        width: 100%;
        background-color: var(--primary-color);
        color: var(--dark-color);
        border: none;
        padding: 1.5rem 2rem;
        border-radius: 30px;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
        font-size: 1.8rem;
    }

    .mobile-cta button:hover {
        background-color: var(--white);
        box-shadow: var(--neon-glow);
        transform: translateY(-2px);
    }

    /* Footer mobile styles */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
        padding: 0 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-column {
        margin-bottom: 2rem;
    }

    .footer-column h3 {
        margin-bottom: 1rem;
    }

    .footer-column a {
        padding-left: 0;
    }

    .footer-column a::before {
        display: none;
    }

    .footer-logo {
        justify-content: center;
        margin-bottom: 2rem;
    }

    .social-links {
        justify-content: center;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .glitch-container h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.4rem;
    }

    .coming-soon {
        font-size: 1.6rem;
    }

    .countdown-item {
        width: 60px;
        height: 60px;
    }

    .countdown-item span:first-child {
        font-size: 1.5rem;
    }

    .countdown-item span:last-child {
        font-size: 1rem;
    }

    .player-container {
        height: 250px;
    }

    .player-image {
        max-height: 200px;
    }

    .footer-content {
        padding: 0 1rem;
    }

    .footer-links {
        gap: 2rem;
    }

    .footer-column {
        margin-bottom: 1.5rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.appear {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.appear {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.appear {
    opacity: 1;
    transform: scale(1);
}

/* Neon Text Effect */
.neon-text {
    color: var(--text-color);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3),
                 0 0 10px rgba(255, 255, 255, 0.3),
                 0 0 15px var(--primary-color),
                 0 0 20px var(--primary-color),
                 0 0 25px var(--primary-color);
    animation: neon-pulse 1.5s infinite alternate;
}

@keyframes neon-pulse {
    from {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.3),
                     0 0 10px rgba(255, 255, 255, 0.3),
                     0 0 15px var(--primary-color),
                     0 0 20px var(--primary-color);
    }
    to {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.3),
                     0 0 10px rgba(255, 255, 255, 0.3),
                     0 0 15px var(--primary-color),
                     0 0 20px var(--primary-color),
                     0 0 25px var(--primary-color),
                     0 0 30px var(--primary-color);
    }
}

/* Add will-change property to optimize animations */
.phone-mockup,
.stat-detail-item {
    will-change: transform, opacity;
}

.no-scroll {
    overflow: hidden;
}

@media (max-width: 768px) {
    .stats-showcase {
        flex-direction: column;
        align-items: center;
    }
    
    .phone-mockup {
        width: 80%;
        max-width: 300px;
        margin-bottom: 2rem;
    }
    
    .phone-mockup img {
        width: 100%;
        height: auto;
        display: block;
    }
    
    .stats-details {
        width: 100%;
        padding: 0 1rem;
    }
} 