* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #8B0000 0%, #A52A2A 50%, #8B0000 100%);
    color: #E0E4F2;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 60% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 40%);
    z-index: -1;
}

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

/* Header Styles */
header {
    background: rgba(139, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #FFD700;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-family: 'Share Tech', sans-serif;
    font-size: 2rem;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.navigation-menu {
    display: flex;
    gap: 1.5rem;
}

.navigation-menu a {
    color: #E0E4F2;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.navigation-menu a:hover {
    color: #FFD700;
}

.navigation-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: width 0.3s ease;
}

.navigation-menu a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    height: 3px;
    width: 100%;
    background: #FFD700;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hero Section */
.main-banner {
    text-align: center;
    padding: 0;
    position: relative;
    overflow: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/hero.png') center/cover no-repeat;
    z-index: -2;
}

.main-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.main-banner h1 {
    font-family: 'Share Tech', sans-serif;
    font-size: 5rem;
    color: #FFD700;
    margin-bottom: 1rem;
    font-weight: bold;
}

.main-banner p {
    font-size: 2rem;
    color: #E0E4F2;
    max-width: 800px;
    margin: 0 auto 2rem;
    text-shadow: 0 0 10px rgba(224, 228, 242, 0.5);
    line-height: 1.6;
}


/* About Section */
.info-section {
    padding: 4rem 0;
    text-align: center;
}

.info-section h2 {
    font-family: 'Share Tech', sans-serif;
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 2rem;
}

.info-section p {
    font-size: 1.2rem;
    color: #E0E4F2;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Game Section */
.play-area {
    padding: 4rem 0;
    text-align: center;
    background: rgba(139, 0, 0, 0.6);
    backdrop-filter: blur(10px);
}

.play-area h2 {
    font-family: 'Share Tech', sans-serif;
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 2rem;
}

.play-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.preview-box {
    width: 300px;
    height: 200px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border: 3px solid #FFD700;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    overflow: hidden;
}

.launch-button {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #8B0000;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.launch-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

/* Game Container for full screen */
.play-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

/* FAQ Section */
.help-section {
    padding: 4rem 0;
}

.help-section h2 {
    font-family: 'Share Tech', sans-serif;
    font-size: 2.5rem;
    color: #FFD700;
    text-align: center;
    margin-bottom: 2rem;
}

.help-item {
    background: rgba(139, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.help-question {
    padding: 1.5rem;
    background: rgba(139, 0, 0, 0.8);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    color: #FFD700;
}

.help-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #E0E4F2;
    line-height: 1.6;
}

.help-item.active .help-answer {
    padding: 1.5rem;
    max-height: 500px;
}

/* Testimonials */
.reviews-section {
    padding: 4rem 0;
    text-align: center;
}

.reviews-section h2 {
    font-family: 'Share Tech', sans-serif;
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 2rem;
}

.review-card {
    background: rgba(139, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 2rem;
    margin: 1rem;
    border-radius: 10px;
    border: 1px solid #FFD700;
}

.review-card p {
    font-style: italic;
    color: #E0E4F2;
    margin-bottom: 1rem;
}

.review-author {
    color: #FFD700;
    font-weight: bold;
}

/* Contact Section */
.contact-area {
    padding: 4rem 0;
    background: rgba(139, 0, 0, 0.6);
    backdrop-filter: blur(10px);
}

.contact-area h2 {
    font-family: 'Share Tech', sans-serif;
    font-size: 2.5rem;
    color: #FFD700;
    text-align: center;
    margin-bottom: 2rem;
}

.contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.contact-form-area {
    flex: 1;
    min-width: 300px;
    background: rgba(139, 0, 0, 0.8);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #FFD700;
}

.contact-details {
    flex: 1;
    min-width: 300px;
    background: rgba(139, 0, 0, 0.8);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #FFD700;
}

.input-group {
    margin-bottom: 1rem;
}

.input-group label {
    display: block;
    color: #E0E4F2;
    margin-bottom: 0.5rem;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #FFD700;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.3);
    color: #E0E4F2;
}

.input-group textarea {
    height: 100px;
    resize: vertical;
}

.submit-button {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #8B0000;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

/* Footer */
footer {
    background: rgba(139, 0, 0, 0.9);
    padding: 3rem 0 1rem;
    border-top: 3px solid #FFD700;
}

.legal-notice {
    text-align: center;
    color: #E0E4F2;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #FFD700;
}

.legal-notice h3 {
    font-family: 'Share Tech', sans-serif;
    color: #C7D4FF;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.trust-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.trust-icons img {
    width: 150px;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

.footer-layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.footer-nav,
.footer-contact-info {
    flex: 1;
    min-width: 200px;
    margin: 1rem;
}

.footer-nav h3,
.footer-contact-info h3 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.footer-nav a {
    display: block;
    color: #E0E4F2;
    margin-bottom: 0.5rem;
    text-decoration: none;
}

.footer-nav a:hover {
    color: #FFD700;
}

.rights-text {
    text-align: center;
    color: #E0E4F2;
    padding-top: 1rem;
    border-top: 1px solid #FFD700;
}

/* Policy Page Specific Styles */
.document-title {
    font-family: 'Share Tech', sans-serif;
    font-size: 2.5rem;
    color: #C7D4FF;
    margin-bottom: 2rem;
    text-align: center;
}

.document-body {
    background: rgba(139, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #FFD700;
    line-height: 1.6;
    color: #E0E4F2;
}

.document-section {
    margin-bottom: 2rem;
}

.document-section h2 {
    color: #C7D4FF;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.document-section h3 {
    color: #C7D4FF;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.document-section p {
    margin-bottom: 1rem;
}

.document-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

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

.section-number {
    font-weight: bold;
    color: #FFD700;
}

/* Game Frame Styles */
.game-embed {
    width: 900px;
    height: 700px;
    border: 3px solid #FFD700;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    background: rgba(0, 0, 0, 0.3);
}

.game-header {
    font-family: 'Share Tech', sans-serif;
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 2rem;
    text-align: center;
}

.game-info {
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #E0E4F2;
    line-height: 1.6;
}

/* Cookie Popup Styles */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background: rgba(139, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid #FFD700;
    border-radius: 10px;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.cookie-popup.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-popup-content h3 {
    color: #FFD700;
    font-family: 'Share Tech', sans-serif;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.cookie-popup-content p {
    color: #E0E4F2;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.cookie-popup-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.accept-button, .decline-button {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.accept-button {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #8B0000;
}

.accept-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.decline-button {
    background: rgba(255, 255, 255, 0.1);
    color: #E0E4F2;
    border: 1px solid #E0E4F2;
}

.decline-button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.manage-link {
    color: #FFD700;
    text-decoration: none;
    align-self: center;
    font-size: 0.9rem;
}

.manage-link:hover {
    text-decoration: underline;
}

@media (max-width: 944px) { 
    .game-embed {
        width: 700px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-banner h1 {
        font-size: 2.5rem;
    }
    
    .main-banner p {
        font-size: 1.5rem;
    }
    
    /* Mobile menu toggle */
    .mobile-toggle {
        display: flex;
    }
    
    .navigation-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(139, 0, 0, 0.95);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: all 0.5s ease-in-out;
        z-index: 1000;
    }
    
    .navigation-menu.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .navigation-menu a {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    }
    
    .navigation-menu a:last-child {
        border-bottom: none;
    }
    
    .game-embed {
        height: 500px;
        width: 350px;
    }
    
    .document-title {
        font-size: 2rem;
    }
    
    .trust-icons {
        gap: 0.5rem;
    }
    
    .trust-icons img {
        width: 100px;
        height: auto;
        max-width: 80px;
    }
}