/* Custom CSS for GameHub */

/* Notice Bar Styles */
.notice-bar {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 50%, #bd2130 100%);
    color: white;
    padding: 0.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    box-shadow: 0 2px 10px rgba(220, 53, 69, 0.3);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.notice-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
}

.notice-icon {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

.notice-text {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Adjust main content padding to account for notice bar */
.main-content {
    padding-top: 120px !important;
}

/* Responsive adjustments for notice bar */
@media (max-width: 768px) {
    .notice-text {
        font-size: 0.8rem;
    }
    
    .notice-icon {
        font-size: 1rem;
    }
    
    .custom-navbar {
        top: 35px !important;
    }
    
    .main-content {
        padding-top: 110px !important;
    }
}

@media (max-width: 576px) {
    .notice-text {
        font-size: 0.75rem;
        letter-spacing: 0.3px;
    }
    
    .notice-content {
        gap: 0.3rem;
    }
    
    .custom-navbar {
        top: 32px !important;
    }
    
    .main-content {
        padding-top: 105px !important;
    }
}

/* Root Variables */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #0dcaf0;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-success: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    
    /* Professional enhancements */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius-sm: 0.375rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 0.75rem;
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #f8f9fa;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
    max-width: 100vw;
    box-sizing: border-box;
}

/* Navigation Styles */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.navbar-nav .nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--warning-color) !important;
}

/* Custom Navigation Styles - Professional Theme */
.custom-navbar {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    top: 40px !important;
    transition: var(--transition-smooth);
}

.custom-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar-logo {
    height: 40px;
    width: auto;
    max-width: 200px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.custom-brand:hover {
    transform: scale(1.05);
}

.custom-brand:hover .navbar-logo {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
}

/* Responsive Logo Styles */
@media (max-width: 768px) {
    .navbar-logo {
        height: 35px;
        max-width: 150px;
    }
}

@media (max-width: 576px) {
    .navbar-logo {
        height: 30px;
        max-width: 120px;
    }
}


.custom-nav-link {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
}

.custom-nav-link:hover {
    color: var(--warning-color) !important;
    background: rgba(255, 193, 7, 0.1);
    transform: translateY(-1px);
    text-shadow: none;
}

.custom-nav-link.active {
    color: var(--warning-color) !important;
    background: rgba(255, 193, 7, 0.15);
    font-weight: 600;
    text-shadow: none;
}

.custom-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.6);
}

/* Dropdown Menu Styles */
.custom-dropdown {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.custom-dropdown .dropdown-item {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 1.5rem;
    transition: var(--transition-smooth);
    font-weight: 500;
}

.custom-dropdown .dropdown-item:hover {
    background: rgba(255, 193, 7, 0.1);
    color: var(--warning-color);
    transform: translateX(5px);
}

.custom-dropdown .dropdown-item:active {
    background: rgba(255, 193, 7, 0.15);
    color: var(--warning-color);
}

.dropdown-toggle::after {
    margin-left: 0.5rem;
    vertical-align: 0.15em;
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}


/* About Us Hero Section */
.about-us-hero-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
    padding: 0 !important;
    margin: 0 !important;
}

.about-graphics {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.character-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.character-image {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.2));
    animation: characterBounce 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.character-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.3));
}

.about-content {
    padding: 2rem;
    z-index: 2;
    position: relative;
}

.about-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.0rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 2;
}

.highlight-text {
    background: linear-gradient(90deg, #ff6b6b, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #ffa500);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(255, 107, 107, 0.5);
}

.about-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: #ffd700;
    margin-bottom: 2rem;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.8),
        2px 2px 4px rgba(0, 0, 0, 0.9);
    letter-spacing: 1px;
}

.about-description {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 2.5rem;
    text-shadow: 
        0 0 5px rgba(255, 255, 255, 0.3),
        1px 1px 2px rgba(0, 0, 0, 0.9);
    font-weight: 500;
    letter-spacing: 0.5px;
    max-width: 500px;
}

.btn-start-gaming {
    background: linear-gradient(90deg, #ff6b6b, #ff4757);
    border: none;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
    cursor: pointer;
}

.btn-start-gaming:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.5);
    background: linear-gradient(90deg, #ff5252, #ff3742);
}

@keyframes characterBounce {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
    }
    50% { 
        transform: translateY(-15px) scale(1.02); 
    }
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    padding: 4rem 0 !important;
    margin: 0 !important;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.services-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.services-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #ffffff;
    position: relative;
    transition: all 0.3s ease;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: inherit;
    opacity: 0.3;
    filter: blur(10px);
    z-index: -1;
}

.service-icon-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.4);
}

.service-icon-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 0 30px rgba(240, 147, 251, 0.4);
}

.service-icon-3 {
    background: linear-gradient(135deg, #ffa726 0%, #ff7043 100%);
    box-shadow: 0 0 30px rgba(255, 167, 38, 0.4);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.service-description {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.service-btn {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-btn-1 {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.service-btn-1:hover {
    background: rgba(102, 126, 234, 0.2);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.service-btn-2 {
    color: #f093fb;
    background: rgba(240, 147, 251, 0.1);
    border: 1px solid rgba(240, 147, 251, 0.3);
}

.service-btn-2:hover {
    background: rgba(240, 147, 251, 0.2);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(240, 147, 251, 0.3);
}

.service-btn-3 {
    color: #ffa726;
    background: rgba(255, 167, 38, 0.1);
    border: 1px solid rgba(255, 167, 38, 0.3);
}

.service-btn-3:hover {
    background: rgba(255, 167, 38, 0.2);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(255, 167, 38, 0.3);
}

/* Responsive Design for About Us Section */
@media (max-width: 768px) {
    .about-us-hero-section {
        min-height: auto;
        padding: 2rem 0 !important;
    }
    
    .about-graphics {
        height: 50vh;
        margin-bottom: 2rem;
    }
    
    .character-image {
        max-height: 60vh;
    }
    
    .about-main-title {
        font-size: 2.5rem;
    }
    
    .about-subtitle {
        font-size: 1.8rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .btn-start-gaming {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .services-main-title {
        font-size: 1.8rem;
    }
    
    .services-subtitle {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #f8f9fa;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    max-width: 100vw; /* Ensure body doesn't exceed viewport width */
}

/* Ensure all containers respect viewport width */
.container-fluid {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Prevent any element from causing horizontal overflow */
* {
    box-sizing: border-box;
}

.main-content {
    margin-top: 0; /* Remove margin for hero section */
    min-height: calc(100vh - 76px);
    max-width: 100vw;
    overflow-x: hidden;
}

/* Only add margin for non-hero sections */
.main-content > section:not(.hero-section) {
    margin-top: 76px;
}

/* Ensure hero section doesn't cause horizontal scroll */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: #000;
    width: 100%;
    max-width: 100vw;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/a64c0f344db918c7896e126ac8742e0f.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.9;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 0.7) 0%, 
        rgba(26, 26, 46, 0.5) 30%, 
        rgba(22, 33, 62, 0.3) 60%, 
        rgba(10, 10, 10, 0.6) 100%);
    z-index: 2;
}

.hero-lighting {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(255, 0, 0, 0.2) 0%, 
        rgba(255, 0, 0, 0.1) 30%, 
        transparent 50%, 
        rgba(0, 0, 255, 0.1) 70%, 
        rgba(0, 0, 255, 0.2) 100%);
    z-index: 3;
}

.hero-text-section {
    position: relative;
    z-index: 4;
    padding: 2rem;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    padding: 3rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    box-sizing: border-box; /* Ensure padding is included in width calculation */
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.0rem;
    font-weight: 900;
    color: #fff;
    line-height:40px;
    margin-bottom: 1.5rem;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.5),
        2px 2px 4px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(255, 0, 0, 0.3);
    letter-spacing: 2px;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.hero-title::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -10px;
    right: -10px;
    bottom: -5px;
    background: linear-gradient(45deg, 
        rgba(255, 0, 0, 0.1), 
        rgba(0, 0, 255, 0.1), 
        rgba(255, 0, 0, 0.1));
    border-radius: 10px;
    z-index: -1;
    animation: titleGlow 3s ease-in-out infinite;
}

.hero-title-line {
    display: block;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.hero-gaming-text {
    font-size: 1.2rem;
    color: #ffd700;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.8),
        2px 2px 4px rgba(0, 0, 0, 0.9);
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.hero-subtitle {
    font-size: 1rem;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 2rem;
    text-shadow: 
        0 0 5px rgba(255, 255, 255, 0.3),
        1px 1px 2px rgba(0, 0, 0, 0.9);
    font-weight: 500;
    letter-spacing: 0.5px;
    font-family: 'Roboto', sans-serif;
}

@keyframes titleGlow {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: scale(1.02);
    }
}

/* Hero Features */
.hero-features {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #fff;
    font-size: 0.95rem;
    text-shadow: 
        0 0 5px rgba(255, 255, 255, 0.3),
        1px 1px 2px rgba(0, 0, 0, 0.9);
    background: rgba(0, 0, 0, 0.2);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.feature-item:hover {
    background: rgba(0, 0, 0, 0.4);
    border-left-color: rgba(255, 255, 255, 0.5);
    transform: translateX(5px);
}

.feature-item i {
    font-size: 1.1rem;
    text-shadow: 0 0 10px currentColor;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.8rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 70px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.stat-box:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.5),
        2px 2px 4px rgba(0, 0, 0, 0.9);
    line-height: 1;
    font-family: 'Roboto', sans-serif;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.9);
    margin-top: 0.25rem;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-play-now {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border: none;
    color: #fff;
    padding: 0.875rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(102, 126, 234, 0.3),
        0 0 20px rgba(102, 126, 234, 0.2);
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

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

.btn-play-now:hover::before {
    left: 100%;
}

.btn-play-now:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 50%, #e085f0 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(102, 126, 234, 0.4),
        0 0 30px rgba(102, 126, 234, 0.3);
}

.btn-learn-more {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(102, 126, 234, 0.5);
    color: #fff;
    padding: 0.875rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    font-family: 'Poppins', sans-serif;
}

.btn-learn-more:hover {
    background: rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.8);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(102, 126, 234, 0.3),
        0 0 25px rgba(102, 126, 234, 0.2);
}


/* Game Cards */
.game-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.game-thumbnail {
    height: 200px;
    background: var(--gradient-secondary);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-overlay .btn {
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.game-card:hover .game-overlay .btn {
    transform: scale(1);
}

/* Category Cards */
.category-card {
    background: white;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

/* Stats Section */
.stat-item {
    padding: 1rem;
}

.stat-item i {
    color: rgba(255, 255, 255, 0.8);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
}

/* Rating Stars */
.rating {
    font-size: 0.9rem;
}

.rating .fas.fa-star {
    color: var(--warning-color);
}

.rating .far.fa-star {
    color: #e9ecef;
}

/* Buttons */
.btn {
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Cards */
.card {
    border-radius: 15px;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Forms */
.form-control, .form-select {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: var(--secondary-color);
}

/* Game Container */
.game-container {
    background: white;
    box-shadow: var(--shadow);
    border-radius: 15px;
    overflow: hidden;
}

/* Category Filter */
.category-filter .btn {
    margin-bottom: 0.5rem;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
}

/* Footer */
footer {
    margin-top: 0 !important;
    padding-top: 2rem !important;
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--warning-color) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
    }
    
    .hero-text-section {
        height: auto;
        padding: 3rem 1rem;
        text-align: center;
    }
    
    .hero-content {
        padding: 2rem;
        max-width: 100%;
        margin: 0 1rem; /* Add horizontal margin to prevent edge overflow */
    }
    
    .hero-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-play-now,
    .btn-learn-more {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .stat-box {
        min-width: 70px;
        padding: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .hero-features {
        margin: 1.5rem 0;
    }
    
    .feature-item {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .game-thumbnail {
        height: 150px;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .btn-lg {
        padding: 0.5rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .main-content {
        margin-top: 70px;
    }
    
    .hero-section {
        padding: 2rem 0;
        height: auto;
        min-height: 100vh;
    }
    
    .hero-text-section {
        padding: 2rem 0.5rem;
    }
    
    .hero-content {
        padding: 1.5rem;
        margin: 0 0.5rem; /* Add horizontal margin to prevent edge overflow */
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .btn-play-now,
    .btn-learn-more {
        max-width: 200px;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-stats {
        gap: 0.75rem;
    }
    
    .stat-box {
        min-width: 60px;
        padding: 0.5rem;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .hero-features {
        margin: 1rem 0;
    }
    
    .feature-item {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Remove all white borders globally */
section {
    margin: 0 !important;
}

.container {
}

.row {
    margin: 0 !important;
}

.col-12, .col-lg-3, .col-lg-4, .col-lg-6, .col-md-6 {
    margin: 0 !important;
}

/* Override Bootstrap margin classes */
.mb-0, .mb-3, .mb-4, .mb-5, .mt-4 {
    margin: 0 !important;
}

/* Featured Games Section */
.bg-light {
    background-color: #f8f9fa !important;
    padding: 3rem 0 !important;
    margin: 0 !important;
}

/* Categories Section */
.categories-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    padding: 3rem 0 !important;
    margin: 0 !important;
    position: relative;
    overflow: hidden;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    padding: 3rem 0 !important;
    margin: 0 !important;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(240, 147, 251, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.stat-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(102, 126, 234, 0.2);
}

.stat-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #ffffff;
    position: relative;
    transition: all 0.3s ease;
}

.stat-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: inherit;
    opacity: 0.3;
    filter: blur(10px);
    z-index: -1;
}

.stat-icon-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.4);
}

.stat-icon-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 0 30px rgba(240, 147, 251, 0.4);
}

.stat-icon-3 {
    background: linear-gradient(135deg, #ffa726 0%, #ff7043 100%);
    box-shadow: 0 0 30px rgba(255, 167, 38, 0.4);
}

.stat-icon-4 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 0 30px rgba(79, 172, 254, 0.4);
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.stat-label {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* About Us Section */
.about-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 4rem 0 !important;
    margin: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.about-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="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.about-section .container {
    position: relative;
    z-index: 2;
}

.about-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: #ffd700;
    text-shadow: 
        0 0 15px rgba(255, 215, 0, 0.8),
        3px 3px 6px rgba(0, 0, 0, 0.9);
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-divider {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #ff6b6b, #ffd700, #ff6b6b);
    margin: 0 auto 3rem auto;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.about-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 2rem;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
    text-align: left;
}

.about-text {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-features {
    margin-top: 3rem;
    text-align: center;
}

.about-feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.about-feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.about-feature-item i {
    font-size: 1.5rem;
    text-shadow: 0 0 15px currentColor;
    margin-right: 1rem;
}

.about-stats {
    margin-top: 3rem;
}

.about-stat-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    height: 100%;
}

.about-stat-box:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 215, 0, 0.5);
}

.about-stat-number {
    font-family: 'Roboto', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffd700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
    margin-bottom: 0.8rem;
}

.about-stat-label {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Disclaimer Section */
.disclaimer-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #fff;
    position: relative;
    padding: 4rem 0 !important;
    margin: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.disclaimer-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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.disclaimer-section .container {
    position: relative;
    z-index: 2;
}

.disclaimer-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    color: #ff6b6b;
    text-shadow: 
        0 0 15px rgba(255, 107, 107, 0.8),
        3px 3px 6px rgba(0, 0, 0, 0.9);
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    text-align: center;
    padding-top: 40px;
}

.disclaimer-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #ffd700, #ff6b6b);
    margin: 0 auto 3rem auto;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

.disclaimer-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-item {
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.disclaimer-item:hover {
    background: rgba(0, 0, 0, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.3);
}

.disclaimer-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.disclaimer-subtitle i {
    margin-right: 1rem;
    font-size: 1.6rem;
}

.disclaimer-text {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
    text-align: center;
}


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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0a58ca;
}

/* Center all homepage sections for professional UI/UX */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero Section - Center content */
.hero-section .container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 100px;
}

/* Featured Games Section - Center content */
.bg-light .container {
    text-align: center;
}

.bg-light .row {
    justify-content: center;
}

.bg-light .col-lg-4 {
    display: flex;
    justify-content: center;
}

/* Categories Section - Center content */
.categories-section .container {
    text-align: center;
}

.categories-section .row {
    justify-content: center;
}

.categories-section .col-lg-3 {
    display: flex;
    justify-content: center;
}


/* Game Cards - Center and improve styling */
.game-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    max-width: 300px;
    margin: 0 auto;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Category Cards - Center and improve styling */
.category-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    max-width: 250px;
    margin: 0 auto;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Stat Items - Center and improve styling */
.stat-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    max-width: 250px;
    margin: 0 auto;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.2);
}

/* Section Titles - Center all */
.display-5 {
    text-align: center !important;
    margin-bottom: 1rem;
}

.lead {
    text-align: center !important;
    margin-bottom: 3rem;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .game-card,
    .category-card,
    .stat-item {
        max-width: 100%;
        margin: 0 auto 1rem auto;
    }
}

/* Utility Classes */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: var(--gradient-primary);
}

.bg-gradient-secondary {
    background: var(--gradient-secondary);
}

.shadow-custom {
    box-shadow: var(--shadow-lg);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

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

.slide-in-left {
    animation: slideInLeft 0.5s ease-out;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.slide-in-right {
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Popular Games Section - NFT Style */
/* Featured Game Section */
.featured-game-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    padding: 4rem 0 !important;
    margin: 0 !important;
    position: relative;
    overflow: hidden;
}

.featured-game-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(240, 147, 251, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 167, 38, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.featured-game-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.featured-game-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.game-main-image {
    width: 100%;
    height: 400px;
    object-fit: contain;
    transition: transform 0.3s ease;
    background: rgba(0, 0, 0, 0.1);
}

.featured-game-image:hover .game-main-image {
    transform: scale(1.05);
}

.game-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.featured-game-image:hover .game-image-overlay {
    opacity: 1;
}

.btn-play-main {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
    cursor: pointer;
}

.btn-play-main:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.7);
}

.featured-game-details {
    padding: 2rem;
    color: #ffffff;
}

.featured-game-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    line-height: 1.3;
    font-weight: 700;
}

.featured-game-description {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.how-to-play-section {
    margin-bottom: 2rem;
}

.how-to-play-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 600;
}

.how-to-play-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.how-to-play-list li {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.how-to-play-list li::before {
    content: '▶';
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.game-rating-section {
    margin-bottom: 2rem;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.rating-stars {
    font-size: 1.2rem;
    color: #ffd700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.rating-score {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.rating-text {
    font-family: 'Roboto', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.play-button-section {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.btn-play-featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

.btn-play-featured:hover::before {
    left: 100%;
}

.btn-play-featured:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.btn-play-featured:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-all-games {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.4);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

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

.btn-all-games:hover::before {
    left: 100%;
}

.btn-all-games:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(240, 147, 251, 0.6);
    background: linear-gradient(135deg, #e085f0 0%, #f44a5c 100%);
    color: white;
    text-decoration: none;
}

.btn-all-games:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.4);
}

/* Responsive Design for Featured Game */
@media (max-width: 768px) {
    .featured-game-title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .featured-game-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .how-to-play-title {
        font-size: 1rem;
    }
    
    .how-to-play-list li {
        font-size: 0.8rem;
    }
    
    .rating-stars {
        font-size: 1rem;
    }
    
    .rating-score {
        font-size: 1rem;
    }
    
    .play-button-section {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .btn-play-featured {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
        text-align: center;
    }
    
    .btn-all-games {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
        text-align: center;
    }
    
    .game-main-image {
        height: 350px;
        object-fit: contain;
    }
    
    .featured-game-details {
        padding: 1.5rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    padding: 5rem 0 !important;
    margin: 0 !important;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(240, 147, 251, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 167, 38, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.testimonial-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonials-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #ffffff;
}

.customer-text {
    color: #667eea;
}


.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.quote-icon {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.testimonial-headline {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.testimonial-text {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 1.5rem 0;
}

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

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details {
    flex: 1;
}

.author-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0 0 0.2rem 0;
}

.author-role {
    font-family: 'Roboto', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.testimonial-rating {
    display: flex;
    align-items: center;
}

.stars {
    font-size: 1rem;
    color: #ffd700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive Design for Testimonials */
@media (max-width: 768px) {
    .testimonials-main-title {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-headline {
        font-size: 1rem;
    }
    
    .testimonial-text {
        font-size: 0.85rem;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
    }
    
    .author-name {
        font-size: 0.9rem;
    }
    
    .author-role {
        font-size: 0.75rem;
    }
    
    .stars {
        font-size: 0.9rem;
    }
}

.popular-games-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    padding: 4rem 0 !important;
    margin: 0 !important;
    position: relative;
    overflow: hidden;
}

.popular-games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.popular-games-title {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.games-scroll-container {
    overflow-x: auto;
    padding: 2rem 0;
    margin: 0 auto;
    max-width: 1200px;
    display: flex;
    justify-content: center;
}

.games-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.games-scroll-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.games-scroll-container::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1);
    border-radius: 4px;
}

.games-scroll-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #ff5252, #26a69a, #2196f3);
}

.games-scroll-wrapper {
    display: flex;
    gap: 2rem;
    padding: 0 1rem;
    min-width: max-content;
    justify-content: center;
    align-items: center;
}

.nft-game-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    padding: 0;
    width: 320px;
    height: 400px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.nft-game-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.nft-game-card:nth-child(1) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.nft-game-card:nth-child(2) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.nft-game-card:nth-child(3) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.game-artwork {
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.game-image {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    z-index: 2;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.game-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 3;
    border-radius: 20px 20px 0 0;
}

.nft-game-card:hover .game-play-overlay {
    opacity: 1;
}

.btn-play-game {
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    border: none;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-play-game:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.game-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 50%, 
        rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.game-footer {
    padding: 1.2rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.game-info {
    margin-bottom: 0;
}

.game-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin: 0 0 0.3rem 0;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.game-artist {
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 300;
}

.game-rating {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #ffd700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.game-rating .stars {
    color: #ffd700;
    font-size: 0.8rem;
}

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

.game-likes {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
}

.game-likes i {
    color: #ff6b6b;
    font-size: 0.8rem;
}

.game-price {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #4ecdc4;
    font-weight: 400;
    text-shadow: 0 0 10px rgba(78, 205, 196, 0.5);
}

.btn-view-all {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.btn-view-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
    color: white;
}

/* Game Modal Styles */
.game-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);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(135deg, #1a0b3d 0%, #2d1b69 50%, #4a2c7a 100%);
    border-radius: 20px;
    width: 90%;
    max-width: 1200px;
    height: 80%;
    max-height: 800px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h3 {
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    margin: 0;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.close-modal {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.modal-body {
    height: calc(100% - 80px);
    padding: 0;
}

.modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0 0 20px 20px;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .popular-games-title {
        font-size: 2rem;
    }
    
    .games-scroll-container {
        margin: 0 auto;
        max-width: 100%;
        padding: 1rem 0;
    }
    
    .games-scroll-wrapper {
        justify-content: flex-start;
        padding: 0 0.5rem;
        gap: 1.5rem;
    }
    
    .nft-game-card {
        width: 280px;
        height: 350px;
    }
    
    .game-artwork {
        height: 220px;
    }
    
    .game-image {
        font-size: 3rem;
    }
    
    .modal-content {
        width: 95%;
        height: 85%;
    }
    
    .modal-header {
        padding: 0.8rem 1rem;
    }
    
    .modal-header h3 {
        font-size: 1.2rem;
    }
    
    .close-modal {
        font-size: 1.5rem;
        width: 35px;
        height: 35px;
    }
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 30%, #16213e 70%, #0f0f23 100%);
    padding: 4rem 0 !important;
    margin: 0 !important;
    margin-bottom: 0 !important;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(240, 147, 251, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(255, 167, 38, 0.08) 0%, transparent 70%),
        linear-gradient(45deg, rgba(102, 126, 234, 0.05) 0%, transparent 30%, rgba(240, 147, 251, 0.05) 100%);
    pointer-events: none;
    animation: backgroundShift 8s ease-in-out infinite;
}

.final-cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(102, 126, 234, 0.03) 25%, rgba(240, 147, 251, 0.03) 75%, transparent 100%),
        linear-gradient(180deg, transparent 0%, rgba(255, 167, 38, 0.02) 50%, transparent 100%);
    pointer-events: none;
    animation: gradientFlow 12s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Floating Particles Animation */
.final-cta-section .floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(102, 126, 234, 0.6);
    border-radius: 50%;
    animation: floatUp 8s linear infinite;
}

.particle:nth-child(2n) {
    background: rgba(240, 147, 251, 0.6);
    animation-duration: 10s;
}

.particle:nth-child(3n) {
    background: rgba(255, 167, 38, 0.6);
    animation-duration: 12s;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { left: 40%; animation-delay: 6s; }
.particle:nth-child(5) { left: 50%; animation-delay: 8s; }
.particle:nth-child(6) { left: 60%; animation-delay: 10s; }
.particle:nth-child(7) { left: 70%; animation-delay: 12s; }
.particle:nth-child(8) { left: 80%; animation-delay: 14s; }
.particle:nth-child(9) { left: 90%; animation-delay: 16s; }

@keyframes floatUp {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(10vh) scale(1);
    }
    100% {
        transform: translateY(-10vh) scale(0);
        opacity: 0;
    }
}

/* Why Choose Section */
.why-choose-section {
    margin-bottom: 2.5rem;
}

.why-choose-content {
    padding: 1.5rem 0;
}

.why-choose-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 0;
}

.feature-check {
    color: #00ff88;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-item span {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* Dashboard Showcase */
.dashboard-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 0;
}

.dashboard-container {
    position: relative;
    max-width: 380px;
    width: 100%;
}

.dashboard-mockup {
    background: #1a1a2e;
    border-radius: 18px;
    padding: 1.2rem;
    border: 2px solid #667eea;
    box-shadow: 
        0 0 25px rgba(102, 126, 234, 0.3),
        0 15px 35px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.dashboard-mockup::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #667eea);
    border-radius: 20px;
    z-index: -1;
    animation: dashboardGlow 3s ease-in-out infinite;
}

@keyframes dashboardGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.dashboard-stats {
    display: flex;
    gap: 0.8rem;
}

.stat-item {
    font-family: 'Roboto', sans-serif;
    font-size: 0.75rem;
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.game-cards {
    display: flex;
    gap: 0.8rem;
}

.game-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.game-icon {
    width: 35px;
    height: 35px;
    border-radius: 6px;
    flex-shrink: 0;
}

.solar-icon {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
}

.burning-icon {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.game-info h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.1rem 0;
}

.game-info p {
    font-family: 'Roboto', sans-serif;
    font-size: 0.65rem;
    color: #ffd700;
    margin: 0;
}

.progress-section h4,
.chart-section h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.6rem 0;
}

.progress-bar {
    background: rgba(255, 255, 255, 0.1);
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.4rem;
}

.progress-fill {
    background: linear-gradient(90deg, #667eea, #764ba2);
    height: 100%;
    border-radius: 3px;
    transition: width 0.3s ease;
}

.progress-section p {
    font-family: 'Roboto', sans-serif;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.mini-chart {
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.chart-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 1px;
}

.dashboard-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(102, 126, 234, 0.3);
}

.dashboard-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* CTA Block */
.cta-block {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.15) 0%, 
        rgba(240, 147, 251, 0.1) 30%,
        rgba(255, 167, 38, 0.08) 60%,
        transparent 100%);
    border-radius: 25px 0 0 25px;
    animation: ctaGradientShift 6s ease-in-out infinite;
}

.cta-block::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(102, 126, 234, 0.3) 0%,
        rgba(240, 147, 251, 0.2) 25%,
        rgba(255, 167, 38, 0.15) 50%,
        rgba(240, 147, 251, 0.2) 75%,
        rgba(102, 126, 234, 0.3) 100%);
    border-radius: 27px;
    z-index: -1;
    animation: ctaBorderGlow 4s ease-in-out infinite;
}

@keyframes ctaGradientShift {
    0%, 100% { 
        opacity: 1;
        transform: translateX(0);
    }
    50% { 
        opacity: 0.8;
        transform: translateX(10px);
    }
}

@keyframes ctaBorderGlow {
    0%, 100% { 
        opacity: 0.6;
        transform: scale(1);
    }
    50% { 
        opacity: 0.9;
        transform: scale(1.02);
    }
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.cta-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border: none;
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 35px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.4s ease;
    box-shadow: 
        0 10px 30px rgba(102, 126, 234, 0.4),
        0 5px 15px rgba(240, 147, 251, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

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

.btn-primary-cta::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #667eea);
    border-radius: 37px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary-cta:hover::before {
    left: 100%;
}

.btn-primary-cta:hover::after {
    opacity: 0.7;
}

.btn-primary-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(102, 126, 234, 0.6),
        0 8px 25px rgba(240, 147, 251, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 50%, #e085f0 100%);
}

.btn-primary-cta:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 8px 20px rgba(102, 126, 234, 0.5),
        0 4px 10px rgba(240, 147, 251, 0.4);
}

.btn-secondary-cta {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 35px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.4s ease;
    cursor: pointer;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-secondary-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.1) 0%, 
        rgba(240, 147, 251, 0.08) 50%,
        rgba(255, 167, 38, 0.06) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 33px;
}

.btn-secondary-cta:hover::before {
    opacity: 1;
}

.btn-secondary-cta:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 12px 35px rgba(255, 255, 255, 0.2),
        0 5px 15px rgba(102, 126, 234, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-secondary-cta:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 
        0 6px 20px rgba(255, 255, 255, 0.15),
        0 3px 10px rgba(102, 126, 234, 0.15);
}

/* Custom Footer */
.custom-footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    padding: 4rem 0 2rem 0;
    margin: 0 !important;
    position: relative;
    overflow: hidden;
    margin-top: 0 !important;
}

.custom-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(240, 147, 251, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.footer-main {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

/* Footer Brand Section */
.footer-brand {
    padding-right: 2rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease;
}

.logo-icon:hover {
    transform: scale(1.05);
}

.logo-letter {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-description {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 350px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 0.3rem 0;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: rgba(255, 255, 255, 0.9);
}

.contact-item i {
    width: 16px;
    color: #667eea;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Footer Links */
.footer-links {
    margin-bottom: 1.5rem;
    padding: 0 1rem;
}

.footer-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 25px;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 1px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-list a {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding: 0.2rem 0;
}

.footer-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.footer-list a:hover {
    color: #f093fb;
    text-shadow: 0 0 8px rgba(240, 147, 251, 0.4);
}

.footer-list a:hover::after {
    width: 100%;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.8rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link i {
    position: relative;
    z-index: 2;
    font-size: 1rem;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    border-color: transparent;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 2rem;
    position: relative;
    z-index: 2;
    margin-top: 2rem;
}

.copyright-text {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.4;
}

.legal-links {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.legal-links a {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.3rem 0;
}

.legal-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}

.legal-links a:hover {
    color: #667eea;
}

.legal-links a:hover::after {
    width: 100%;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #667eea;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

/* Legal Pages Styling */
.legal-page {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 30%, #16213e 70%, #0f0f23 100%);
    min-height: 100vh;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.legal-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(240, 147, 251, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.legal-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
    position: relative;
    z-index: 2;
    border-bottom: 2px solid rgba(240, 147, 251, 0.3);
}

.legal-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
}

.legal-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    letter-spacing: 0.5px;
}

.legal-content {
    position: relative;
    z-index: 2;
}

.intro-text {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(240, 147, 251, 0.3);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.intro-text p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

.legal-section {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.legal-section:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(102, 126, 234, 0.2);
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #f093fb;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(240, 147, 251, 0.3);
    letter-spacing: 0.5px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.section-content {
    font-family: 'Roboto', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.section-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 1.5rem 0 1rem 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.section-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.section-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.section-content li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.section-content strong {
    color: #667eea;
    font-weight: 600;
}

.contact-info {
    background: rgba(240, 147, 251, 0.15);
    border: 1px solid rgba(240, 147, 251, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 2rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.1);
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-info strong {
    color: #f093fb;
    font-weight: 600;
}

/* Privacy Policy Page - Full Width Dark Design */
.privacy-policy-page {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 30%, #16213e 70%, #0f0f23 100%);
    min-height: 100vh;
    padding: 0;
    margin: 0;
    width: 100%;
}

.privacy-policy-page .main-content {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 30%, #16213e 70%, #0f0f23 100%);
    padding: 0;
    margin: 0;
    width: 100%;
}

.privacy-policy-page .container {
    max-width: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
}

.privacy-policy-page .row {
    margin: 0;
    width: 100%;
}

.privacy-policy-page .col-lg-10 {
    max-width: 100%;
    width: 100%;
    padding: 0;
}

.privacy-policy-page .legal-page {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 30%, #16213e 70%, #0f0f23 100%);
    min-height: 100vh;
    padding: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.privacy-policy-page .legal-page::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: #f093fb;
    z-index: 1;
}

.privacy-policy-page .legal-header {
    padding: 5rem 3rem 3rem 3rem;
    margin-bottom: 0;
    border-bottom: none;
    position: relative;
    z-index: 2;
    text-align: left;
    width: 100%;
}

.privacy-policy-page .legal-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
}

.privacy-policy-page .legal-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0.5rem 0 0 0;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.privacy-policy-page .legal-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 3rem 5rem 3rem;
}

.privacy-policy-page .intro-text {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(240, 147, 251, 0.3);
    border-radius: 20px;
    padding: 4rem;
    margin-bottom: 4rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.privacy-policy-page .intro-text p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

.privacy-policy-page .legal-section {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 4rem;
    backdrop-filter: none;
    box-shadow: none;
    transition: none;
}

.privacy-policy-page .legal-section:hover {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}

.privacy-policy-page .section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #f093fb;
    margin-bottom: 2.5rem;
    text-shadow: 0 0 10px rgba(240, 147, 251, 0.3);
    letter-spacing: 0.5px;
    position: relative;
}

.privacy-policy-page .section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.privacy-policy-page .section-content {
    font-family: 'Roboto', sans-serif;
    line-height: 1.7;
    padding-left: 1rem;
}

.privacy-policy-page .section-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin: 2.5rem 0 1.5rem 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.privacy-policy-page .section-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.privacy-policy-page .section-content ul {
    color: rgba(255, 255, 255, 0.8);
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.privacy-policy-page .section-content li {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

.privacy-policy-page .section-content strong {
    color: #667eea;
    font-weight: 600;
}

.privacy-policy-page .contact-info {
    background: rgba(240, 147, 251, 0.15);
    border: 1px solid rgba(240, 147, 251, 0.3);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.1);
}

.privacy-policy-page .contact-info p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Apply Enhanced Spacing to All Policy Pages */
.terms-conditions-page .legal-header,
.cookies-policy-page .legal-header,
.gaming-policy-page .legal-header,
.responsible-gaming-policy-page .legal-header {
    padding: 5rem 3rem 3rem 3rem;
}

.terms-conditions-page .legal-content,
.cookies-policy-page .legal-content,
.gaming-policy-page .legal-content,
.responsible-gaming-policy-page .legal-content {
    padding: 0 3rem 5rem 3rem;
}

.terms-conditions-page .intro-text,
.cookies-policy-page .intro-text,
.gaming-policy-page .intro-text,
.responsible-gaming-policy-page .intro-text {
    padding: 4rem;
    margin-bottom: 4rem;
}

.terms-conditions-page .legal-section,
.cookies-policy-page .legal-section,
.gaming-policy-page .legal-section,
.responsible-gaming-policy-page .legal-section {
    margin-bottom: 4rem;
}

.terms-conditions-page .section-title,
.cookies-policy-page .section-title,
.gaming-policy-page .section-title,
.responsible-gaming-policy-page .section-title {
    margin-bottom: 2.5rem;
}

.terms-conditions-page .section-content,
.cookies-policy-page .section-content,
.gaming-policy-page .section-content,
.responsible-gaming-policy-page .section-content {
    padding-left: 1rem;
}

.terms-conditions-page .section-content h3,
.cookies-policy-page .section-content h3,
.gaming-policy-page .section-content h3,
.responsible-gaming-policy-page .section-content h3 {
    margin: 2.5rem 0 1.5rem 0;
}

.terms-conditions-page .section-content p,
.cookies-policy-page .section-content p,
.gaming-policy-page .section-content p,
.responsible-gaming-policy-page .section-content p {
    margin-bottom: 1.5rem;
}

.terms-conditions-page .section-content ul,
.cookies-policy-page .section-content ul,
.gaming-policy-page .section-content ul,
.responsible-gaming-policy-page .section-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.terms-conditions-page .section-content li,
.cookies-policy-page .section-content li,
.gaming-policy-page .section-content li,
.responsible-gaming-policy-page .section-content li {
    margin-bottom: 1rem;
}

.terms-conditions-page .contact-info,
.cookies-policy-page .contact-info,
.gaming-policy-page .contact-info,
.responsible-gaming-policy-page .contact-info {
    padding: 3rem;
    margin-top: 3rem;
}

/* Terms & Conditions Page - Full Width Dark Design */
.terms-conditions-page {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 30%, #16213e 70%, #0f0f23 100%);
    min-height: 100vh;
    padding: 0;
    margin: 0;
    width: 100%;
}

.terms-conditions-page .main-content {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 30%, #16213e 70%, #0f0f23 100%);
    padding: 0;
    margin: 0;
    width: 100%;
}

.terms-conditions-page .container {
    max-width: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
}

.terms-conditions-page .row {
    margin: 0;
    width: 100%;
}

.terms-conditions-page .col-lg-10 {
    max-width: 100%;
    width: 100%;
    padding: 0;
}

.terms-conditions-page .legal-page {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 30%, #16213e 70%, #0f0f23 100%);
    min-height: 100vh;
    padding: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.terms-conditions-page .legal-page::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: #f093fb;
    z-index: 1;
}

.terms-conditions-page .legal-header {
    padding: 4rem 2rem 2rem 2rem;
    margin-bottom: 0;
    border-bottom: none;
    position: relative;
    z-index: 2;
    text-align: left;
    width: 100%;
}

.terms-conditions-page .legal-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
}

.terms-conditions-page .legal-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0.5rem 0 0 0;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.terms-conditions-page .legal-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 2rem 4rem 2rem;
}

.terms-conditions-page .intro-text {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(240, 147, 251, 0.3);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.terms-conditions-page .intro-text p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

.terms-conditions-page .legal-section {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 3rem;
    backdrop-filter: none;
    box-shadow: none;
    transition: none;
}

.terms-conditions-page .legal-section:hover {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}

.terms-conditions-page .section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #f093fb;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(240, 147, 251, 0.3);
    letter-spacing: 0.5px;
    position: relative;
}

.terms-conditions-page .section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.terms-conditions-page .section-content {
    font-family: 'Roboto', sans-serif;
    line-height: 1.7;
}

.terms-conditions-page .section-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin: 2rem 0 1rem 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.terms-conditions-page .section-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.terms-conditions-page .section-content ul {
    color: rgba(255, 255, 255, 0.8);
    margin-left: 1.5rem;
    margin-bottom: 1.2rem;
}

.terms-conditions-page .section-content li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    line-height: 1.6;
}

.terms-conditions-page .section-content strong {
    color: #667eea;
    font-weight: 600;
}

.terms-conditions-page .contact-info {
    background: rgba(240, 147, 251, 0.15);
    border: 1px solid rgba(240, 147, 251, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 2rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.1);
}

.terms-conditions-page .contact-info p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.terms-conditions-page .contact-info strong {
    color: #f093fb;
    font-weight: 600;
}

/* Cookies Policy Page - Full Width Dark Design */
.cookies-policy-page {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 30%, #16213e 70%, #0f0f23 100%);
    min-height: 100vh;
    padding: 0;
    margin: 0;
    width: 100%;
}

.cookies-policy-page .main-content {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 30%, #16213e 70%, #0f0f23 100%);
    padding: 0;
    margin: 0;
    width: 100%;
}

.cookies-policy-page .container {
    max-width: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
}

.cookies-policy-page .row {
    margin: 0;
    width: 100%;
}

.cookies-policy-page .col-lg-10 {
    max-width: 100%;
    width: 100%;
    padding: 0;
}

.cookies-policy-page .legal-page {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 30%, #16213e 70%, #0f0f23 100%);
    min-height: 100vh;
    padding: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.cookies-policy-page .legal-page::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: #f093fb;
    z-index: 1;
}

.cookies-policy-page .legal-header {
    padding: 4rem 2rem 2rem 2rem;
    margin-bottom: 0;
    border-bottom: none;
    position: relative;
    z-index: 2;
    text-align: left;
    width: 100%;
}

.cookies-policy-page .legal-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
}

.cookies-policy-page .legal-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0.5rem 0 0 0;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.cookies-policy-page .legal-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 2rem 4rem 2rem;
}

.cookies-policy-page .intro-text {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(240, 147, 251, 0.3);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cookies-policy-page .intro-text p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

.cookies-policy-page .legal-section {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 3rem;
    backdrop-filter: none;
    box-shadow: none;
    transition: none;
}

.cookies-policy-page .legal-section:hover {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}

.cookies-policy-page .section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #f093fb;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(240, 147, 251, 0.3);
    letter-spacing: 0.5px;
    position: relative;
}

.cookies-policy-page .section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.cookies-policy-page .section-content {
    font-family: 'Roboto', sans-serif;
    line-height: 1.7;
}

.cookies-policy-page .section-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin: 2rem 0 1rem 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.cookies-policy-page .section-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.cookies-policy-page .section-content ul {
    color: rgba(255, 255, 255, 0.8);
    margin-left: 1.5rem;
    margin-bottom: 1.2rem;
}

.cookies-policy-page .section-content li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    line-height: 1.6;
}

.cookies-policy-page .section-content strong {
    color: #667eea;
    font-weight: 600;
}

.cookies-policy-page .contact-info {
    background: rgba(240, 147, 251, 0.15);
    border: 1px solid rgba(240, 147, 251, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 2rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.1);
}

.cookies-policy-page .contact-info p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.cookies-policy-page .contact-info strong {
    color: #f093fb;
    font-weight: 600;
}

/* Gaming Policy Page - Full Width Dark Design */
.gaming-policy-page {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 30%, #16213e 70%, #0f0f23 100%);
    min-height: 100vh;
    padding: 0;
    margin: 0;
    width: 100%;
}

.gaming-policy-page .main-content {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 30%, #16213e 70%, #0f0f23 100%);
    padding: 0;
    margin: 0;
    width: 100%;
}

.gaming-policy-page .container {
    max-width: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
}

.gaming-policy-page .row {
    margin: 0;
    width: 100%;
}

.gaming-policy-page .col-lg-10 {
    max-width: 100%;
    width: 100%;
    padding: 0;
}

.gaming-policy-page .legal-page {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 30%, #16213e 70%, #0f0f23 100%);
    min-height: 100vh;
    padding: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.gaming-policy-page .legal-page::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: #f093fb;
    z-index: 1;
}

.gaming-policy-page .legal-header {
    padding: 4rem 2rem 2rem 2rem;
    margin-bottom: 0;
    border-bottom: none;
    position: relative;
    z-index: 2;
    text-align: left;
    width: 100%;
}

.gaming-policy-page .legal-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
}

.gaming-policy-page .legal-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0.5rem 0 0 0;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.gaming-policy-page .legal-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 2rem 4rem 2rem;
}

.gaming-policy-page .intro-text {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(240, 147, 251, 0.3);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gaming-policy-page .intro-text p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

.gaming-policy-page .legal-section {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 3rem;
    backdrop-filter: none;
    box-shadow: none;
    transition: none;
}

.gaming-policy-page .legal-section:hover {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}

.gaming-policy-page .section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #f093fb;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(240, 147, 251, 0.3);
    letter-spacing: 0.5px;
    position: relative;
}

.gaming-policy-page .section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.gaming-policy-page .section-content {
    font-family: 'Roboto', sans-serif;
    line-height: 1.7;
}

.gaming-policy-page .section-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin: 2rem 0 1rem 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.gaming-policy-page .section-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.gaming-policy-page .section-content ul {
    color: rgba(255, 255, 255, 0.8);
    margin-left: 1.5rem;
    margin-bottom: 1.2rem;
}

.gaming-policy-page .section-content li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    line-height: 1.6;
}

.gaming-policy-page .section-content strong {
    color: #667eea;
    font-weight: 600;
}

.gaming-policy-page .contact-info {
    background: rgba(240, 147, 251, 0.15);
    border: 1px solid rgba(240, 147, 251, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 2rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.1);
}

.gaming-policy-page .contact-info p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.gaming-policy-page .contact-info strong {
    color: #f093fb;
    font-weight: 600;
}

/* Responsible Gaming Policy Page - Full Width Dark Design */
.responsible-gaming-policy-page {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 30%, #16213e 70%, #0f0f23 100%);
    min-height: 100vh;
    padding: 0;
    margin: 0;
    width: 100%;
}

.responsible-gaming-policy-page .main-content {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 30%, #16213e 70%, #0f0f23 100%);
    padding: 0;
    margin: 0;
    width: 100%;
}

.responsible-gaming-policy-page .container {
    max-width: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
}

.responsible-gaming-policy-page .row {
    margin: 0;
    width: 100%;
}

.responsible-gaming-policy-page .col-lg-10 {
    max-width: 100%;
    width: 100%;
    padding: 0;
}

.responsible-gaming-policy-page .legal-page {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 30%, #16213e 70%, #0f0f23 100%);
    min-height: 100vh;
    padding: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.responsible-gaming-policy-page .legal-page::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: #f093fb;
    z-index: 1;
}

.responsible-gaming-policy-page .legal-header {
    padding: 4rem 2rem 2rem 2rem;
    margin-bottom: 0;
    border-bottom: none;
    position: relative;
    z-index: 2;
    text-align: left;
    width: 100%;
}

.responsible-gaming-policy-page .legal-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
}

.responsible-gaming-policy-page .legal-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0.5rem 0 0 0;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.responsible-gaming-policy-page .legal-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 2rem 4rem 2rem;
}

.responsible-gaming-policy-page .intro-text {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(240, 147, 251, 0.3);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.responsible-gaming-policy-page .intro-text p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

.responsible-gaming-policy-page .legal-section {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 3rem;
    backdrop-filter: none;
    box-shadow: none;
    transition: none;
}

.responsible-gaming-policy-page .legal-section:hover {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}

.responsible-gaming-policy-page .section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #f093fb;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(240, 147, 251, 0.3);
    letter-spacing: 0.5px;
    position: relative;
}

.responsible-gaming-policy-page .section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.responsible-gaming-policy-page .section-content {
    font-family: 'Roboto', sans-serif;
    line-height: 1.7;
}

.responsible-gaming-policy-page .section-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin: 2rem 0 1rem 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.responsible-gaming-policy-page .section-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.responsible-gaming-policy-page .section-content ul {
    color: rgba(255, 255, 255, 0.8);
    margin-left: 1.5rem;
    margin-bottom: 1.2rem;
}

.responsible-gaming-policy-page .section-content li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    line-height: 1.6;
}

.responsible-gaming-policy-page .section-content strong {
    color: #667eea;
    font-weight: 600;
}

.responsible-gaming-policy-page .contact-info {
    background: rgba(240, 147, 251, 0.15);
    border: 1px solid rgba(240, 147, 251, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 2rem;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.1);
}

.responsible-gaming-policy-page .contact-info p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.responsible-gaming-policy-page .contact-info strong {
    color: #f093fb;
    font-weight: 600;
}

/* Cookie Table Styling */
.cookie-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(240, 147, 251, 0.2);
}

.cookie-table thead {
    background: rgba(240, 147, 251, 0.1);
}

.cookie-table th {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #f093fb;
    padding: 1.5rem 1rem;
    text-align: left;
    border-bottom: 2px solid rgba(240, 147, 251, 0.3);
    font-size: 1.1rem;
}

.cookie-table td {
    font-family: 'Roboto', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    padding: 1.2rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.6;
}

.cookie-table tbody tr:hover {
    background: rgba(240, 147, 251, 0.05);
}

.cookie-table tbody tr:last-child td {
    border-bottom: none;
}

.cookie-table strong {
    color: #f093fb;
    font-weight: 600;
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
    .legal-title {
        font-size: 2.5rem;
    }
    
    .legal-subtitle {
        font-size: 1rem;
    }
    
    .legal-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .section-content h3 {
        font-size: 1.1rem;
        margin: 1rem 0 0.8rem 0;
    }
    
    .section-content p,
    .section-content li {
        font-size: 0.95rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .legal-title {
        font-size: 2rem;
    }
    
    .legal-subtitle {
        font-size: 0.95rem;
    }
    
    .legal-section {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .section-title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .section-title::after {
        width: 30px;
        height: 2px;
    }
    
    .section-content h3 {
        font-size: 1rem;
        margin: 0.8rem 0 0.6rem 0;
    }
    
    .section-content p,
    .section-content li {
        font-size: 0.9rem;
    }
    
    .contact-info {
        padding: 0.8rem;
    }
    
    .contact-info p {
        font-size: 0.9rem;
    }
}

/* Responsive Design for Footer */
@media (max-width: 768px) {
    .custom-footer {
        padding: 2.5rem 0 1.5rem 0;
    }
    
    .footer-main {
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .footer-brand {
        padding-right: 0;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    
    .footer-description {
        text-align: center;
        margin-bottom: 1.5rem;
        max-width: 100%;
        font-size: 0.9rem;
    }
    
    .footer-contact {
        align-items: center;
        gap: 1rem;
    }
    
    .contact-item {
        justify-content: center;
        font-size: 0.9rem;
    }
    
    .footer-links {
        margin-bottom: 2rem;
        padding: 0 0.5rem;
        text-align: center;
    }
    
    .footer-title {
        text-align: center;
        margin-bottom: 1.2rem;
        font-size: 1.1rem;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-list {
        text-align: center;
    }
    
    .footer-list li {
        margin-bottom: 1rem;
    }
    
    .footer-list a {
        font-size: 0.9rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
        margin-top: 1rem;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
        margin-top: 0.8rem;
    }
    
    .copyright-text {
        text-align: center;
        margin-bottom: 0.8rem;
        font-size: 0.9rem;
    }
    
    .legal-links a {
        font-size: 0.9rem;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .custom-footer {
        padding: 2rem 0 1rem 0;
    }
    
    .footer-main {
        margin-bottom: 1.5rem;
    }
    
    .footer-brand {
        margin-bottom: 1.5rem;
    }
    
    .footer-logo {
        margin-bottom: 1.2rem;
    }
    
    .logo-icon {
        width: 45px;
        height: 45px;
        margin-right: 0.8rem;
    }
    
    .logo-letter,
    .logo-text {
        font-size: 1.3rem;
    }
    
    .footer-description {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }
    
    .footer-contact {
        gap: 0.8rem;
    }
    
    .contact-item {
        font-size: 0.85rem;
    }
    
    .footer-links {
        margin-bottom: 1.5rem;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-list li {
        margin-bottom: 0.8rem;
    }
    
    .footer-list a {
        font-size: 0.85rem;
    }
    
    .social-links {
        gap: 0.8rem;
        margin-top: 0.8rem;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
    }
    
    .social-link i {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding-top: 1.2rem;
        margin-top: 0.8rem;
    }
    
    .legal-links {
        gap: 1rem;
    }
    
    .copyright-text {
        font-size: 0.85rem;
    }
    
    .legal-links a {
        font-size: 0.85rem;
    }
}

/* About Page Styles */
.about-hero-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(240, 147, 251, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight-purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-description {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

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

.btn-get-started {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    border: none;
    display: inline-block;
}

.btn-get-started:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

.btn-more-templates {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-more-templates:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

.about-hero-graphic {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.abstract-graphic {
    position: relative;
    width: 400px;
    height: 400px;
}

.graphic-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    animation: float 6s ease-in-out infinite;
}

.graphic-1 {
    width: 200px;
    height: 200px;
    top: 0;
    left: 0;
    animation-delay: 0s;
    opacity: 0.8;
}

.graphic-2 {
    width: 150px;
    height: 150px;
    top: 100px;
    right: 0;
    animation-delay: 2s;
    opacity: 0.6;
}

.graphic-3 {
    width: 100px;
    height: 100px;
    bottom: 0;
    left: 150px;
    animation-delay: 4s;
    opacity: 0.4;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Features Section */
.about-features-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    padding: 5rem 0;
    position: relative;
}

.features-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.features-description {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.feature-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.feature-description {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Quality Section */
.about-quality-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    padding: 5rem 0;
}

.quality-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.quality-description {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-get-started-outline {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: inline-block;
}

.btn-get-started-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

.quality-mockups {
    position: relative;
}

.mockup-container {
    position: relative;
    height: 400px;
}

.mockup {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.mockup-1 {
    width: 300px;
    height: 200px;
    top: 0;
    left: 0;
    z-index: 2;
}

.mockup-2 {
    width: 250px;
    height: 150px;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.mockup-content {
    padding: 1.5rem;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.file-types {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    height: 100%;
    justify-content: center;
}

.file-type {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
}

.file-type i {
    font-size: 1.2rem;
}

.stats-chart {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 100%;
    justify-content: center;
}

.chart-bar {
    width: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    min-height: 20px;
}

/* Real-Time Section */
.about-realtime-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    padding: 5rem 0;
}

.realtime-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.realtime-description {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.realtime-mockups {
    position: relative;
}

.mockup-3 {
    width: 280px;
    height: 180px;
    top: 0;
    left: 0;
    z-index: 2;
}

.mockup-4 {
    width: 260px;
    height: 160px;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.user-avatars {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}

.chat-interface {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    height: 100%;
    justify-content: center;
}

.chat-message {
    display: flex;
    justify-content: flex-start;
}

.message-bubble {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.8rem;
    max-width: 80%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-description {
        font-size: 1rem;
    }
    
    .about-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-get-started,
    .btn-more-templates {
        text-align: center;
    }
    
    .about-hero-graphic {
        height: 300px;
        margin-top: 2rem;
    }
    
    .abstract-graphic {
        width: 250px;
        height: 250px;
    }
    
    .graphic-1 {
        width: 120px;
        height: 120px;
    }
    
    .graphic-2 {
        width: 100px;
        height: 100px;
    }
    
    .graphic-3 {
        width: 80px;
        height: 80px;
    }
    
    .features-main-title,
    .quality-title,
    .realtime-title {
        font-size: 2rem;
    }
    
    .mockup-container {
        height: 300px;
    }
    
    .mockup-1,
    .mockup-3 {
        width: 200px;
        height: 120px;
    }
    
    .mockup-2,
    .mockup-4 {
        width: 180px;
        height: 100px;
    }
}

/* Contact Page Styles */
.contact-hero-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 60vh;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.contact-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(240, 147, 251, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.contact-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Contact Information Section */
.contact-info-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    padding: 7rem 0 5rem 0;
    position: relative;
}

.contact-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #f093fb;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3rem;
}

.contact-info-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    border-color: rgba(240, 147, 251, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.contact-detail {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact-description {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Contact Form Section */
.contact-form-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    padding: 5rem 0;
}

.form-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #f093fb;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.form-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.form-description {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 0;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-control:focus {
    outline: none;
    border-color: #f093fb;
    box-shadow: 0 0 0 2px rgba(240, 147, 251, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.form-control:focus::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(240, 147, 251, 0.4);
    background: linear-gradient(135deg, #e085f0 0%, #f44a5c 100%);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Map Section */
.contact-map-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    padding: 0;
}

.map-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.3) contrast(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-main-title,
    .form-main-title {
        font-size: 2rem;
    }
    
    .contact-subtitle,
    .form-subtitle {
        font-size: 1rem;
    }
    
    .contact-form-container {
        padding: 2rem;
        margin-top: 2rem;
    }
    
    .contact-info-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-detail {
        font-size: 1.1rem;
    }
    
    .form-description {
        font-size: 1rem;
    }
}

/* Disclaimer Block Styles */
.disclaimer-block {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 30%, #16213e 70%, #0f0f23 100%);
    border: 1px solid rgba(240, 147, 251, 0.3);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.disclaimer-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(240, 147, 251, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.disclaimer-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.disclaimer-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    border: 2px solid rgba(240, 147, 251, 0.3);
}

.disclaimer-text {
    flex: 1;
}

.disclaimer-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
}

.disclaimer-description {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.disclaimer-highlight {
    color: #f093fb;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(240, 147, 251, 0.5);
}

.disclaimer-details {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}

/* Responsive Design for Disclaimer */
@media (max-width: 768px) {
    .disclaimer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .disclaimer-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .disclaimer-title {
        font-size: 1.5rem;
    }
    
    .disclaimer-description {
        font-size: 1rem;
    }
    
    .disclaimer-details {
        font-size: 0.9rem;
    }
    
    .disclaimer-block {
        padding: 2rem;
        margin: 2rem 0;
    }
}

/* Age Verification Modal Styles */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 2rem;
}

.age-modal-content {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    border-radius: 25px;
    padding: 3rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    border: 2px solid rgba(240, 147, 251, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.age-modal-header {
    margin-bottom: 2rem;
}

.age-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(240, 147, 251, 0.4);
}

.age-modal-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.age-modal-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.age-modal-body {
    margin-bottom: 2rem;
}

.age-form {
    text-align: left;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-control:focus {
    outline: none;
    border-color: #f093fb;
    box-shadow: 0 0 0 3px rgba(240, 147, 251, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-text {
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
    display: block;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-age-verify {
    flex: 1;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.3);
}

.btn-age-verify:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(240, 147, 251, 0.4);
    background: linear-gradient(135deg, #e085f0 0%, #f44a5c 100%);
}

.btn-age-exit {
    flex: 1;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-age-exit:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
    transform: translateY(-2px);
}

.age-modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.age-disclaimer {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

/* Responsive Design for Age Modal */
@media (max-width: 768px) {
    .age-modal {
        padding: 1rem;
    }
    
    .age-modal-content {
        padding: 2rem;
    }
    
    .age-modal-title {
        font-size: 1.5rem;
    }
    
    .age-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .age-buttons {
        flex-direction: column;
    }
    
    .btn-age-verify,
    .btn-age-exit {
        width: 100%;
    }
}
