/* EliteReelClub - Disco-Themed Gaming Platform Styles */

/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Audiowide&amp;family=Orbitron:wght@400;500;600;700&amp;display=swap');

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

body {
    font-family: 'Orbitron', sans-serif;
    background: #0a0f1a;
    color: #e0f0ff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles */
.site-header {
    background: linear-gradient(135deg, #0a0f1a 0%, #0f1a2e 100%);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(30, 144, 255, 0.4);
}

.site-header .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo h1 {
    color: #9370db;
    font-size: 2.5rem;
    text-shadow: 0 0 10px #9370db, 0 0 15px #8a2be2;
    letter-spacing: 2px;
    font-weight: bold;
}

.navigation {
    display: flex;
    gap: 30px;
}

/* Hamburger Menu - Hidden by default on desktop */
.hamburger-menu {
    display: none;
}

.navigation a {
    color: #9932cc;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px #9932cc;
}

.navigation a:hover {
    color: #8a2be2;
    text-shadow: 0 0 10px #8a2be2;
    transform: translateY(-2px);
}

/* Hero Section */
.main-banner {
    min-height: 100vh;
    background: url("img/banner.png") center center no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.main-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(30, 144, 255, 0.1) 2px,
            rgba(30, 144, 255, 0.1) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(65, 105, 225, 0.1) 2px,
            rgba(65, 105, 225, 0.1) 4px
        );
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.main-banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 40px;
}

.main-banner h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #8a2be2, #9370db, #ba55d3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(30, 144, 255, 0.6);
    animation: text-glow 3s ease-in-out infinite alternate;
    font-family: 'Audiowide', cursive;
}

@keyframes text-glow {
    0% { text-shadow: 0 0 20px rgba(30, 144, 255, 0.6); }
    50% { text-shadow: 0 0 30px rgba(65, 105, 225, 0.7); }
    100% { text-shadow: 0 0 40px rgba(0, 191, 255, 0.8); }
}

.main-banner p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #cccccc;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Platform Advantages */
.platform-advantages {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 25px 0;
    flex-wrap: nowrap;
}

.advantage-item {
    background: rgba(15, 26, 46, 0.7);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #9370db;
    box-shadow: 0 0 10px rgba(30, 144, 255, 0.2);
    text-align: center;
    min-width: 150px;
    max-width: 180px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(65, 105, 225, 0.4);
    border-color: #8a2be2;
}

.advantage-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
    display: block;
}

.advantage-item h3 {
    color: #9370db;
    margin-bottom: 8px;
    font-size: 1rem;
    text-shadow: 0 0 5px #9370db;
    font-family: 'Audiowide', cursive;
}

.advantage-item p {
    color: #cccccc;
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0;
    text-shadow: none;
}

.primary-button {
    display: inline-block;
    background: linear-gradient(45deg, #8a2be2, #9370db);
    color: #ffffff;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(30, 144, 255, 0.6);
    border: 2px solid #8a2be2;
}

.primary-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(65, 105, 225, 0.8);
    background: linear-gradient(45deg, #9370db, #8a2be2);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.about-section {
    background: linear-gradient(135deg, #0f1a2e 0%, #0a0f1a 100%);
    text-align: center;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #9370db;
    text-shadow: 0 0 15px #9370db;
    font-family: 'Audiowide', cursive;
}

.about-section p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 20px;
    color: #cccccc;
    line-height: 1.8;
}

/* Game Section */
.games-showcase {
    background: 
        radial-gradient(circle at 30% 40%, rgba(30, 144, 255, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(65, 105, 225, 0.2) 0%, transparent 60%),
        linear-gradient(135deg, #0a0f1a 0%, #0f1a2e 100%);
    text-align: center;
}

.games-showcase h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #8a2be2;
    text-shadow: 0 0 15px #8a2be2;
    font-family: 'Audiowide', cursive;
}

.game-display {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(15, 26, 46, 0.7);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid #9370db;
    box-shadow: 0 0 30px rgba(30, 144, 255, 0.4);
}

.game-display img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #8a2be2;
}

.secondary-button {
    display: inline-block;
    background: linear-gradient(45deg, #9370db, #8a2be2);
    color: white;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(65, 105, 225, 0.6);
    border: 2px solid #9370db;
}

.secondary-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(30, 144, 255, 0.8);
    background: linear-gradient(45deg, #8a2be2, #9370db);
}

/* News Section */


/* FAQ Section */
.help-center {
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 191, 255, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(30, 144, 255, 0.2) 0%, transparent 60%),
        linear-gradient(135deg, #0a0f1a 0%, #0f1a2e 100%);
}

.help-center h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #8a2be2;
    text-shadow: 0 0 15px #8a2be2;
    font-family: 'Audiowide', cursive;
}

.help-center-item {
    background: rgba(15, 26, 46, 0.7);
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #9370db;
    transition: all 0.3s ease;
    cursor: pointer;
}

.help-center-item:hover {
    transform: translateX(10px);
    box-shadow: 0 0 20px rgba(30, 144, 255, 0.4);
}

.help-center-item.active {
    background: rgba(15, 26, 46, 0.9);
    border-left: 4px solid #8a2be2;
}

.help-center-item h3::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: bold;
    color: #9370db;
    transition: all 0.3s ease;
}

.help-center-item.active h3::after {
    content: "-";
    color: #8a2be2;
}

.help-center-item h3 {
    color: #9370db;
    margin-bottom: 15px;
    font-size: 1.3rem;
    position: relative;
    padding-right: 30px;
    font-family: 'Audiowide', cursive;
}

.help-center-item p {
    color: #cccccc;
    line-height: 1.7;
    display: none;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(65, 105, 225, 0.3);
}

/* Reviews Section */
.testimonials {
    background: linear-gradient(135deg, #0f1a2e 0%, #0a0f1a 100%);
    text-align: center;
    padding: 80px 0;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #9370db;
    text-shadow: 0 0 15px #9370db;
    font-family: 'Audiowide', cursive;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(15, 26, 46, 0.8);
    padding: 25px;
    border-radius: 20px;
    border: 2px solid #9370db;
    box-shadow: 0 0 25px rgba(30, 144, 255, 0.3);
    transition: all 0.3s ease;
    text-align: left;
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 35px rgba(65, 105, 225, 0.5);
    border-color: #8a2be2;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.profile-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(45deg, #9370db, #8a2be2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: white;
    margin-right: 15px;
    box-shadow: 0 0 15px rgba(30, 144, 255, 0.4);
}

.user-info h3 {
    color: #9370db;
    margin: 0 0 5px 0;
    font-size: 1.3rem;
    font-family: 'Audiowide', cursive;
}

.stars {
    color: #da70d6;
    font-size: 1.2rem;
    letter-spacing: 3px;
}

.testimonial-text {
    font-style: italic;
    color: #e0f0ff;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    position: relative;
}

.testimonial-text::before {
    content: ""\201C"";
    font-size: 3rem;
    color: #9370db;
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -10px;
}







/* Contact Section */
.contact-section {
    background: 
        radial-gradient(circle at 50% 50%, rgba(30, 144, 255, 0.2) 0%, transparent 70%),
        linear-gradient(135deg, #0a0f1a 0%, #0f1a2e 100%);
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #9370db;
    text-shadow: 0 0 15px #9370db;
    font-family: 'Audiowide', cursive;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-details p {
    margin: 10px 0;
    color: #cccccc;
    font-size: 1.1rem;
}

.message-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.message-form input,
.message-form textarea {
    padding: 15px;
    border: 2px solid #9370db;
    border-radius: 10px;
    background: rgba(10, 15, 26, 0.8);
    color: #e0f0ff;
    font-size: 1rem;
}

.message-form input:focus,
.message-form textarea:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(30, 144, 255, 0.6);
}

.message-form textarea {
    min-height: 150px;
    resize: vertical;
}

.message-form button {
    background: linear-gradient(45deg, #9370db, #8a2be2);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #9370db;
}

.message-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(30, 144, 255, 0.8);
}

/* Game Page Specific */
.gaming-page {
    padding: 50px 0;
    text-align: center;
}

.gaming-page h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: #9370db;
    text-shadow: 0 0 20px #9370db;
}

.game-wrapper {
    max-width: 1000px;
    margin: 0 auto 40px;
    background: rgba(15, 26, 46, 0.7);
    padding: 20px;
    border-radius: 20px;
    border: 2px solid #9370db;
    box-shadow: 0 0 30px rgba(30, 144, 255, 0.4);
}

.game-wrapper iframe {
    border-radius: 15px;
    border: 1px solid #8a2be2;
}

.game-info {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(10, 15, 26, 0.8);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #9370db;
}

.game-info h2 {
    color: #9370db;
    margin-bottom: 20px;
    font-size: 2rem;
}

.game-info p {
    color: #cccccc;
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Policy Pages */
.legal-content {
    background: linear-gradient(135deg, #0a0f1a 0%, #0f1a2e 100%);
    padding: 50px 0;
}

.legal-content h1 {
    color: #9370db;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 0 0 15px #9370db;
}

.legal-content h2 {
    color: #8a2be2;
    font-size: 1.8rem;
    margin: 30px 0 20px;
    text-shadow: 0 0 10px #8a2be2;
}

.legal-content p {
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
    color: #cccccc;
}

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

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #000000 0%, #0f1a2e 100%);
    padding: 50px 0 20px;
    border-top: 2px solid #9370db;
    box-shadow: 0 -5px 20px rgba(30, 144, 255, 0.4);
}

.legal-disclaimer {
    text-align: center;
    margin-bottom: 40px;
}

.legal-disclaimer h3 {
    color: #ff0000;
    font-size: 2rem;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #ff0000;
}

.legal-disclaimer p {
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 1rem;
}

.disclaimer-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.disclaimer-images a {
    display: block;
    transition: all 0.3s ease;
}

.disclaimer-images a:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.disclaimer-images img {
    border-radius: 5px;
    width: 100px;
    border: 1px solid #9370db;
    box-shadow: 0 0 10px rgba(30, 144, 255, 0.3);
    transition: all 0.3s ease;
}

.site-footer-links {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 40px 0;
    gap: 30px;
}

.nav-column, .contact-section-column {
    flex: 1;
    min-width: 200px;
}

.nav-column a {
    display: block;
    color: #9370db;
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px #9370db;
}

.nav-column a:hover {
    color: #8a2be2;
    text-shadow: 0 0 10px #8a2be2;
    transform: translateX(5px);
}

.contact-section-column p {
    color: #cccccc;
    margin-bottom: 8px;
}

.site-footer-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #888;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Hamburger Menu Button */
    .hamburger-menu {
        display: block;
        position: absolute;
        right: 20px;
        width: 30px;
        height: 22px;
        cursor: pointer;
        z-index: 1001;
    }
    
    .hamburger-menu span {
        display: block;
        width: 100%;
        height: 3px;
        background: #00ffff;
        border-radius: 2px;
        transition: all 0.3s ease;
        position: absolute;
    }
    
    .hamburger-menu span:nth-child(1) {
        top: 0;
    }
    
    .hamburger-menu span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }
    
    .hamburger-menu span:nth-child(3) {
        bottom: 0;
    }
    
    /* Active hamburger animation */
    .hamburger-menu.active span:nth-child(1) {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }
    
    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-menu.active span:nth-child(3) {
        top: 50%;
        transform: translateY(-50%) rotate(-45deg);
    }
    
    /* Mobile Navigation */
    .navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(135deg, #0a0f1a 0%, #0f1a2e 100%);
        flex-direction: column;
        justify-content: flex-start;
        padding: 100px 30px 30px;
        gap: 25px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        transition: right 0.4s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .navigation.mobile-active {
        right: 0;
    }
    
    .navigation a {
        font-size: 1.2rem;
        padding: 12px 20px;
        border-radius: 8px;
        background: rgba(65, 105, 225, 0.1);
        transition: all 0.3s ease;
        text-align: center;
    }
    
    .navigation a:hover {
        background: rgba(30, 144, 255, 0.2);
        transform: translateX(5px);
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
    
    /* Overlay effect */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.7);
        z-index: 999;
    }
    
    .site-header .wrapper {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
    }
    
    .main-banner h1 {
        font-size: 2.5rem;
    }
    
    .main-banner-content {
        padding: 20px;
    }
    
    .platform-advantages {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        margin: 20px 0;
        flex-wrap: wrap;
    }
    
    .advantage-item {
        min-width: 130px;
        max-width: 150px;
        padding: 12px;
    }
    
    .advantage-icon {
        font-size: 1.3rem;
        margin-bottom: 5px;
    }
    
    .advantage-item h3 {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
    
    .advantage-item p {
        font-size: 0.7rem;
    }
    
    .site-footer-links {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .game-wrapper {
        margin: 0 10px;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .profile-image {
        width: 50px;
        height: 50px;
        font-size: 1rem;
        margin-right: 12px;
    }
    
    .user-info h3 {
        font-size: 1.1rem;
    }
    
    .stars {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    

}

/* Animation Effects */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Cookie Consent Popup */
.cookie-consent-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    animation: slideUp 0.5s ease-out;
}

.cookie-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cookie-consent-content {
    background: linear-gradient(135deg, #1a0a2e 0%, #2a0a3e 100%);
    border: 2px solid #9370db;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(147, 112, 219, 0.3);
    backdrop-filter: blur(10px);
}

.cookie-consent-header h3 {
    color: #9370db;
    margin: 0 0 15px 0;
    font-size: 1.4rem;
    text-align: center;
    text-shadow: 0 0 10px #9370db;
}

.cookie-consent-body p {
    color: #e0f0ff;
    margin: 0 0 15px 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-policy-link {
    text-align: center;
    margin: 10px 0;
}

.cookie-policy-link a {
    color: #ba55d3;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cookie-policy-link a:hover {
    color: #9370db;
    text-shadow: 0 0 5px #9370db;
}

.cookie-consent-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn-decline, .btn-accept {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

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

.btn-decline:hover {
    background: rgba(138, 43, 226, 0.2);
    transform: translateY(-2px);
}

.btn-accept {
    background: linear-gradient(45deg, #9370db, #8a2be2);
    color: white;
    border: 2px solid #9370db;
    box-shadow: 0 0 15px rgba(147, 112, 219, 0.4);
}

.btn-accept:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 20px rgba(147, 112, 219, 0.6);
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cookie-consent-popup {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .cookie-consent-content {
        padding: 20px;
    }
    
    .cookie-consent-buttons {
        flex-direction: column;
    }
}

