/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0074E4 0%, #005BB8 50%, #0074E4 100%);
    min-height: 100vh;
    color: #EFEAE9;
    overflow-x: hidden;
}

/* Animated background elements */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(253, 207, 0, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(253, 207, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 30%);
    z-index: -1;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 20px;
}

.title {
    font-size: 4rem;
    font-weight: 900;
    color: #EFEAE9;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
    background: linear-gradient(45deg, #EFEAE9, #FDCF00, #EFEAE9);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.subtitle {
    font-size: 1.5rem;
    color: #EFEAE9;
    opacity: 0.9;
    font-weight: 300;
}

/* Main content */
.main-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 20px;
}

.play-button-container {
    display: inline-block;
    margin-bottom: 40px;
    position: relative;
}

.play-button {
    display: block;
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid #FDCF00;
    box-shadow: 
        0 0 0 4px #0074E4,
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(253, 207, 0, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    background: #FDCF00;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 
        0 0 0 6px #FDCF00,
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(253, 207, 0, 0.6);
}

.game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 116, 228, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.play-button:hover .play-overlay {
    opacity: 1;
}

.play-icon {
    font-size: 4rem;
    color: #EFEAE9;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.play-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: #EFEAE9;
    letter-spacing: 2px;
}

/* Game description */
.game-description h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #FDCF00;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.game-description p {
    font-size: 1.3rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    color: #EFEAE9;
    opacity: 0.9;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
    position: relative;
    margin: 0 -20px;
}

.content-section[data-color="#FFADDE"] {
    background: linear-gradient(135deg, #FFADDE 0%, #FF8CC8 100%);
    color: #2D1B69;
}

.content-section[data-color="#FFF14A"] {
    background: linear-gradient(135deg, #FFF14A 0%, #F4D03F 100%);
    color: #2D1B69;
}

.content-section[data-color="#FF8B56"] {
    background: linear-gradient(135deg, #FF8B56 0%, #FF6B35 100%);
    color: #FFFFFF;
}

.content-section[data-color="#D999FF"] {
    background: linear-gradient(135deg, #D999FF 0%, #C39BD3 100%);
    color: #2D1B69;
}

.content-section[data-color="#6CE538"] {
    background: linear-gradient(135deg, #6CE538 0%, #58D68D 100%);
    color: #1B4F72;
}

.content-section[data-color="#BF7EFF"] {
    background: linear-gradient(135deg, #BF7EFF 0%, #A569BD 100%);
    color: #FFFFFF;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-content.reverse {
    grid-template-columns: 1fr 1fr;
}

.section-content.reverse .text-content {
    order: 2;
}

.section-content.reverse .image-content {
    order: 1;
}

.section-content.centered {
    grid-template-columns: 1fr;
    text-align: center;
}

.text-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.text-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.text-content strong {
    font-weight: 700;
}

.full-width {
    width: 100%;
    max-width: none;
}

/* Image Content */
.image-content {
    position: relative;
}

.section-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.section-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

/* Pros and Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
    text-align: left;
}

.pros, .cons {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.pros h3, .cons h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.pros ul, .cons ul {
    list-style: none;
    padding: 0;
}

.pros li, .cons li {
    padding: 8px 0;
    font-size: 1.1rem;
    line-height: 1.5;
    position: relative;
    padding-left: 20px;
}

.pros li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27AE60;
    font-weight: bold;
}

.cons li::before {
    content: "!";
    position: absolute;
    left: 0;
    color: #E74C3C;
    font-weight: bold;
}

.conclusion-text {
    margin-top: 30px;
    font-size: 1.3rem;
    font-weight: 500;
    text-align: center;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #0074E4 0%, #005BB8 100%);
    margin: 60px -20px 0;
    position: relative;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #EFEAE9;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #EFEAE9;
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #FDCF00 0%, #F39C12 100%);
    color: #2D1B69;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(253, 207, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(253, 207, 0, 0.4);
    background: linear-gradient(135deg, #F39C12 0%, #FDCF00 100%);
}

.button-icon {
    font-size: 1.5rem;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 80px;
    padding: 40px 20px;
    border-top: 2px solid rgba(253, 207, 0, 0.3);
    color: #EFEAE9;
    opacity: 0.8;
}

.footer-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #FDCF00;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.footer-links a:hover {
    background: rgba(253, 207, 0, 0.1);
    border-color: #FDCF00;
    transform: translateY(-2px);
}

/* Terms Page Styles */
.terms-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.terms-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(253, 207, 0, 0.2);
}

.terms-section h2 {
    color: #FDCF00;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.terms-section h3 {
    color: #EFEAE9;
    font-size: 1.2rem;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.terms-section p {
    color: #EFEAE9;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1rem;
}

.terms-section ul {
    color: #EFEAE9;
    margin: 15px 0;
    padding-left: 30px;
}

.terms-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.terms-section a {
    color: #FDCF00;
    text-decoration: underline;
    font-weight: 500;
    transition: all 0.3s ease;
}

.terms-section a:hover {
    color: #EFEAE9;
    text-decoration: none;
}

.back-home {
    text-align: center;
    margin: 40px 0;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0074E4 0%, #005BB8 100%);
    border-top: 3px solid #FDCF00;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: bottom 0.3s ease-in-out;
    backdrop-filter: blur(10px);
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-text h3 {
    color: #FDCF00;
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.cookie-text p {
    color: #EFEAE9;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    opacity: 0.9;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-btn.accept {
    background: linear-gradient(135deg, #FDCF00 0%, #F39C12 100%);
    color: #2D1B69;
}

.cookie-btn.accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(253, 207, 0, 0.4);
}

.cookie-btn.reject {
    background: transparent;
    color: #EFEAE9;
    border: 2px solid rgba(239, 234, 233, 0.5);
}

.cookie-btn.reject:hover {
    background: rgba(239, 234, 233, 0.1);
    border-color: #EFEAE9;
}

.cookie-link {
    color: #FDCF00;
    text-decoration: none;
    font-weight: 500;
    padding: 8px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.cookie-link:hover {
    background: rgba(253, 207, 0, 0.1);
    text-decoration: underline;
}

/* Toast Notifications */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #0074E4;
    color: white;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 350px;
    border-left: 4px solid #FDCF00;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast.toast-success {
    background: linear-gradient(135deg, #27AE60 0%, #2ECC71 100%);
    border-left-color: #F1C40F;
}

.toast.toast-info {
    background: linear-gradient(135deg, #3498DB 0%, #5DADE2 100%);
    border-left-color: #FDCF00;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast-icon {
    font-size: 1.2rem;
}

.toast-message {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .play-button {
        width: 250px;
        height: 250px;
    }
    
    .game-description h2 {
        font-size: 2rem;
    }
    
    .game-description p {
        font-size: 1.1rem;
    }
    
    /* Content sections mobile */
    .content-section {
        padding: 60px 0;
        margin: 0 -15px;
    }
    
    .section-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 30px;
        text-align: center;
    }
    
    .section-content.reverse {
        grid-template-columns: 1fr;
    }
    
    .section-content.reverse .text-content,
    .section-content.reverse .image-content {
        order: initial;
    }
    
    .text-content h2 {
        font-size: 2rem;
    }
    
    .text-content p {
        font-size: 1.1rem;
    }
    
    .section-image {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-section {
        padding: 60px 20px;
        margin: 40px -15px 0;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 18px 35px;
        font-size: 1.1rem;
    }
    
    .footer-links {
        gap: 20px;
    }
    
    .footer-links a {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    
    .terms-section {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .terms-section h2 {
        font-size: 1.3rem;
    }
    
    .terms-section h3 {
        font-size: 1.1rem;
    }
    
    /* Cookie banner mobile */
    .cookie-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 20px 15px;
    }
    
    .cookie-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .cookie-btn {
        width: 100%;
        padding: 14px 20px;
    }
    
    .toast {
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .toast.show {
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }
    
    .play-button {
        width: 200px;
        height: 200px;
    }
    
    .play-icon {
        font-size: 3rem;
    }
    
    .content-section {
        padding: 50px 0;
    }
    
    .section-content {
        padding: 0 20px;
    }
    
    .text-content h2 {
        font-size: 1.8rem;
    }
    
    .text-content p {
        font-size: 1rem;
    }
    
    .section-image {
        max-width: 240px;
    }
    
    .pros, .cons {
        padding: 20px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .terms-section {
        padding: 15px;
    }
    
    .terms-section h2 {
        font-size: 1.2rem;
    }
    
    .terms-section p {
        font-size: 0.9rem;
    }
    
    .terms-section h3 {
        font-size: 1rem;
    }
    
    /* Cookie banner small mobile */
    .cookie-text h3 {
        font-size: 1.1rem;
    }
    
    .cookie-text p {
        font-size: 0.9rem;
    }
    
    .cookie-btn {
        font-size: 0.9rem;
        padding: 12px 18px;
    }
}
