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

:root {
    /* Dark Color Scheme */
    --primary-green: #00D4AA;
    --secondary-yellow: #FFD700;
    --accent-blue: #4A90E2;
    --warm-orange: #FF6B35;
    --gold: #FFD700;
    --dark-green: #1A472A;
    --light-green: #2ECC71;
    --white: #FFFFFF;
    --black: #0A0A0A;
    --dark-gray: #1A1A1A;
    --gray: #666666;
    --light-gray: #2A2A2A;
    --lighter-gray: #3A3A3A;
    --shadow: rgba(0, 0, 0, 0.3);
    --gradient-primary: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-yellow), var(--gold));
    --gradient-accent: linear-gradient(135deg, var(--warm-orange), var(--gold));
    --gradient-dark: linear-gradient(135deg, var(--black), var(--dark-gray));
}

body {
    font-family: 'Poppins', 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--white);
    background: var(--black);
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-green);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.logo-icon {
    width: 40px;
    height: 40px;
    position: relative;
}

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

.tiger-head {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF8C00, #FFD700);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.tiger-ears {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid #FF8C00;
}

.tiger-face {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
}

.tiger-eyes {
    position: absolute;
    top: 20%;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.eye {
    width: 6px;
    height: 6px;
    background: #000;
    border-radius: 50%;
    position: relative;
}

.eye::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    width: 2px;
    height: 2px;
    background: #FFF;
    border-radius: 50%;
}

.tiger-nose {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: #000;
    border-radius: 50%;
}

.tiger-stripes {
    position: absolute;
    bottom: 20%;
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.stripe {
    width: 2px;
    height: 8px;
    background: #000;
    border-radius: 1px;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.btn-register {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 170, 0.4);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero {
        height: 500px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .canvas-features {
        flex-direction: column;
        align-items: center;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8), rgba(26, 26, 26, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--secondary-yellow);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-yellow);
}

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

.btn-play {
    background: var(--gradient-secondary);
    color: var(--black);
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 6px 20px rgba(255, 223, 0, 0.4);
}

.btn-play:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 223, 0, 0.6);
}



/* Content Canvas Section */
.content-canvas {
    padding: 80px 0;
    background: var(--gradient-dark);
    color: var(--white);
}

.canvas-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.canvas-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
    font-family: 'Poppins', sans-serif;
}

.canvas-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--white);
    line-height: 1.8;
}

.canvas-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.canvas-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--lighter-gray);
    border-radius: 15px;
    border: 2px solid var(--primary-green);
    transition: all 0.3s ease;
}

.canvas-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.3);
}

.canvas-feature i {
    font-size: 2.5rem;
    color: var(--primary-green);
}

.canvas-feature span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--primary-green);
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

/* Overview Section */
.overview {
    padding: 80px 0;
    background: var(--dark-gray);
}

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

.overview-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.key-features {
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.overview-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--black);
}

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

.feature-card {
    background: var(--lighter-gray);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-green);
    box-shadow: 0 15px 40px rgba(0, 212, 170, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.feature-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Strategy Section */
.strategy {
    padding: 80px 0;
    background: var(--dark-gray);
}

.strategy-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.strategy-tips .tip {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--lighter-gray);
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.tip-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.tip-content h4 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.strategy-stats {
    background: var(--lighter-gray);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    height: fit-content;
}

.strategy-stats h3 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
}

.stat-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-green);
}

.stat-name {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Review Section */
.review {
    padding: 80px 0;
    background: var(--black);
}

.review-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.rating-overview {
    text-align: center;
}

.overall-rating {
    margin-bottom: 2rem;
}

.rating-score {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.rating-stars {
    margin-bottom: 1rem;
}

.rating-stars i {
    color: var(--secondary-yellow);
    font-size: 1.5rem;
    margin: 0 0.2rem;
}

.rating-breakdown {
    text-align: left;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}



.rating-item span:first-child {
    min-width: 100px;
    font-weight: 500;
}

.rating-bar {
    flex: 1;
    height: 8px;
    background: var(--light-gray);
    border-radius: 4px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: var(--gradient-secondary);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.rating-item span:last-child {
    min-width: 40px;
    text-align: right;
    font-weight: 600;
    color: var(--primary-green);
}

.review-text h3 {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.review-text p {
    margin-bottom: 1rem;
    color: var(--gray);
    line-height: 1.7;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: var(--gradient-dark);
    color: var(--white);
    text-align: center;
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-register-large {
    background: var(--gradient-secondary);
    color: var(--black);
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 35px;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 8px 25px rgba(255, 223, 0, 0.4);
    margin-bottom: 1rem;
}

.btn-register-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 223, 0, 0.6);
}

.cta-note {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 20px;
}

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



.footer-section h3,
.footer-section h4 {
    color: var(--secondary-yellow);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--white);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-yellow);
}

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

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

.social-links a:hover {
    background: var(--secondary-yellow);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray);
    color: var(--light-gray);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        text-align: center;
        gap: 3rem;
    }
    
    .overview-content,
    .strategy-content,
    .review-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .hero-text h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav {
        display: none;
    }
    
    .hero {
        height: 500px;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .canvas-content h2 {
        font-size: 2.2rem;
    }
    
    .canvas-features {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .strategy-tips .tip {
        flex-direction: column;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .rating-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .rating-item span:first-child {
        min-width: auto;
    }
    
    .rating-item span:last-child {
        min-width: auto;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .btn-register-large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text h2 {
        font-size: 1.3rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn-play,
    .btn-register-large {
        width: 100%;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.overview-content,
.features-grid,
.strategy-content,
.review-content {
    animation: fadeInUp 0.8s ease-out;
}

/* Hover Effects */
.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.btn-register:hover,
.btn-play:hover,
.btn-register-large:hover {
    transform: translateY(-2px);
}

/* Focus States for Accessibility */
button:focus,
a:focus {
    outline: 2px solid var(--secondary-yellow);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .btn-register,
    .btn-play,
    .btn-register-large,
    .cta,
    .footer {
        display: none;
    }
    
    body {
        color: black;
        background: white;
    }
}
