/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #000000;
    background-attachment: fixed;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00ff88, #ffd700);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #00cc6a, #ffb700);
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
    border-radius: 4px;
}

.skip-link:focus {
    top: 6px;
}

/* Header Styles */
.header {
    background: #000000;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h1 {
    color: #00ff88;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.brand-subtitle {
    color: #ffd700;
    font-size: 0.9rem;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #00ff88;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ff88, #ffd700);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: #000000;
    color: #fff;
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff05" points="0,1000 1000,1000 1000,300 0,800"/></svg>');
    background-size: cover;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 0 auto 1.5rem;
    display: block;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.member-count {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #ffd700;
    border-radius: 30px;
    padding: 0.8rem 2rem;
    display: inline-block;
    margin-bottom: 2rem;
}

.count {
    color: #ffd700;
    font-size: 1.1rem;
    font-weight: 600;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00ff88, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    color: #fff;
    letter-spacing: 2px;
}

.cta-section {
    margin: 2rem 0;
}

.cta-button {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #fff;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 255, 136, 0.4);
}

.cta-button.secondary {
    background: linear-gradient(135deg, #ffd700, #ffb700);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.cta-button.secondary:hover {
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

.features {
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.feature-item i {
    color: #ffd700;
    font-size: 1.5rem;
}

/* Timer Section */
.timer-section {
    margin-top: 1.5rem;
    text-align: center;
}

.timer-text {
    color: #ffd700;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

#timer-display {
    background: linear-gradient(135deg, #ff4757, #ff3742);
    color: #fff;
    font-size: 1.8rem;
    font-weight: 800;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    min-width: 60px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
    animation: timerPulse 1s ease-in-out infinite alternate;
}

.timer-label {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
}

@keyframes timerPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
    }
    100% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 71, 87, 0.6);
    }
}

/* Timer finished state */
.timer-finished #timer-display {
    background: linear-gradient(135deg, #2ed573, #1e824c);
    animation: none;
}

.timer-finished .timer-text {
    color: #2ed573;
}

.timer-finished .timer-label {
    color: #2ed573;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Services Section */
.services {
    background: #000000;
    padding: 80px 0;
    color: #fff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #00ff88, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);
    border-color: #00ff88;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00ff88, #ffd700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: #fff;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #00ff88;
}

.service-card p {
    color: #ccc;
    line-height: 1.8;
}

/* Analysis Section */
.analysis {
    background: #000000;
    padding: 80px 0;
    color: #fff;
}

.analysis-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.analysis-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.analysis-card:hover {
    border-color: #ffd700;
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.1);
}

.analysis-card h3 {
    color: #ffd700;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.analysis-card p {
    color: #ccc;
    line-height: 1.7;
}

.join-section {
    text-align: center;
    margin-top: 4rem;
}

.join-section h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #fff;
}

/* Footer */
.footer {
    background: #000000;
    color: #fff;
    padding: 60px 0 20px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: #00ff88;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.footer-section p {
    color: #ccc;
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.disclaimer {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.disclaimer p {
    color: #ffd700;
    font-size: 0.9rem;
    line-height: 1.6;
}

.copyright p {
    color: #ccc;
    font-size: 0.9rem;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #fff;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
}

.scroll-to-top span {
    font-size: 0.7rem;
    margin-top: 2px;
}

/* Enhanced Cards with Glassmorphism */
.glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.service-card, .analysis-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.service-card::before, .analysis-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(255, 215, 0, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card:hover::before, .analysis-card:hover::before {
    opacity: 1;
}

/* Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.service-icon {
    animation: float 3s ease-in-out infinite;
}

.service-card:nth-child(1) .service-icon { animation-delay: 0s; }
.service-card:nth-child(2) .service-icon { animation-delay: 0.5s; }
.service-card:nth-child(3) .service-icon { animation-delay: 1s; }
.service-card:nth-child(4) .service-icon { animation-delay: 1.5s; }
.service-card:nth-child(5) .service-icon { animation-delay: 2s; }

/* Enhanced CTA Buttons */
.cta-button {
    position: relative;
    overflow: hidden;
    transform: perspective(1px) translateZ(0);
}

.cta-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: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

/* Particle Background Animation */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(0, 255, 136, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 215, 0, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(0, 255, 136, 0.5), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 215, 0, 0.5), transparent);
    background-repeat: repeat;
    background-size: 150px 100px;
    animation: particleMove 20s linear infinite;
    opacity: 0.6;
}

@keyframes particleMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-150px) translateY(-100px); }
}

/* Enhanced Typography */
.hero-title {
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    position: relative;
}

.section-title {
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00ff88, #ffd700);
    border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .analysis-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(20px);
        padding: 2rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 1rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        display: block;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        padding: 140px 0 70px;
    }

    .hero-image {
        max-width: 220px;
        margin-bottom: 1.2rem;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
        letter-spacing: 1px;
        margin-bottom: 2rem;
    }

    .nav-logo h1 {
        font-size: 1.3rem;
    }

    .brand-subtitle {
        font-size: 0.85rem;
    }

    .member-count {
        padding: 0.6rem 1.5rem;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        padding: 0.9rem 2.5rem;
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .analysis-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .scroll-to-top {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .services, .analysis {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 13px;
    }
    
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .hero {
        padding: 110px 0 50px;
    }

    .hero-image {
        max-width: 200px;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: 1.9rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        letter-spacing: 0.5px;
        margin-bottom: 1.5rem;
    }

    .member-count {
        padding: 0.5rem 1.2rem;
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .service-card, .analysis-card {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .analysis-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .feature-item {
        font-size: 1rem;
        gap: 0.8rem;
    }
    
    .feature-item i {
        font-size: 1.2rem;
    }
    
    .nav-logo h1 {
        font-size: 1.1rem;
    }
    
    .brand-subtitle {
        font-size: 0.75rem;
    }
    
    .services, .analysis {
        padding: 50px 0;
    }
    
    .join-section h3 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    html {
        font-size: 12px;
    }
    
    .hero-image {
        max-width: 180px;
        margin-bottom: 0.8rem;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 0px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .nav-logo h1 {
        font-size: 1rem;
        line-height: 1.2;
    }
    
    .brand-subtitle {
        font-size: 0.7rem;
    }
    
    .service-card, .analysis-card {
        padding: 1rem;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .cta-button {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .scroll-to-top {
        width: 56px;
        height: 56px;
        bottom: 16px;
        right: 16px;
    }
    
    .service-card, .analysis-card {
        cursor: default;
    }
    
    .service-card:hover,
    .analysis-card:hover {
        transform: none;
    }
}

/* Landscape mobile orientation */
@media screen and (orientation: landscape) and (max-height: 500px) {
    .hero {
        padding: 100px 0 40px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .member-count {
        margin-bottom: 1rem;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.pulse {
    animation: pulse 2s infinite;
}
