:root {
    --primary-color: #FFB800;
    --secondary-color: #FF6B6B;
    --accent-color: #FFE66D;
    --text-color: #FFFFFF;
    --background-color: #2D3436;
    --card-bg: rgba(255, 255, 255, 0.05);
    --gradient-1: linear-gradient(135deg, #FFB800 0%, #FF6B6B 100%);
    --gradient-2: linear-gradient(135deg, #FF6B6B 0%, #FFE66D 100%);
}


/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    /* overflow-x: hidden; */
    min-height: 100vh;
    -webkit-overflow-scrolling: touch;
}

.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #E0F7FA 0%, #B3E5FC 100%);
}

.glow-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(74, 144, 226, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
}

.main-container {
    position: relative;
    z-index: 1;
}

.logo-container {
    position: relative;
    padding: 2rem;
}

.game-title {
    font-family: 'Righteous', cursive;
    font-size: 5rem;
    color: #2c3e50;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    margin: 0;
    padding: 0 2rem;
    position: relative;
    font-weight: 700;
}

.tagline {
    font-size: 2rem;
    color: #34495e;
    margin-top: 1rem;
    font-weight: 500;
}

.countdown-container {
    margin: 2rem 0;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    min-width: 120px;
    border: 1px solid rgba(44, 62, 80, 0.1);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.countdown-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 1);
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    display: block;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 1rem;
    color: #34495e;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.cta-section {
    margin: 2rem 0;
}

.cta-text {
    font-size: 2rem;
    color: #2c3e50;
    margin: 2rem 0;
    font-weight: 600;
}

.contact-card {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem 2rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(44, 62, 80, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

.contact-card i {
    color: #3498db;
    font-size: 1.5rem;
}

.email-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
}

.email-link:hover {
    color: #3498db;
}

.social-links {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    color: #2c3e50;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(44, 62, 80, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    color: #3498db;
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 1);
}

.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-element {
    position: absolute;
    font-size: 2.5rem;
    animation: float 6s infinite ease-in-out;
    opacity: 0.8;
}

.element-1 { top: 10%; left: 10%; animation-delay: 0s; }
.element-2 { top: 20%; right: 15%; animation-delay: 1s; }
.element-3 { bottom: 30%; left: 20%; animation-delay: 2s; }
.element-4 { bottom: 20%; right: 25%; animation-delay: 3s; }
.element-5 { top: 40%; left: 50%; animation-delay: 4s; }

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .game-title {
        font-size: 3.5rem;
    }
    
    .tagline {
        font-size: 1.5rem;
    }
    
    .cta-text {
        font-size: 1.5rem;
    }
    
    .contact-card {
        padding: 0.75rem 1.5rem;
    }
    
    .floating-element {
        font-size: 2rem;
    }
    
    .countdown {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 100px;
        padding: 1rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .game-title {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .contact-card {
        padding: 0.6rem 1.2rem;
    }
    
    .floating-element {
        font-size: 1.5rem;
    }
    
    .countdown {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 80px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
}

/* Page Header */
.page-header {
    margin-bottom: 3rem;
    opacity: 1;
    transform: none;
}

.page-header h1 {
    font-family: 'Fredoka One', cursive;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.page-header p {
    font-family: 'Poppins', sans-serif;
    color: var(--accent-color);
}

/* Page Title */
.page-title {
    font-family: 'Righteous', cursive;
    font-size: 3rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

/* Close Button */
.close-button {
    color: var(--primary-color);
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.close-button:hover {
    transform: rotate(90deg);
    color: var(--secondary-color);
}

/* Privacy and Terms Sections */
.privacy-container {
    background: rgba(45, 52, 54, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 800px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 184, 0, 0.1);
    transition: all 0.3s ease;
    text-align: left;
}

.privacy-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 184, 0, 0.2);
    border-color: rgba(255, 184, 0, 0.2);
}

.privacy-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 184, 0, 0.1);
    text-align: left;
}

.privacy-section:last-child {
    border-bottom: none;
}

.privacy-section h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: left;
}

.privacy-section p {
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    text-align: left;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.privacy-item {
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: left;
}

.privacy-item:hover {
    background: rgba(255, 184, 0, 0.1);
    transform: translateX(5px);
}

.privacy-item-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
}

.privacy-item-content p {
    color: var(--text-color);
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.5;
    text-align: left;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: left;
}

.contact-card:hover {
    background: rgba(255, 184, 0, 0.1);
    transform: translateY(-2px);
}

.email-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .privacy-container {
        padding: 1.5rem;
        margin: 1rem;
    }

    .privacy-section h3 {
        font-size: 1.3rem;
    }

    .privacy-item {
        padding: 0.8rem;
    }

    .privacy-item-content h4 {
        font-size: 1rem;
    }

    .privacy-item-content p {
        font-size: 0.85rem;
    }
}

/* Contact Form Styles */
.contact-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-form-container {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.contact-form-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 60px rgba(255, 184, 0, 0.2);
    border-color: var(--primary-color);
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.input-group {
    border-radius: 15px;
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.input-group:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 184, 0, 0.2);
}

.input-group-text {
    background: var(--gradient-1);
    color: white;
    border: none;
    padding: 0 1.5rem;
}

.form-control {
    background: transparent;
    border: none;
    color: var(--text-color);
    padding: 1rem 1.5rem;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
    color: var(--text-color);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn-primary {
    background: var(--gradient-1);
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    border-radius: 15px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 184, 0, 0.3);
}

.alert-success {
    background: rgba(255, 184, 0, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.success-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.success-content i {
    color: var(--primary-color);
    font-size: 2.5rem;
    text-shadow: 0 0 20px rgba(255, 184, 0, 0.5);
}

.success-text h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.success-text p {
    color: var(--text-color);
    opacity: 0.9;
    margin: 0;
}

.invalid-feedback {
    color: var(--primary-color);
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.is-invalid {
    border-color: var(--primary-color) !important;
}

@media (max-width: 768px) {
    .contact-form-container {
        padding: 2rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .btn-primary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Contact Page Styles */
.contact-info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.contact-info-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #00ffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    contain: layout;
    will-change: transform;
}

.contact-details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.form-wrapper {
    padding: 1rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.input-wrapper:focus-within {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.input-icon {
    padding: 0.75rem 1rem;
    color: #00ffff;
    font-size: 1.2rem;
}

.form-control {
    background: transparent;
    border: none;
    color: #fff;
    padding: 0.75rem 1rem;
    width: 100%;
}

.form-control:focus {
    background: transparent;
    box-shadow: none;
    color: #fff;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.error-message {
    color: #ff6b6b;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: block;
}

.submit-button {
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    contain: layout;
    will-change: transform;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.submit-button:hover::before {
    transform: translateX(100%);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.submit-button:disabled {
    background: linear-gradient(45deg, #666, #999);
    transform: none;
    box-shadow: none;
}

.success-message {
    background: rgba(40, 167, 69, 0.2);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 2rem;
    animation: fadeIn 0.5s ease-in-out;
}

.success-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.success-content i {
    font-size: 2rem;
    color: #28a745;
}

.success-text h4 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.success-text p {
    color:#000;
    margin: 0;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-info-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .contact-icon {
        margin: 0 auto;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    .form-wrapper {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .contact-info-card,
    .contact-form-container {
        padding: 1rem;
    }

    .submit-button {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}

/* Performance Optimizations */
.privacy-content, .terms-content {
    contain: content;
    will-change: transform;
    opacity: 1;
}

.privacy-section, .terms-section {
    contain: content;
    will-change: transform;
    opacity: 1;
}

/* Optimize Background */
body {
    contain: layout;
    will-change: transform;
    opacity: 1;
}

.particles-container {
    contain: layout;
    will-change: transform;
}

/* Optimize Content Loading */
.privacy-section, .terms-section {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.privacy-section.visible, .terms-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Optimize Images and Icons */
.contact-icon {
    contain: layout;
    will-change: transform;
}

/* Optimize Lists */
ul {
    contain: content;
    opacity: 1;
}

/* Optimize Buttons */
.submit-button {
    contain: layout;
    will-change: transform;
}

/* Optimize Contact Card */
.contact-card {
    contain: layout;
    will-change: transform;
    opacity: 1;
}

/* Ensure content visibility */
.page-header {
    opacity: 1;
    transform: none;
}

.game-title, .tagline {
    opacity: 1;
    transform: none;
}

/* Optimize animations */
@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Ensure content is visible during loading */
.privacy-section h2,
.privacy-section p,
.privacy-section ul,
.terms-section h2,
.terms-section p,
.terms-section ul {
    opacity: 1;
    transform: none;
}

/* Contact Info Styles */
.contact-info {
    margin-top: 3rem;
    text-align: center;
}

.contact-info p {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.contact-card {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.contact-card i {
    color: #ff6b6b;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.email-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #ff6b6b;
}

.coming-soon-page {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #2c3e50;
    min-height: 100vh;
}

.hero-section {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.game-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.logo-wrapper {
    display: inline-block;
    position: relative;
    margin-bottom: 1rem;
}

.cloud-decoration {
    position: absolute;
    font-size: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
    color: #3498db;
}

.cloud-left {
    left: -60px;
}

.cloud-right {
    right: -60px;
}

/* Feature Highlights */
.feature-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid rgba(44, 62, 80, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

.feature-item i {
    color: #3498db;
    font-size: 1.2rem;
}

.feature-item span {
    color: #2c3e50;
    font-weight: 500;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-text {
    font-size: 2rem;
    color: #2c3e50;
    margin: 2rem 0;
    font-weight: 600;
}

.newsletter-section {
    margin: 2rem 0;
}

.contact-card {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem 2rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(44, 62, 80, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

.contact-card i {
    color: #3498db;
    font-size: 1.5rem;
}

.email-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
}

.email-link:hover {
    color: #3498db;
}

/* Social Links */
.social-links {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    color: #2c3e50;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(44, 62, 80, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    color: #3498db;
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 1);
}

/* Animations */
@keyframes float {
    0% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(10px); }
    100% { transform: translateY(-50%) translateX(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite ease-in-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .game-title {
        font-size: 3.5rem;
    }
    
    .tagline {
        font-size: 1.5rem;
    }
    
    .countdown-container {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 100px;
        padding: 1rem;
    }
    
    .feature-highlights {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cloud-decoration {
        display: none;
    }
    
    .cta-text {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .game-title {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .contact-card {
        padding: 0.75rem 1.5rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

.coming-soon-container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow: hidden;
    background: radial-gradient(circle at center, #3D3D3D 0%, #2D3436 100%);
}

.background-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-1);
    opacity: 0.1;
    filter: blur(50px);
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation: float 8s ease-in-out infinite;
}

.circle-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    right: -100px;
    background: var(--gradient-2);
    animation: float 10s ease-in-out infinite reverse;
}

.circle-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.1; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.2; }
}

.content-wrapper {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
}

.logo-container {
    text-align: center;
    margin-bottom: 2rem;
}

.main-title {
    font-family: 'Righteous', cursive;
    font-size: 4.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 184, 0, 0.3);
    animation: glow 2s ease-in-out infinite;
    text-align: center;
}

.subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    text-align: center;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.countdown-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    min-width: 120px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(255, 184, 0, 0.2);
    border-color: var(--primary-color);
}

.countdown-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.countdown-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.feature-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(255, 184, 0, 0.2);
    border-color: var(--primary-color);
}

.feature-card i {
    font-size: 2.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.contact-section {
    margin: 3rem 0;
}

.contact-card {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: var(--card-bg);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(255, 184, 0, 0.2);
    border-color: var(--primary-color);
}

.contact-card i {
    font-size: 1.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.email-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.email-link:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    transform: translateY(-5px);
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 0 20px rgba(255, 184, 0, 0.3);
}

@media (max-width: 768px) {
    .main-title {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .countdown-item {
        min-width: 100px;
        padding: 1.5rem;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .logo-circle {
        width: 100px;
        height: 100px;
    }

    .logo-circle i {
        font-size: 2.5rem;
    }
}

.terms-container {
    background: rgba(45, 52, 54, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 800px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 184, 0, 0.1);
    transition: all 0.3s ease;
    text-align: left;
}

.terms-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 184, 0, 0.2);
    border-color: rgba(255, 184, 0, 0.2);
}

.terms-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 184, 0, 0.1);
    text-align: left;
}

.terms-section:last-child {
    border-bottom: none;
}

.terms-section h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: left;
}

.terms-section p {
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    text-align: left;
}

.terms-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.terms-item {
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: left;
}

.terms-item:hover {
    background: rgba(255, 184, 0, 0.1);
    transform: translateX(5px);
}

.terms-item-content {
    text-align: left;
}

.terms-item-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
}

.terms-item-content p {
    color: var(--text-color);
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.5;
    text-align: left;
}

.accept-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 2rem;
    text-align: left;
}

.accept-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 184, 0, 0.3);
    color: #fff;
}

@media (max-width: 768px) {
    .terms-container {
        padding: 1.5rem;
        margin: 1rem;
    }

    .terms-section h3 {
        font-size: 1.3rem;
    }

    .terms-item {
        padding: 0.8rem;
    }

    .terms-item-content h4 {
        font-size: 1rem;
    }

    .terms-item-content p {
        font-size: 0.85rem;
    }

    .accept-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 1024px) {
    .main-title {
        font-size: 3.5rem;
    }
    
    .subtitle {
        font-size: 1.3rem;
    }
    
    .features-grid {
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .coming-soon-container {
        padding: 1.5rem;
    }
    
    .main-title {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .logo-circle {
        width: 100px;
        height: 100px;
    }
    
    .logo-circle i {
        font-size: 2.5rem;
    }
    
    .feature-card i {
        font-size: 2rem;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .contact-card {
        padding: 0.75rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .coming-soon-container {
        padding: 1rem;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .logo-circle {
        width: 80px;
        height: 80px;
    }
    
    .logo-circle i {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 1rem;
    }
    
    .feature-card i {
        font-size: 1.8rem;
    }
    
    .feature-card h3 {
        font-size: 1rem;
    }
    
    .contact-card {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .contact-card i {
        font-size: 1.2rem;
    }
}

@media (max-width: 320px) {
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 0.9rem;
    }
    
    .logo-circle {
        width: 60px;
        height: 60px;
    }
    
    .logo-circle i {
        font-size: 1.5rem;
    }
    
    .contact-card {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

/* iPhone-specific optimizations */
@supports (-webkit-touch-callout: none) {
    .coming-soon-container {
        min-height: -webkit-fill-available;
    }
    
    .feature-card,
    .contact-card {
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
    }
    
    .email-link {
        -webkit-tap-highlight-color: rgba(255, 184, 0, 0.2);
    }
}

/* Landscape mode optimizations */
@media (max-height: 500px) and (orientation: landscape) {
    .coming-soon-container {
        padding: 1rem;
    }
    
    .logo-circle {
        width: 60px;
        height: 60px;
    }
    
    .logo-circle i {
        font-size: 1.5rem;
    }
    
    .main-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-card {
        padding: 0.5rem;
    }
    
    .contact-card {
        padding: 0.5rem 1rem;
    }
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
} 