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

body {
    font-family: 'Orbitron', 'Arial Black', sans-serif;
    line-height: 1.6;
    color: #00ff88;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1a2e 50%, #16213e 100%);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

h1 { 
    font-size: 2.5rem; 
    font-family: 'Orbitron', monospace;
    background: linear-gradient(45deg, #00ff88, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    font-family: 'Exo 2', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border: 2px solid #00ff88;
    border-radius: 25px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    background: transparent;
    color: #00ff88;
    font-family: 'Orbitron', monospace;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #00ff88, #00ffff);
    color: #0a0e1a;
    border-color: #00ff88;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.8);
    background: linear-gradient(135deg, #00ffff, #00ff88);
}

.btn-outline {
    background: transparent;
    color: #00ff88;
    border: 2px solid #00ff88;
}

.btn-outline:hover {
    background: #00ff88;
    color: #0a0e1a;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.btn-secondary {
    background: linear-gradient(135deg, #ff00ff, #ff0080);
    color: white;
    border-color: #ff00ff;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #ff0080, #ff00ff);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
}

.btn-large {
    padding: 18px 36px;
    font-size: 16px;
}

/* Header */
.header {
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid #00ff88;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
    position: relative;
    z-index: 999;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1000;
}

.logo h1 {
    color: #00ff88 !important;
    font-size: 2rem;
    margin: 0;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.4);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    text-transform: none;
    letter-spacing: normal;
}

.logo-tagline {
    color: #00ffff;
    font-size: 0.8rem;
    display: block;
    font-family: 'Exo 2', sans-serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #00ffff;
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
    font-family: 'Exo 2', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover,
.nav-link.active {
    color: #00ff88;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #00ff88, #00ffff);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.auth-buttons {
    display: flex;
    gap: 1rem;
}

.language-selector {
    position: relative;
}

.lang-btn {
    background: transparent;
    border: 1px solid #ffd700;
    color: #ffd700;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.flag-icon {
    width: 20px;
    height: 15px;
    border-radius: 2px;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #1a1a2e;
    border: 1px solid #ffd700;
    border-radius: 6px;
    min-width: 150px;
    display: none;
    z-index: 1001;
}

.lang-dropdown.show {
    display: block;
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.lang-dropdown a:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
    background: transparent;
    border: none;
    outline: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #00ff88;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
    display: block;
}

/* Main Content */
.main-content {
    /* margin-top: 80px; */
}

.page {
    display: none;
    min-height: calc(100vh - 80px);
}

.page.active {
    display: block;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1a2e 50%, #16213e 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content-container{
   
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;

}

.hero-title {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 4rem;
    background: linear-gradient(45deg, #00ff88, #00ffff, #ff00ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
    font-family: 'Orbitron', monospace;

}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    }
    to {
        text-shadow: 0 0 30px rgba(0, 255, 136, 0.8), 0 0 40px rgba(0, 255, 255, 0.5);
    }
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #00ffff;
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: 'Exo 2', sans-serif;
}

.hero-description {
    font-size: 1.2rem;
    color: #00ff88;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-family: 'Exo 2', sans-serif;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    text-align: center;
    position: relative;
    padding: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}



@keyframes borderGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

/* Game Preview Container */
.game-preview-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    overflow: visible; /* Allow canvas to extend beyond container */
    box-shadow: none; /* Remove container shadow */
    background: none; /* Completely remove background */
   
}

.hero-game-image {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    pointer-events: auto; /* Makes it clickable */
    opacity: 1; /* Fully visible */
    transform: scale(1.0); /* Full scale */
    transform-origin: center center;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    cursor: pointer; /* Shows pointer cursor on hover */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
}

.hero-game-image:hover {
    transform: scale(1.02); /* Slightly larger on hover */
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6); /* Enhanced shadow on hover */
}

/* Ensure the main game canvas in the game section is not affected */
#game .game-embed #canvas {
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* Overlay styles removed - no longer needed */

/* Responsive adjustments for game preview */
@media (max-width: 768px) {
    .game-preview-container {
        max-width: 95%;
        margin: 0 auto;
        min-height: 500px;
    }
    
    .hero-game-image {
        width: 100%;
        height: auto;
        transform: scale(0.8); /* Large scale on tablets */
    }
}

@media (max-width: 480px) {
    .game-preview-container {
        max-width: 98%;
        min-height: 400px;
    }
    
    .hero-game-image {
        transform: scale(0.7); /* Large scale on mobile */
    }
}

@media (max-width: 480px) {
    .game-preview-container {
        max-width: 95%;
    }
    
    .preview-text {
        font-size: 0.9rem;
    }
    
    .preview-text i {
        font-size: 1.2rem;
    }
}

/* Disclaimer Section */
.disclaimer-section {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.disclaimer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.disclaimer-box {
    background: rgba(0, 255, 136, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 2px solid rgba(0, 255, 136, 0.3);
    position: relative;
    z-index: 2;
    backdrop-filter: none;
}

.disclaimer-box h3 {
    color: #00ff88;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.disclaimer-box p {
    color: #00ffff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: 'Exo 2', sans-serif;
}

/* Disclaimer Highlights */
.disclaimer-highlights {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}

.disclaimer-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 10px;
    min-width: 200px;
    justify-content: center;
}

.disclaimer-highlight i {
    color: #00ff88;
    font-size: 1.2rem;
}

.disclaimer-highlight span {
    color: #00ffff;
    font-family: 'Exo 2', sans-serif;
    font-size: 0.9rem;
}

.disclaimer-main-text {
    color: #00ff88 !important;
    font-size: 1.1rem !important;
    font-weight: 600;
    margin: 1.5rem 0;
    font-family: 'Exo 2', sans-serif;
}

.disclaimer-sub-text {
    color: #00ffff !important;
    font-size: 1rem;
    font-family: 'Exo 2', sans-serif;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #00ff88;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.section-header p {
    color: #00ffff;
    font-size: 1.3rem;
    font-family: 'Exo 2', sans-serif;
}

/* About Preview */
.about-preview {
    background: linear-gradient(135deg, #16213e, #1a1a2e);
    padding: 5rem 0;
    position: relative;
}

.about-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.05) 0%, transparent 50%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text {
    color: #00ffff;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-family: 'Exo 2', sans-serif;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 255, 136, 0.3);
}

/* Featured Game */
.featured-game {
    background: linear-gradient(135deg, #1a1a2e, #0a0e1a);
    padding: 5rem 0;
    position: relative;
}

.featured-game::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 0, 255, 0.05) 0%, transparent 50%);
}

.game-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem; /* Reduced gap to accommodate larger image */
    align-items: center;
    position: relative;
    z-index: 2;
}

.game-img {
    width: 100%;
    max-width: 500px; /* Increased from 350px for desktop */
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.3);
    border: 2px solid rgba(0, 255, 136, 0.5);
    transition: transform 0.3s ease;
}

.game-img:hover {
    transform: scale(1.05);
}

/* Responsive game image sizing */
@media (max-width: 1200px) {
    .game-img {
        max-width: 450px; /* Slightly smaller on medium screens */
    }
}

@media (max-width: 768px) {
    .game-img {
        max-width: 400px; /* Smaller on tablets */
    }
}

@media (max-width: 480px) {
    .game-img {
        max-width: 100%; /* Full width on mobile */
    }
}

.game-info h3 {
    color: #00ff88;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.game-info p {
    color: #00ffff;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-family: 'Exo 2', sans-serif;
}

.game-features {
    list-style: none;
    margin-bottom: 2rem;
}

.game-features li {
    color: #00ff88;
    padding: 0.8rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Exo 2', sans-serif;
    font-size: 1.1rem;
}

.game-features i {
    color: #00ffff;
    font-size: 1.2rem;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #16213e, #1a1a2e);
    padding: 5rem 0;
    position: relative;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.faq-item {
    background: rgba(0, 255, 136, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(0, 255, 136, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
    transform: translateY(-5px);
}

.faq-item h4 {
    color: #00ff88;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.faq-item p {
    color: #00ffff;
    line-height: 1.6;
    font-family: 'Exo 2', sans-serif;
}

.faq-contact {
    text-align: center;
}

.faq-contact p {
    color: #00ffff;
    font-size: 1.2rem;
    font-family: 'Exo 2', sans-serif;
    display: flex;
    align-items: flex-start; 
    justify-content: center;
}

.faq-contact a {
    color: #00ff88;
    font-weight: 600;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #00ff88, #00ffff);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.2)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.newsletter-content h3 {
    color: #0a0e1a;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
    display: flex;
    justify-content: center;
    align-items: center;
}

.newsletter-content p {
    color: #0a0e1a;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-family: 'Exo 2', sans-serif;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 450px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-family: 'Exo 2', sans-serif;
    background: rgba(255, 255, 255, 0.9);
}

.newsletter-form button {
    background: #0a0e1a;
    color: #00ff88;
    border: 2px solid #0a0e1a;
    font-family: 'Orbitron', monospace;
}

.newsletter-form button:hover {
   
    color: #0a0e1a;
}

/* Page Styles */
.page-header {
    text-align: center;
    padding: 4rem 0;
    /* background: linear-gradient(135deg, #1a1a2e, #16213e); */
    position: relative;
}

/* .page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
} */

.page-header h1 {
    color: #00ff88;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
    position: relative;
    z-index: 2;
}

.page-header p {
    color: #00ffff;
    font-size: 1.3rem;
    font-family: 'Exo 2', sans-serif;
    position: relative;
    z-index: 2;
}

/* Game Page */
.game-container {
    padding: 4rem 0;
    /* background: linear-gradient(135deg, #16213e, #1a1a2e); */
    position: relative;
}

.game-embed {
    margin-bottom: 4rem;
    position: relative;
}

.game-embed::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #00ff88, #00ffff, #ff00ff);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.game-info-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.developer-notice,
.game-rules {
    background: rgba(0, 255, 136, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(0, 255, 136, 0.2);
    backdrop-filter: blur(10px);
}

.developer-notice h4,
.game-rules h4 {
    color: #00ff88;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.developer-notice p,
.game-rules li {
    color: #00ffff;
    line-height: 1.6;
    font-family: 'Exo 2', sans-serif;
}

.game-rules ul {
    list-style: none;
}

.game-rules li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

.game-rules li:last-child {
    border-bottom: none;
}

/* About Page */
.about-detailed {
    padding: 4rem 0;
    /* background: linear-gradient(135deg, #16213e, #1a1a2e); */
}

.about-image-section {
    text-align: center;
    margin-bottom: 4rem;
}

.about-detailed-img {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 255, 136, 0.3);
}

.about-text-section {
    max-width: 800px;
    margin: 0 auto;
    color: #00ffff;
}

.about-text-section h3 {
    color: #00ff88;
    font-size: 2rem;
    margin: 2.5rem 0 1rem 0;
    font-family: 'Orbitron', monospace;
}

.about-text-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-family: 'Exo 2', sans-serif;
}

.about-text-section ul {
    list-style: none;
    margin-bottom: 2rem;
}

.about-text-section li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
    font-family: 'Exo 2', sans-serif;
}

.about-text-section li strong {
    color: #00ff88;
}

/* Disclaimer Page */
.disclaimer-content {
    padding: 4rem 0;
    /* background: linear-gradient(135deg, #16213e, #1a1a2e); */
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer-item {
    background: rgba(0, 255, 136, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2.5rem;
    border: 2px solid rgba(0, 255, 136, 0.2);
    backdrop-filter: blur(10px);
}

.disclaimer-item h3 {
    color: #00ff88;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.disclaimer-item p {
    color: #00ffff;
    line-height: 1.8;
    font-family: 'Exo 2', sans-serif;
}

/* Contact Page */
.contact-content {
    padding: 4rem 0;
    /* background: linear-gradient(135deg, #16213e, #1a1a2e); */
    max-width: 600px;
    margin: 0 auto;
}

.contact-intro {
    margin-bottom: 4rem;
    text-align: center;
}

.contact-intro p {
    color: #00ffff;
    font-size: 1.2rem;
    line-height: 1.8;
    font-family: 'Exo 2', sans-serif;
}

.contact-form {
    background: rgba(0, 255, 136, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(0, 255, 136, 0.2);
    backdrop-filter: blur(10px);
}

/* Form Styles */
.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    color: #00ff88;
    margin-bottom: 0.8rem;
    font-weight: 600;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 15px;
    background: rgba(0, 255, 136, 0.05);
    color: #00ffff;
    font-size: 16px;
    font-family: 'Exo 2', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ff88;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    background: rgba(0, 255, 136, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.checkbox-group input {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
    color: #00ffff;
    font-weight: normal;
    font-family: 'Exo 2', sans-serif;
}

/* Policy Pages */
.policy-content {
    padding: 4rem 0;
    /* background: linear-gradient(135deg, #16213e, #1a1a2e); */
    max-width: 800px;
    margin: 0 auto;
}

.policy-section {
    background: rgba(0, 255, 136, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 2.5rem;
    border: 2px solid rgba(0, 255, 136, 0.2);
    backdrop-filter: blur(10px);
}

.policy-section h3 {
    color: #00ff88;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.policy-section p {
    color: #00ffff;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-family: 'Exo 2', sans-serif;
}

.policy-section ul {
    list-style: none;
    margin-bottom: 1rem;
}

.policy-section li {
    color: #00ffff;
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-family: 'Exo 2', sans-serif;
}

.policy-section li::before {
    content: '▶';
    color: #00ff88;
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    overflow: hidden;
    pointer-events: auto;
}

.modal.show {
    display: flex !important;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 3rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    position: relative;
    border: 2px solid rgba(0, 255, 136, 0.3);
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.3);
    z-index: 10000;
    pointer-events: auto;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content h2 {
    color: #00ff88;
    text-align: center;
    margin-bottom: 2rem;
    font-family: 'Orbitron', monospace;
}

.modal-content p {
    color: #00ffff;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-family: 'Exo 2', sans-serif;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.modal-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: #00ffff;
    font-family: 'Exo 2', sans-serif;
}

.modal-footer a {
    color: #00ff88;
    font-weight: 600;
}

.close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: #00ffff;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #00ff88;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-top: 3px solid #00ff88;
    padding: 1.5rem;
    z-index: 1500;
    display: none;
    box-shadow: 0 -10px 30px rgba(0, 255, 136, 0.2);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.cookie-content p {
    color: #00ffff;
    margin: 0;
    flex: 1;
    font-family: 'Exo 2', sans-serif;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cookie-link {
    color: #00ff88;
    font-weight: 600;
    font-family: 'Exo 2', sans-serif;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0e1a, #1a1a2e);
    padding: 4rem 0 1rem;
    border-top: 2px solid rgba(0, 255, 136, 0.3);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.05) 0%, transparent 50%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-section h4 {
    color: #00ff88;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', monospace;
}

.footer-section p {
    color: #00ffff;
    line-height: 1.6;
    font-family: 'Exo 2', sans-serif;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.8rem;
    
}

.footer-section a {
    color: #00ffff;
    transition: color 0.3s ease;
    font-family: 'Exo 2', sans-serif;
    display: flex;
    align-items: center; 
    gap: 10px;
}

.footer-section a:hover {
    color: #00ff88;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 50%;
    color: #00ff88;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 255, 136, 0.3);
}

.social-links a:hover {
    background: #00ff88;
    color: #0a0e1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 255, 136, 0.3);
}

.responsible-gaming {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.rg-logo {
    height: 45px;
    width: auto;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.rg-logo:hover {
    filter: brightness(1);
}

.gamstop-placeholder {
    background: linear-gradient(135deg, #00ff88, #00ffff);
    color: #0a0e1a;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    font-family: 'Orbitron', monospace;
}

.footer-disclaimer {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.disclaimer-text p {
    color: #00ff88;
    margin-bottom: 0.3rem;
    font-weight: 600;
    font-family: 'Exo 2', sans-serif;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(0, 255, 136, 0.1);
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    color: #00ffff;
    margin: 0;
    font-family: 'Exo 2', sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
        flex-direction: column !important;
        cursor: pointer !important;
        padding: 10px !important;
        z-index: 1001 !important;
        position: relative !important;
        background: transparent !important;
        border: none !important;
        outline: none !important;
        margin-left: auto !important;
    }
    
    .hamburger span {
        width: 25px;
        height: 3px;
        background: #00ff88;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }
    
    /* Hamburger Animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .nav-menu {
        position: fixed !important;
        left: -100% !important;
        top: 0 !important;
        flex-direction: column !important;
        background: linear-gradient(135deg, #1a1a2e, #16213e) !important;
        width: 100% !important;
        height: 100vh !important;
        text-align: center !important;
        transition: 0.3s ease-in-out !important;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3) !important;
        padding: 80px 2rem 2rem 2rem !important;
        backdrop-filter: blur(20px) !important;
        z-index: 1000 !important;
        overflow-y: auto !important;
        border-right: 2px solid rgba(0, 255, 136, 0.3) !important;
    }
    
    .nav-menu.active {
        left: 0 !important;
    }
    
    .nav-menu li {
        margin: 1rem 0;
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s ease;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-menu li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu li:nth-child(3) { transition-delay: 0.3s; }
    
    .nav-link {
        display: block;
        padding: 1rem 2rem;
        font-size: 1.2rem;
        border-radius: 10px;
        margin: 0.5rem 0;
        background: rgba(0, 255, 136, 0.1);
        border: 1px solid rgba(0, 255, 136, 0.2);
        transition: all 0.3s ease;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(0, 255, 136, 0.2);
        border-color: rgba(0, 255, 136, 0.5);
        transform: translateX(10px);
        box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
    }
    
    .auth-buttons {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content,
    .game-showcase {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .game-info-section {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .responsible-gaming {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .modal-content {
        padding: 2rem;
        margin: 1rem;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 14px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 255, 136, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Ensure smooth scrolling and proper touch behavior */
.nav-container {
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

.nav-container > * {
    scroll-snap-align: start;
}

/* Make navigation scrollable on small screens */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }
    
    .nav-container::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    
    /* Add visual indicators for scrollable content */
    .nav-container::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 20px;
        background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.3));
        pointer-events: none;
        z-index: 1;
    }
    
    .nav-container::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 20px;
        background: linear-gradient(to left, transparent, rgba(0, 0, 0, 0.3));
        pointer-events: none;
        z-index: 1;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 0.5rem;
        gap: 1rem;
    }
    
    .logo {
        min-width: 180px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .logo-tagline {
        font-size: 0.8rem;
    }
    
    .nav-menu {
        min-width: 250px;
        /* margin: 0 1rem; */
    }
    
    .auth-buttons {
        min-width: 180px;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Game-specific styles */
#canvas {
    border: 3px solid #00ff88;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
    background: #000;
}

.orientation-msg-container {
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid #00ff88;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.orientation-msg-text {
    color: #00ff88;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
}

/* Gaming Animation Container */
.gaming-animation {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Floating Dice */
.floating-dice {
    position: absolute;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00ff88, #00ffff);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0e1a;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    animation: float 6s ease-in-out infinite;
}

.dice-1 { top: 10%; left: 10%; animation-delay: 0s; }
.dice-2 { top: 10%; right: 10%; animation-delay: 1s; }
.dice-3 { top: 50%; left: 5%; animation-delay: 2s; }
.dice-4 { top: 50%; right: 5%; animation-delay: 3s; }
.dice-5 { bottom: 10%; left: 20%; animation-delay: 4s; }
.dice-6 { bottom: 10%; right: 20%; animation-delay: 5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(90deg); }
    50% { transform: translateY(-10px) rotate(180deg); }
    75% { transform: translateY(-30px) rotate(270deg); }
}

/* Central Gaming Icon */
.central-gaming-icon {
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ff00ff, #00ffff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0e1a;
    font-size: 48px;
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.6);
    animation: pulse 2s ease-in-out infinite;
    z-index: 10;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 40px rgba(255, 0, 255, 0.6); }
    50% { transform: scale(1.1); box-shadow: 0 0 60px rgba(255, 0, 255, 0.8); }
}

/* Particle Effects */
.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
}

.particle-1 { top: 20%; left: 30%; animation-delay: 0s; }
.particle-2 { top: 30%; right: 25%; animation-delay: 1s; }
.particle-3 { top: 60%; left: 15%; animation-delay: 2s; }
.particle-4 { top: 70%; right: 35%; animation-delay: 3s; }
.particle-5 { bottom: 30%; left: 40%; animation-delay: 4s; }
.particle-6 { bottom: 40%; right: 15%; animation-delay: 5s; }
.particle-7 { top: 40%; left: 50%; animation-delay: 6s; }
.particle-8 { top: 80%; right: 50%; animation-delay: 7s; }

@keyframes particleFloat {
    0% { 
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 1;
    }
    25% { 
        transform: translateY(-30px) translateX(20px) scale(1.2);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-50px) translateX(-10px) scale(0.8);
        opacity: 0.6;
    }
    75% { 
        transform: translateY(-20px) translateX(-30px) scale(1.1);
        opacity: 0.9;
    }
    100% { 
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 1;
    }
}

/* Gaming Stats Display */
.gaming-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    gap: 1rem;
}

.stat-item {
    text-align: center;
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 15px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 120px;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.6);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.3);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #00ff88;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #00ffff;
    font-family: 'Exo 2', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive adjustments for gaming elements */
@media (max-width: 768px) {
    .gaming-animation {
        width: 300px;
        height: 300px;
    }
    
    .floating-dice {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .central-gaming-icon {
        width: 100px;
        height: 100px;
        font-size: 40px;
    }
    
    .gaming-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .gaming-animation {
        width: 250px;
        height: 250px;
    }
    
    .floating-dice {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .central-gaming-icon {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }
}

/* Font Awesome Icons - Global Flexbox Styling */
.fas, .fab, .far, .fal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    min-width: 20px;
    min-height: 20px;
}

/* Icon with text combinations */
h1 .fas, h1 .fab, h1 .far, h1 .fal,
h2 .fas, h2 .fab, h2 .far, h2 .fal,
h3 .fas, h3 .fab, h3 .far, h3 .fal,
h4 .fas, h4 .fab, h4 .far, h4 .fal,
h5 .fas, h5 .fab, h5 .far, h5 .fal,
h6 .fas, h6 .fab, h6 .far, h6 .fal,
.section-header h2 .fas, .section-header h2 .fab, .section-header h2 .far, .section-header h2 .fal,
.featured-game h2 .fas, .featured-game h2 .fab, .featured-game h2 .far, .featured-game h2 .fal,
.faq-section h2 .fas, .faq-section h2 .fab, .faq-section h2 .far, .faq-section h2 .fal,
.newsletter-content h3 .fas, .newsletter-content h3 .fab, .newsletter-content h3 .far, .newsletter-content h3 .fal {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-right: 10px;
}

/* Button icons */
.btn .fas, .btn .fab, .btn .far, .btn .fal {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-right: 5px;
}

/* Navigation icons */
.nav-link .fas, .nav-link .fab, .nav-link .far, .nav-link .fal {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-right: 8px;
}

/* List item icons */
.game-features .fas, .game-features .fab, .game-features .far, .game-features .fal,
.policy-section .fas, .policy-section .fab, .policy-section .far, .policy-section .fal {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-right: 10px;
    min-width: 16px;
}

/* Footer section icons */
.footer-section h4 .fas, .footer-section h4 .fab, .footer-section h4 .far, .footer-section h4 .fal {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-right: 8px;
}

/* Modal icons */
.modal-content h2 .fas, .modal-content h2 .fab, .modal-content h2 .far, .modal-content h2 .fal {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-right: 10px;
}

/* Social links icons */
.social-links .fas, .social-links .fab, .social-links .far, .social-links .fal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    min-width: 20px;
    min-height: 20px;
}

/* Body scroll lock when modal is open */
body.modal-open {
    overflow: hidden;
}

.value-item p {
    color: #00ffff;
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

/* Page Content Styles */
.disclaimer-page,
.contact-page,
.privacy-policy-page,
.terms-page,
.cookies-page,
.about-page {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    min-height: 60vh;
}

.value-item h4 {
    color: #00ff88;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-section {
        padding: 2rem;
    }
    
    .about-section h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 1.5rem;
    }
    
    .about-section h3 {
        font-size: 1.3rem;
    }
    
    .value-item {
        padding: 1.5rem;
    }
}

/* Logo Link Styling */
.logo-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.02);
}

.logo-link:hover h1 {
    color: #00ffaa;
    text-shadow: 0 0 25px rgba(0, 255, 170, 0.7);
}

.logo-link:hover .logo-tagline {
    opacity: 1;
    color: #00ffaa;
}

/* Responsive Logo Link */
@media (max-width: 768px) {
    .logo-link:hover {
        transform: scale(1.01);
    }
    
    .logo-link:hover h1 {
        text-shadow: 0 0 15px rgba(0, 255, 170, 0.6);
    }
}

@media (max-width: 480px) {
    .logo-link {
        transition: all 0.2s ease;
    }
    
    .logo-link:hover {
        transform: none;
    }
    
    .logo-link:active {
        transform: scale(0.98);
    }
}

/* Mobile Menu Improvements - Additional styles for better mobile experience */
@media (max-width: 768px) {
    /* Ensure header has proper z-index */
    .header {
        z-index: 999;
        position: relative;
    }
    
    /* Ensure nav-container has proper positioning */
    .nav-container {
        position: relative;
        z-index: 1000;
    }
    
    /* Additional mobile menu refinements */
    .nav-menu {
        border-left: 2px solid rgba(0, 255, 136, 0.3);
    }
    
    /* Improve touch targets */
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Better hamburger positioning */
    .hamburger {
        margin-left: auto;
    }
}

/* Body scroll lock when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
}



.responsible-gaming .rg-logo {
    width: 160px;
    height: auto;
    border-radius: 8px;
    transition: all 0.3s ease;
    filter: brightness(0.9);
}

@media (max-width: 1024px) {
    .hero-content-container{
        grid-template-columns: 1fr;
    }


    .responsible-gaming .rg-logo{
        width: 90px;
    }
    .disclaimer-box{
    padding: 20px 8px;
}
}