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

body {
    font-family: 'Darker Grotesque', sans-serif;
    background: url('assets/img/bg.png') center/cover no-repeat;
    background-attachment: fixed;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 10, 46, 0.85);
    pointer-events: none;
    z-index: -1;
}

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

/* Header Styles */
.topbar {
    background: rgba(43, 27, 23, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-icon {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 107, 107, 0.5));
    transition: all 0.3s ease;
}

.brand-icon:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(255, 107, 107, 0.7));
}

.brand h1 {
    font-family: 'Monoton', cursive;
    font-size: 2rem;
    background: linear-gradient(45deg, #ff6b6b, #ffa500, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
}

.navigation ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.navigation a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.navigation a:hover {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

.navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b6b, #ffd700);
    transition: width 0.3s ease;
}

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

/* Hero Section */
.showcase {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    background-attachment: fixed;
}

.showcase-overlay {
    background: rgba(26, 10, 46, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 100%;
    padding: 80px 0;
}

.showcase-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.showcase-text {
    max-width: 800px;
}

.showcase-text h1 {
    font-family: 'Monoton', cursive;
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.showcase-text p {
    font-size: 1.2rem;
    margin: 0 auto;
    color: #e0e0e0;
    max-width: 600px;
}

.showcase-features {
    display: flex;
    justify-content: center;
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 600px;
}

.feature-badge {
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.5);
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    color: #ffd700;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Buttons */
.action-btn, .alt-btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.action-btn:hover, .alt-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
    background: linear-gradient(45deg, #ff5252, #ff9800);
}

.alt-btn {
    background: linear-gradient(45deg, #4a00e0, #8e2de2);
}

.alt-btn:hover {
    background: linear-gradient(45deg, #3a00b0, #7e1dd2);
}

/* Sections */
section {
    padding: 80px 0;
}

.story-section, .play-section, .help-section, .reviews-section, 
.updates-section, .connect-section {
    background: rgba(43, 27, 23, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    margin: 20px 0;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* About Section */
.story-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-family: 'Monoton', cursive;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffd700;
}

.story-text p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #e0e0e0;
}

.story-image {
    flex: 1;
    text-align: center;
}

.story-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Game Section */
.play-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.section-title {
    text-align: center;
    font-family: 'Peralta', cursive;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #ffd700;
}

.play-image {
    flex: 1;
    text-align: center;
}

.play-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.play-details {
    flex: 1;
}

.play-details h2 {
    font-family: 'Monoton', cursive;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffd700;
}

.play-details p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #e0e0e0;
}

/* FAQ Section */
.help-section h2 {
    text-align: center;
    font-family: 'Monoton', cursive;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #ffd700;
}

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

.help-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.help-question:hover {
    background: rgba(255, 255, 255, 0.1);
}

.help-question h3 {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 600;
    font-family: 'Monoton', cursive;
}

.help-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffd700;
    transition: transform 0.3s ease;
}

.help-item.active .help-toggle {
    transform: rotate(45deg);
}

.help-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.help-item.active .help-answer {
    padding: 20px;
    max-height: 200px;
}

.help-answer p {
    color: #e0e0e0;
    line-height: 1.6;
}

/* Testimonials Section */
.reviews-section h2 {
    text-align: center;
    font-family: 'Monoton', cursive;
    font-size: 2rem;
    margin-bottom: 50px;
    color: #ffd700;
}

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

.review-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.review-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: #e0e0e0;
    line-height: 1.6;
}

.review-author {
    text-align: right;
    color: #ffd700;
    font-weight: 600;
}

/* Newsletter Section */
.updates-section {
    text-align: center;
    background: linear-gradient(135deg, rgba(74, 0, 224, 0.3), rgba(142, 45, 226, 0.3)) !important;
}

.updates-section h2 {
    font-family: 'Peralta', cursive;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #ffffff;
}

.updates-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 15px;
}

.updates-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    outline: none;
}

.updates-form button {
    padding: 15px 30px;
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.updates-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.6);
}

/* Contact Section */
.connect-section h2 {
    text-align: center;
    font-family: 'Peralta', cursive;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #ffd700;
}

.connect-content {
    display: flex;
    gap: 50px;
}

.connect-info {
    flex: 1;
}

.connect-details p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #e0e0e0;
}

.connect-details strong {
    color: #ffd700;
}

.connect-form {
    flex: 1;
}

.input-group {
    margin-bottom: 20px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: 'Darker Grotesque', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: #ffd700;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

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

/* Footer */
.bottombar {
    background: rgba(0, 0, 0, 0.7);
    padding: 50px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bottombar-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.notice {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.notice h3 {
    color: #ff6b6b;
    font-family: 'Monoton', cursive;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.notice p {
    margin-bottom: 15px;
    color: #e0e0e0;
    line-height: 1.6;
}

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.partner-logos img {
    height: 50px;
    filter: brightness(0.8);
    transition: all 0.3s ease;
}

.partner-logos img:hover {
    filter: brightness(1);
    transform: scale(1.1);
}

.bottombar-links {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.bottombar-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.bottombar-nav a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bottombar-nav a:hover {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

.bottombar-contact {
    text-align: right;
}

.bottombar-contact p {
    margin-bottom: 10px;
    color: #e0e0e0;
}

.bottombar-contact strong {
    color: #ffd700;
}

.rights {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0a0a0;
}

/* Policy Pages */
.legal-section {
    background: rgba(43, 27, 23, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    margin: 20px 0;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-family: 'Monoton', cursive;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    color: #ffd700;
}

.legal-content h2 {
    font-family: 'Monoton', cursive;
    font-size: 1.8rem;
    margin: 30px 0 20px 0;
    color: #ff6b6b;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin: 25px 0 15px 0;
    color: #ffa500;
    font-family: 'Monoton', cursive;
}

.legal-content p {
    margin-bottom: 15px;
    color: #e0e0e0;
    line-height: 1.7;
}

.legal-content ul, .legal-content ol {
    margin: 15px 0 15px 30px;
    color: #e0e0e0;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-content a {
    color: #ffd700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.legal-content a:hover {
    color: #ff6b6b;
    text-decoration: underline;
}

.return-home {
    text-align: center;
    margin-top: 40px;
}

.gaming-area {
    background: rgba(43, 27, 23, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    margin: 20px 0;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0;
}

.gaming-header {
    text-align: center;
    margin-bottom: 40px;
}

.gaming-header h1 {
    font-family: 'Monoton', cursive;
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 15px;
}

.gaming-header p {
    font-size: 1.2rem;
    color: #e0e0e0;
    max-width: 600px;
    margin: 0 auto;
}

.gaming-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.gaming-frame {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gaming-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.play-description, .play-rules {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.play-description h2, .play-rules h2 {
    font-family: 'Monoton', cursive;
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.play-description ul, .play-rules ol {
    color: #e0e0e0;
    margin-left: 20px;
}

.play-description li, .play-rules li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Cookie Popup Styles */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(43, 27, 23, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s ease;
}

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

.cookie-content {
    color: #e0e0e0;
    font-family: 'Darker Grotesque', sans-serif;
}

.cookie-content p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1rem;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.accept-btn {
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
    color: white;
}

.accept-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.6);
}

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

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

.settings-btn {
    background: rgba(74, 0, 224, 0.3);
    color: #ffffff;
    border: 1px solid rgba(142, 45, 226, 0.5);
}

.settings-btn:hover {
    background: rgba(74, 0, 224, 0.5);
    transform: translateY(-2px);
}

/* Responsive Design for Cookie Popup */
@media (max-width: 768px) {
    .cookie-popup {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 20px;
    }
    
    .cookie-content p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cookie-popup {
        padding: 15px;
    }
    
    .cookie-content p {
        font-size: 0.85rem;
    }
    
    .cookie-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .topbar-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .navigation ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .showcase-content {
        flex-direction: column;
        text-align: center;
    }
    
    .showcase-text h1 {
        font-size: 2rem;
    }
    
    .story-content,
    .play-content,
    .connect-content,
    .gaming-panel {
        flex-direction: column;
    }
    
    .feature-list {
        align-items: center;
    }
    
    .bottombar-links {
        flex-direction: column;
        text-align: center;
    }
    
    .bottombar-contact {
        text-align: center;
    }
    
    .updates-form {
        flex-direction: column;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
    }
    
    section {
        padding: 50px 0;
    }
    
    .legal-section,
    .gaming-area {
        margin: 10px;
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .wrapper {
        padding: 0 15px;
    }
    
    .showcase-text h1 {
        font-size: 1.5rem;
    }
    
    .action-btn, .alt-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .review-card {
        padding: 20px;
    }
}