/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
    background: var(--white);
    margin: 0;
    padding: 0;
}

/* Modern Color Scheme */
:root {
    --primary-green: #10b981;
    --secondary-green: #059669;
    --accent-green: #34d399;
    --light-green: #6ee7b7;
    --dark-green: #047857;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --gray: #64748b;
    --dark-gray: #334155;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --border: #e2e8f0;
}

/* Modern Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-green);
}

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

/* Modern Header */
/* .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    box-shadow: var(--shadow);
    border-bottom: 1px solid var(--border);
    animation: headerSlideDown 0.6s ease-out;
} */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    box-shadow: var(--shadow);
    border-bottom: 1px solid var(--border);
    animation: headerSlideDown 0.6s ease-out;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: var(--primary-green);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.header.scrolled .logo {
    color: var(--white);
}

.header.scrolled .logo span {
    color: var(--white);
}

.header.scrolled .register-btn {
    background: var(--white);
    color: var(--primary-green);
    border: 2px solid var(--white);
}

.header.scrolled .register-btn:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.header.scrolled .back-btn {
    color: var(--white);
    border-color: var(--white);
}

.header.scrolled .back-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
} 

@keyframes headerSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark-gray);
    font-weight: 700;
    font-size: 1.1rem;
}

.logo-icon {
    width: 60px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.register-btn {
    background: var(--primary-green);
    border: none;
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    box-shadow: var(--shadow);
}

.register-btn:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Modern Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-tiles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(16, 185, 129, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(52, 211, 153, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 40% 80%, rgba(110, 231, 183, 0.1) 2px, transparent 2px);
    background-size: 100px 100px, 150px 150px, 200px 200px;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.5;
    }
    50% { 
        transform: translateY(-10px) rotate(180deg);
        opacity: 0.8;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    color: var(--dark-gray);
    text-align: center;
}

.hero-tagline {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    line-height: 1.4;
    font-style: italic;
    text-align: center;
    opacity: 0.9;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--gray);
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.app-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary-green);
    border: none;
    border-radius: 8px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    box-shadow: var(--shadow);
}

.app-btn:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.app-btn i {
    font-size: 1.2rem;
}

.app-btn i {
    font-size: 1.2rem;
}

/* Phone Mockups */
.hero-mockups {
    display: flex;
    justify-content: center;
    gap: 2rem;
    position: relative;
}

.phone-mockup {
    width: 280px;
    height: auto;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    position: relative;
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: all 0.3s ease;
    overflow: visible;
}

.phone-mockup:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(3deg) translateY(-5px);
}

.phone-mockup:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(2deg) scale(1.05);
}

.phone-mockup.left {
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg) translateX(-20px);
}

.phone-mockup.right {
    transform: perspective(1000px) rotateY(15deg) rotateX(5deg) translateX(20px);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--primary-green);
    border-radius: 14px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    color: var(--white);
}

.phone-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    display: block;
    background: transparent;
    box-sizing: border-box;
}

.screen-content h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.tournament-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.tournament-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tournament-name {
    font-size: 0.9rem;
    font-weight: 500;
}

.tournament-time {
    font-size: 0.8rem;
    opacity: 0.8;
}

.tournament-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.join-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 12px 32px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.join-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Modern Features Section */
.features {
    padding: 4rem 0;
    background: var(--white);
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    text-align: center;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a5f3c;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Modern How It Works Section */
.how-it-works {
    padding: 4rem 0;
    background: var(--light-gray);
}

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

.work-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.work-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
}

.work-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.work-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a5f3c;
    margin-bottom: 1rem;
}

.work-card p {
    color: #666;
    line-height: 1.6;
}

/* Modern Device Availability Section */
.device-availability {
    padding: 4rem 0;
    background: var(--primary-green);
    position: relative;
    overflow: hidden;
}

.availability-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.blurred-tiles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 3px, transparent 3px),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 3px, transparent 3px);
    background-size: 200px 200px, 300px 300px;
    filter: blur(2px);
    animation: float 25s ease-in-out infinite reverse;
}

.availability-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.availability-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.availability-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.availability-content .app-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

/* Modern Tournament Experience Section */
.tournament-experience {
    padding: 4rem 0;
    background: var(--white);
}

.play-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.play-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.play-text p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.play-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.play-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.play-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.play-feature h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.play-feature p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

.play-mockups {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.play-mockups .phone-mockup {
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
}

.play-mockups .phone-mockup:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) scale(1.05);
}

.tournament-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Modern Daily Flow Section */
.daily-flow {
    padding: 4rem 0;
    background: var(--light-gray);
}

.flow-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.flow-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.flow-text p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.flow-list {
    list-style: none;
    margin-bottom: 2rem;
}

.flow-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--gray);
    line-height: 1.6;
}

.flow-list li i {
    color: var(--primary-green);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.flow-mockups {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flow-mockups .phone-mockup {
    width: 280px;
    height: auto;
    transition: all 0.3s ease;
}

.flow-mockups .phone-mockup:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.flow-mockups .phone-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.dashboard-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.stat-value {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Modern FAQ Section */
.faq {
    padding: 4rem 0;
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-gray);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-green);
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(16, 185, 129, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 0;
}

.faq-question i {
    color: var(--primary-green);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Modern Get Started Section */
.get-started {
    padding: 4rem 0;
    background: var(--primary-green);
    color: var(--white);
}

.get-started-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.get-started-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.get-started-text p {
    font-size: 1.1rem;
    opacity: 0.95;
    line-height: 1.6;
}

.email-input {
    display: flex;
    gap: 1rem;
    max-width: 400px;
}

.email-input input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: var(--white);
    color: var(--dark-gray);
}

.email-input input::placeholder {
    color: var(--gray);
}

.email-input input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.send-btn {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 8px;
    background: var(--white);
    color: var(--primary-green);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.send-btn:hover {
    background: var(--light-gray);
    transform: scale(1.05);
}

/* Modern Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 3rem 0 2rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-column p {
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
}

.footer-column h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.app-buttons-vertical {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.app-buttons-vertical .app-btn {
    justify-content: center;
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.9;
}

.contact-item i {
    color: var(--primary-green);
    width: 20px;
}

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

.copyright p {
    opacity: 0.8;
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

.separator {
    opacity: 0.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .play-content,
    .flow-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .works-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding-top: 120px;
        margin-top: 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .app-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .phone-mockup {
        width: 240px;
        height: 480px;
    }
    
    .hero-mockups {
        flex-direction: column;
        gap: 1rem;
    }
    
    .phone-mockup.left,
    .phone-mockup.right {
        transform: none;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .works-grid {
        grid-template-columns: 1fr;
    }
    
    .play-mockups {
        flex-direction: column;
        gap: 1rem;
    }
    
    .get-started-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .email-input {
        max-width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    /* Tournament Experience Section Mobile Responsive */
    .tournament-experience {
        padding: 2rem 0;
    }
    
    .play-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .play-text h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .play-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .play-features {
        gap: 1.5rem;
    }
    
    .play-feature {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .play-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto;
        font-size: 1.5rem;
    }
    
    .play-feature h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .play-feature p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 100px;
        margin-top: 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .register-btn {
        font-size: 0.8rem;
        padding: 10px 20px;
    }
    
    /* Tournament Experience Section Small Mobile */
    .tournament-experience {
        padding: 1.5rem 0;
    }
    
    .play-text h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .play-text p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
    
    .play-features {
        gap: 1.2rem;
    }
    
    .play-feature {
        gap: 0.6rem;
    }
    
    .play-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .play-feature h3 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .play-feature p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

/* Animation Classes */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-down"] {
    transform: translateY(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos="zoom-out"] {
    transform: scale(1.2);
}

/* Privacy Policy Page Styles */
.back-btn {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    border: none;
    color: var(--white);
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
}

.back-btn::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;
}

.back-btn:hover {
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.back-btn:hover::before {
    left: 100%;
}

.privacy-policy {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.privacy-policy::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 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.policy-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 70px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.policy-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green), #22c55e, #16a34a);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

.policy-content::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(20px);
}

.policy-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid rgba(241, 245, 249, 0.8);
    position: relative;
}

.policy-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
    border-radius: 1px;
}

.policy-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green), #22c55e);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    letter-spacing: -0.02em;
}

.effective-date {
    color: var(--gray);
    font-size: 1.1rem;
    font-weight: 500;
    background: rgba(16, 185, 129, 0.1);
    padding: 8px 20px;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.policy-intro {
    background: linear-gradient(135deg, rgba(240, 253, 244, 0.8) 0%, rgba(220, 252, 231, 0.8) 100%);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 50px;
    border-left: 5px solid var(--primary-green);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.2);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.1);
}

.policy-intro::before {
    content: '📋';
    position: absolute;
    top: -20px;
    left: 40px;
    background: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-green);
}

.policy-section {
    margin-bottom: 50px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    border: 1px solid rgba(229, 231, 235, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.policy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.policy-section:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
}

.policy-section:hover::before {
    transform: scaleX(1);
}

.policy-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.policy-section h2::before {
    content: '🔒';
    font-size: 1.4rem;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 30px 0 20px;
    padding-left: 25px;
    border-left: 4px solid var(--primary-green);
    position: relative;
}

.policy-section h3::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-green), var(--accent-green));
    border-radius: 2px;
}

.policy-section p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 18px;
    font-size: 1.05rem;
    text-align: justify;
}

.policy-section ul {
    margin: 25px 0;
    padding-left: 25px;
}

.policy-section li {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
    font-size: 1.05rem;
}

.policy-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.2rem;
    background: rgba(16, 185, 129, 0.1);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.policy-section strong {
    color: var(--dark-gray);
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-section em {
    color: var(--accent-green);
    font-style: normal;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

.policy-section a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.policy-section a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
    transition: width 0.3s ease;
}

.policy-section a:hover {
    color: var(--dark-green);
}

.policy-section a:hover::after {
    width: 100%;
}

.policy-footer {
    background: linear-gradient(135deg, rgba(240, 253, 244, 0.9) 0%, rgba(220, 252, 231, 0.9) 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 50px;
    border: 1px solid rgba(187, 247, 208, 0.5);
    position: relative;
    backdrop-filter: blur(10px);
}

.policy-footer::before {
    content: '💚';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-green);
}

.policy-footer p {
    color: var(--dark-gray);
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
}

/* Responsive Design for Privacy Policy */
@media (max-width: 768px) {
    .privacy-policy {
        padding: 100px 20px 60px;
    }
    
    .policy-content {
        padding: 40px 25px;
        border-radius: 20px;
    }
    
    .policy-header h1 {
        font-size: 2.2rem;
    }
    
    .policy-section {
        padding: 30px 25px;
    }
    
    .policy-intro {
        padding: 30px 25px;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-section h3 {
        font-size: 1.2rem;
    }
} 

/* Enhanced Animations for Landing Page */

/* Logo Animation */
.logo {
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    transition: all 0.3s ease;
}

.logo-icon:hover {
    transform: rotate(5deg) scale(1.1);
}

.logo-image {
    transition: all 0.3s ease;
}

.logo-image:hover {
    filter: brightness(1.2) contrast(1.1);
}

/* Enhanced Button Animations */
.register-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.register-btn::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;
}

.register-btn:hover::before {
    left: 100%;
}

.register-btn:hover {
    background: var(--secondary-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

/* Enhanced App Button Animations */
.app-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.app-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.app-btn:hover::before {
    width: 300px;
    height: 300px;
}

.app-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Enhanced Feature Card Animations */
.feature-card {
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
}

/* Enhanced Work Card Animations */
.work-card {
    transition: all 0.4s ease;
    position: relative;
}

.work-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
    transition: width 0.4s ease;
}

.work-card:hover::after {
    width: 100%;
}

.work-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.work-icon {
    transition: all 0.3s ease;
}

.work-card:hover .work-icon {
    transform: scale(1.15) rotate(-5deg);
}

/* Enhanced Phone Mockup Animations */
.phone-mockup {
    transition: all 0.4s ease;
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, var(--primary-green), var(--accent-green), var(--light-green));
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.phone-mockup:hover::before {
    opacity: 0.3;
}

.phone-mockup:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.phone-image {
    transition: all 0.3s ease;
}

.phone-mockup:hover .phone-image {
    transform: scale(1.02);
}

/* Enhanced FAQ Animations */
.faq-item {
    transition: all 0.3s ease;
}

.faq-question {
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(52, 211, 153, 0.05));
}

.faq-question i {
    transition: all 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg) scale(1.2);
}

/* Enhanced Email Input Animations */
.email-input {
    transition: all 0.3s ease;
}

.email-input:focus-within {
    transform: scale(1.02);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.email-input input {
    transition: all 0.3s ease;
}

.email-input input:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.send-btn {
    transition: all 0.3s ease;
}

.send-btn:hover {
    transform: scale(1.1);
    background: var(--secondary-green);
}

/* Enhanced Social Links Animations */
.social-links a {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-links a::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;
}

.social-links a:hover::before {
    left: 100%;
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Enhanced Footer Links Animations */
.footer-links a {
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

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

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

/* Enhanced Contact Item Animations */
.contact-item {
    transition: all 0.3s ease;
}

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

.contact-item i {
    transition: all 0.3s ease;
}

.contact-item:hover i {
    color: var(--primary-green);
    transform: scale(1.2);
}

/* Enhanced Flow List Animations */
.flow-list li {
    transition: all 0.3s ease;
    position: relative;
}

.flow-list li::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transform: translateY(-50%);
    transition: width 0.3s ease;
}

.flow-list li:hover::before {
    width: 15px;
}

.flow-list li:hover {
    transform: translateX(10px);
    color: var(--primary-green);
}

.flow-list li i {
    transition: all 0.3s ease;
}

.flow-list li:hover i {
    transform: scale(1.2);
    color: var(--primary-green);
}

/* Enhanced Play Feature Animations */
.play-feature {
    transition: all 0.3s ease;
}

.play-feature:hover {
    transform: translateX(10px);
}

.play-icon {
    transition: all 0.3s ease;
}

.play-feature:hover .play-icon {
    transform: scale(1.2) rotate(5deg);
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
}

/* Enhanced Section Header Animations */
.section-header h2 {
    transition: all 0.3s ease;
}

.section-header:hover h2 {
    color: var(--primary-green);
    transform: scale(1.02);
}

/* Enhanced Hero Title Animation */
.hero-title {
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 0 5px rgba(16, 185, 129, 0.3);
    }
    100% {
        text-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
    }
}

/* Enhanced Floating Tiles Animation */
.floating-tiles {
    animation: float 20s ease-in-out infinite, glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

/* Enhanced Blurred Tiles Animation */
.blurred-tiles {
    animation: float 25s ease-in-out infinite reverse, glowPulse 6s ease-in-out infinite;
}

/* Enhanced Logo Pulse Animation */
.logo-icon {
    animation: logoPulse 4s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Enhanced Scroll Animations */
@keyframes slideInFromBottom {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Enhanced Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

/* Enhanced Button Loading State */
.register-btn.loading {
    background: linear-gradient(90deg, var(--primary-green) 25%, var(--accent-green) 50%, var(--primary-green) 75%);
    background-size: 200px 100%;
    animation: shimmer 2s infinite;
}

/* Enhanced Mobile Responsive Animations */
@media (max-width: 768px) {
    .feature-card:hover {
        transform: translateY(-5px);
    }
    
    .phone-mockup:hover {
        transform: translateY(-10px) scale(1.03);
    }
    
    .work-card:hover {
        transform: translateY(-5px);
    }
}

/* Enhanced Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
} 
/* Enhanced Background Animations */

/* Moving Small Circles Animation */
.moving-circles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.moving-circles::before,
.moving-circles::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-green);
    border-radius: 50%;
    opacity: 0.6;
    animation: moveCircle1 15s linear infinite;
}

.moving-circles::after {
    width: 12px;
    height: 12px;
    background: var(--accent-green);
    animation: moveCircle2 20s linear infinite;
    animation-delay: -5s;
}

@keyframes moveCircle1 {
    0% {
        top: 10%;
        left: 10%;
        opacity: 0.6;
    }
    25% {
        top: 20%;
        left: 80%;
        opacity: 0.8;
    }
    50% {
        top: 60%;
        left: 90%;
        opacity: 0.4;
    }
    75% {
        top: 80%;
        left: 20%;
        opacity: 0.7;
    }
    100% {
        top: 10%;
        left: 10%;
        opacity: 0.6;
    }
}

@keyframes moveCircle2 {
    0% {
        top: 80%;
        left: 80%;
        opacity: 0.5;
    }
    33% {
        top: 30%;
        left: 10%;
        opacity: 0.8;
    }
    66% {
        top: 10%;
        left: 60%;
        opacity: 0.3;
    }
    100% {
        top: 80%;
        left: 80%;
        opacity: 0.5;
    }
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--light-green);
    border-radius: 50%;
    opacity: 0.4;
    animation: floatParticle 12s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 25%;
    left: 85%;
    animation-delay: -3s;
}

.particle:nth-child(3) {
    top: 75%;
    left: 25%;
    animation-delay: -6s;
}

.particle:nth-child(4) {
    top: 85%;
    left: 75%;
    animation-delay: -9s;
}

.particle:nth-child(5) {
    top: 45%;
    left: 50%;
    animation-delay: -2s;
}

.particle:nth-child(6) {
    top: 55%;
    left: 10%;
    animation-delay: -5s;
}

.particle:nth-child(7) {
    top: 35%;
    left: 90%;
    animation-delay: -8s;
}

.particle:nth-child(8) {
    top: 65%;
    left: 40%;
    animation-delay: -1s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.4;
    }
    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-10px) translateX(-15px);
        opacity: 0.3;
    }
    75% {
        transform: translateY(-30px) translateX(5px);
        opacity: 0.6;
    }
}

/* Pulsing Dots */
.pulsing-dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.pulsing-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulseDot 4s ease-in-out infinite;
}

.pulsing-dot:nth-child(1) {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.pulsing-dot:nth-child(2) {
    top: 70%;
    left: 80%;
    animation-delay: -1s;
}

.pulsing-dot:nth-child(3) {
    top: 40%;
    left: 70%;
    animation-delay: -2s;
}

.pulsing-dot:nth-child(4) {
    top: 80%;
    left: 20%;
    animation-delay: -3s;
}

@keyframes pulseDot {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.8;
    }
}

/* Wavy Lines */
.wavy-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.1;
}

.wavy-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
    animation: waveMove 8s ease-in-out infinite;
}

.wavy-line:nth-child(1) {
    top: 25%;
    left: 0;
    width: 100%;
    animation-delay: 0s;
}

.wavy-line:nth-child(2) {
    top: 75%;
    left: 0;
    width: 100%;
    animation-delay: -4s;
}

@keyframes waveMove {
    0%, 100% {
        transform: translateX(-100%);
        opacity: 0.1;
    }
    50% {
        transform: translateX(100%);
        opacity: 0.3;
    }
}

/* Enhanced Floating Tiles with More Variety */
.floating-tiles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(16, 185, 129, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(52, 211, 153, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 40% 80%, rgba(110, 231, 183, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 60% 20%, rgba(16, 185, 129, 0.08) 3px, transparent 3px),
        radial-gradient(circle at 90% 40%, rgba(52, 211, 153, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 10% 60%, rgba(110, 231, 183, 0.08) 4px);
    background-size: 100px 100px, 150px 150px, 200px 200px, 120px 120px, 80px 80px, 180px 180px;
    animation: float 20s ease-in-out infinite, glowPulse 4s ease-in-out infinite;
}

/* Enhanced Blurred Tiles */
.blurred-tiles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(16, 185, 129, 0.05) 4px, transparent 4px),
        radial-gradient(circle at 70% 80%, rgba(52, 211, 153, 0.05) 6px, transparent 6px),
        radial-gradient(circle at 50% 50%, rgba(110, 231, 183, 0.05) 3px, transparent 3px),
        radial-gradient(circle at 85% 15%, rgba(16, 185, 129, 0.03) 5px, transparent 5px),
        radial-gradient(circle at 15% 85%, rgba(52, 211, 153, 0.03) 2px, transparent 2px);
    background-size: 200px 200px, 300px 300px, 150px 150px, 250px 250px, 100px 100px;
    animation: float 25s ease-in-out infinite reverse, glowPulse 6s ease-in-out infinite;
    filter: blur(1px);
}

/* Rotating Elements */
.rotating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.rotating-element {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--light-green);
    border-radius: 50%;
    opacity: 0.2;
    animation: rotateElement 30s linear infinite;
}

.rotating-element:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.rotating-element:nth-child(2) {
    top: 80%;
    left: 80%;
    animation-delay: -15s;
}

.rotating-element:nth-child(3) {
    top: 50%;
    left: 90%;
    animation-delay: -7s;
}

@keyframes rotateElement {
    0% {
        transform: rotate(0deg);
        opacity: 0.2;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        transform: rotate(360deg);
        opacity: 0.2;
    }
}

/* Bouncing Dots */
.bouncing-dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.bouncing-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: bounceDot 3s ease-in-out infinite;
}

.bouncing-dot:nth-child(1) {
    top: 30%;
    left: 20%;
    animation-delay: 0s;
}

.bouncing-dot:nth-child(2) {
    top: 60%;
    left: 70%;
    animation-delay: -1s;
}

.bouncing-dot:nth-child(3) {
    top: 20%;
    left: 80%;
    animation-delay: -2s;
}

@keyframes bounceDot {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-15px);
        opacity: 0.7;
    }
}

/* Enhanced Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

/* Enhanced Device Availability Background */
.availability-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
} 


/* Mobile Frames with Built-in Frames */
.mobile-frame {
    position: relative;
    width: 420px !important;
    height: auto !important;
    margin: 10px;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 420px !important;
    max-width: 420px !important;
    cursor: pointer;
}

.mobile-frame img {
    width: 100% !important;
    height: auto !important;
    display: block;
    border-radius: 8px;
    transition: all 0.4s ease;
    filter: brightness(1) contrast(1);
}

/* Force mobile frame width override */
.mobile-frames-container .mobile-frame {
    width: 240px !important;
    min-width: 240px !important;
    max-width: 240px !important;
}

/* Mobile Frame Container */
.mobile-frames-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    flex-wrap: nowrap;
    max-width: 2400px;
    margin: 0 auto;
}

.mobile-frame:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(16, 185, 129, 0.1),
        0 10px 30px rgba(16, 185, 129, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mobile-frame:hover img {
    transform: scale(1.02);
    filter: brightness(1.05) contrast(1.02);
    transition: all 0.4s ease;
}

.mobile-frame::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(16, 185, 129, 0.1), 
        rgba(52, 211, 153, 0.1), 
        rgba(16, 185, 129, 0.1));
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.mobile-frame:hover::before {
    opacity: 1;
}

/* Mobile Frame Animation */
.mobile-frame {
    animation: frameFloat 6s ease-in-out infinite;
}

.mobile-frame:nth-child(1) {
    animation-delay: 0s;
}

.mobile-frame:nth-child(2) {
    animation-delay: -1.5s;
}

.mobile-frame:nth-child(3) {
    animation-delay: -3s;
}

.mobile-frame:nth-child(4) {
    animation-delay: -4.5s;
}

.mobile-frame:nth-child(5) {
    animation-delay: -6s;
}

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

/* Mobile Frame Section */
.mobile-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.mobile-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(16, 185, 129, 0.05) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(52, 211, 153, 0.05) 2px, transparent 2px);
    background-size: 100px 100px, 150px 150px;
    animation: float 20s ease-in-out infinite;
}

.mobile-showcase .container {
    position: relative;
    z-index: 2;
}

.mobile-showcase-header {
    text-align: center;
    margin-bottom: 60px;
}

.mobile-showcase-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.mobile-showcase-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive Mobile Frames */
@media (max-width: 1400px) {
    .mobile-frame {
        width: 380px !important;
    }
    
    .mobile-frames-container {
        gap: 20px;
        flex-wrap: nowrap;
    }
}

@media (max-width: 1200px) {
    .mobile-frame {
        width: 340px !important;
    }
    
    .mobile-frames-container {
        gap: 25px;
        flex-wrap: nowrap;
    }
}

@media (max-width: 768px) {
    .mobile-frame {
        width: 300px !important;
        margin: 8px;
    }
    
    .mobile-frames-container {
        gap: 20px;
        padding: 40px 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .mobile-showcase-header h2 {
        font-size: 2rem;
    }
    
    .mobile-showcase-header p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .mobile-frame {
        width: 260px !important;
        margin: 6px;
    }
    
    .mobile-frames-container {
        gap: 12px;
    }
} 
