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

:root {
    --graphite-gray: #2c3e50;
    --graphite-dark: #1a252f;
    --graphite-light: #34495e;
    --ivory-white: #f8f9fa;
    --ivory-light: #ffffff;
    --ivory-muted: #e9ecef;
    --royal-blue: #3498db;
    --royal-blue-dark: #2980b9;
    --royal-blue-light: #5dade2;
    --accent-gold: #f39c12;
    --text-primary: #f8f9fa;
    --text-secondary: #bdc3c7;
    --border-color: #34495e;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.2);
    --shadow-dark: rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--graphite-gray);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    color: var(--royal-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--royal-blue-light);
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--graphite-dark) 0%, var(--graphite-gray) 100%);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 20px var(--shadow-dark);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo a {
    font-size: 2rem;
    font-weight: 700;
    color: var(--ivory-white);
    text-decoration: none;
    background: linear-gradient(45deg, var(--ivory-white), var(--royal-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-link:hover {
    background-color: var(--graphite-light);
    color: var(--royal-blue);
}

/* Dropdown Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--graphite-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 10px 30px var(--shadow-dark);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: var(--royal-blue);
    color: var(--ivory-white);
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

/* Play Now Button */
.play-now-btn {
    background: linear-gradient(45deg, var(--royal-blue), var(--royal-blue-dark));
    color: var(--ivory-white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-medium);
}

.play-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-dark);
    background: linear-gradient(45deg, var(--royal-blue-dark), var(--royal-blue));
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--ivory-white);
    transition: all 0.3s ease;
}

/* Banner Section */
.banner {
    margin-top: 80px;
    background: linear-gradient(135deg, var(--graphite-gray) 0%, var(--royal-blue) 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.banner-gradient {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(52, 152, 219, 0.1) 100%);
    pointer-events: none;
}

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

.banner-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--ivory-white);
    line-height: 1.1;
}

.banner-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 400;
}

.cta-button {
    background: linear-gradient(45deg, var(--accent-gold), #e67e22);
    color: var(--ivory-white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px var(--shadow-medium);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-dark);
}

.banner-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-preview {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.preview-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.preview-card h3 {
    color: var(--ivory-white);
    margin-bottom: 0.5rem;
}

.preview-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-content {
    text-align: center;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    color: var(--ivory-white);
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--royal-blue), var(--accent-gold));
    border-radius: 2px;
}

.section-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Who We Are & About Section */
.who-we-are-about {
    background-color: var(--graphite-dark);
    padding: 5rem 0;
}

.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.column {
    display: flex;
    flex-direction: column;
}

.content-block {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.content-block .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.content-block .section-title::after {
    left: 0;
    transform: none;
}

.content-block .section-text {
    text-align: left;
    margin-bottom: 2rem;
}

.features-list,
.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item,
.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover,
.highlight-item:hover {
    transform: translateX(5px);
    border-color: var(--royal-blue);
    background: rgba(255, 255, 255, 0.05);
}

.feature-icon,
.highlight-icon {
    font-size: 1.5rem;
    min-width: 40px;
    text-align: center;
}

.feature-item h4,
.highlight-item h4 {
    color: var(--ivory-white);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.feature-item p,
.highlight-item p {
    color: var(--text-secondary);
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.about-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-dark);
    border-color: var(--royal-blue);
}

.about-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-item h3 {
    color: var(--ivory-white);
    margin-bottom: 1rem;
}

.about-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Games Section */
.games-section {
    background-color: var(--graphite-dark);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.games-grid.four-columns {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.game-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-dark);
    border-color: var(--royal-blue);
}

.game-image {
    height: 200px;
    background: linear-gradient(135deg, var(--graphite-light), var(--royal-blue));
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image {
    font-size: 4rem;
    color: var(--ivory-white);
}

.game-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
    transition: transform 0.3s ease;
}

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

.game-info {
    padding: 1.5rem;
}

.game-title {
    color: var(--ivory-white);
    margin-bottom: 0.5rem;
}

.game-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.game-play-btn {
    display: inline-block;
    background: linear-gradient(45deg, var(--royal-blue), var(--royal-blue-dark));
    color: var(--ivory-white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-medium);
}

.game-play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-dark);
    background: linear-gradient(45deg, var(--royal-blue-dark), var(--royal-blue));
}

/* Advantages Section */
.advantages-section {
    background-color: var(--graphite-gray);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.advantages-grid.five-columns {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

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

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-dark);
    border-color: var(--royal-blue);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.advantage-item h3 {
    color: var(--ivory-white);
    margin-bottom: 1rem;
}

.advantage-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    background-color: var(--graphite-dark);
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

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

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    color: var(--ivory-white);
    margin-bottom: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--royal-blue);
    font-weight: bold;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: var(--graphite-dark);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: var(--ivory-white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--royal-blue);
}

.disclaimer {
    color: var(--accent-gold) !important;
    font-weight: 600;
}

.copyright {
    color: var(--text-secondary) !important;
    font-size: 0.9rem;
}

.additional-info {
    color: var(--text-secondary) !important;
    font-size: 0.9rem;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .banner-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .banner-title {
        font-size: 2.5rem;
    }
    
    .banner-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-grid,
    .games-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .games-grid.four-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .advantages-grid.five-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .banner {
        padding: 3rem 0;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .cta-button,
    .play-now-btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .games-grid.four-columns {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .advantages-grid.five-columns {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

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

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

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

/* Hover Effects */
.game-card:hover .game-image {
    background: linear-gradient(135deg, var(--royal-blue), var(--accent-gold));
}

.about-item:hover .about-icon,
.advantage-item:hover .advantage-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Game Page Styles */
.game-page-section {
    margin-top: 80px;
    padding: 3rem 0;
    background-color: var(--graphite-dark);
}

.game-page-content {
    max-width: 1000px;
    margin: 0 auto;
}

.game-header {
    text-align: center;
    margin-bottom: 3rem;
}

.game-page-title {
    font-size: 3rem;
    color: var(--ivory-white);
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--ivory-white), var(--royal-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-page-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.game-container {
    margin-bottom: 3rem;
}

.game-iframe-container {
    width: 100%;
    height: 600px;
    background: var(--graphite-light);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    box-shadow: 0 10px 30px var(--shadow-dark);
}

.game-iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

.game-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--graphite-light), var(--royal-blue));
}

.placeholder-content {
    text-align: center;
    color: var(--ivory-white);
}

.placeholder-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.placeholder-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--ivory-white);
}

.placeholder-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid var(--royal-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.game-description-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-description-section h2 {
    color: var(--ivory-white);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.game-description-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.game-features {
    margin: 2rem 0;
}

.game-features h3 {
    color: var(--ivory-white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.game-features ul {
    list-style: none;
    padding: 0;
}

.game-features li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
}

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

.game-info-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    border-left: 4px solid var(--accent-gold);
    margin-top: 2rem;
}

.game-info-box h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.game-info-box p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.game-info-box p:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments for game pages */
@media (max-width: 768px) {
    .game-page-title {
        font-size: 2.5rem;
    }
    
    .game-iframe-container {
        height: 400px;
    }
    
    .game-iframe {
        height: 100%;
    }
    
    .game-page-content {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .game-page-title {
        font-size: 2rem;
    }
    
    .game-iframe-container {
        height: 300px;
    }
    
    .game-iframe {
        height: 100%;
    }
    
    .placeholder-icon {
        font-size: 3rem;
    }
    
    .placeholder-content h3 {
        font-size: 1.25rem;
    }
}

/* About Page Styles */
.about-page-section {
    margin-top: 80px;
    padding: 3rem 0;
    background-color: var(--graphite-dark);
}

.about-page-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.about-page-title {
    font-size: 3.5rem;
    color: var(--ivory-white);
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--ivory-white), var(--royal-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-page-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.about-intro h2,
.about-values h2,
.about-story h2,
.about-features h2,
.about-commitment h2,
.about-cta h2 {
    color: var(--ivory-white);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    text-align: center;
}

.about-intro p,
.about-story p,
.about-commitment p,
.about-cta p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

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

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-dark);
    border-color: var(--royal-blue);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-item h3 {
    color: var(--ivory-white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.value-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: center;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-dark);
    border-color: var(--royal-blue);
}

.feature-item h3 {
    color: var(--ivory-white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: left;
}

.about-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-cta .cta-button {
    margin-top: 1.5rem;
}

/* Responsive adjustments for about page */
@media (max-width: 768px) {
    .about-page-title {
        font-size: 2.5rem;
    }
    
    .about-page-subtitle {
        font-size: 1.25rem;
    }
    
    .about-content {
        gap: 3rem;
    }
    
    .values-grid,
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .about-cta {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .about-page-title {
        font-size: 2rem;
    }
    
    .about-page-subtitle {
        font-size: 1.1rem;
    }
    
    .about-intro h2,
    .about-values h2,
    .about-story h2,
    .about-features h2,
    .about-commitment h2,
    .about-cta h2 {
        font-size: 2rem;
    }
    
    .about-cta {
        padding: 1.5rem;
    }
}

/* Privacy Page Styles */
.privacy-page-section {
    margin-top: 80px;
    padding: 3rem 0;
    background-color: var(--graphite-dark);
}

.privacy-page-content {
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-header {
    text-align: center;
    margin-bottom: 4rem;
}

.privacy-page-title {
    font-size: 3.5rem;
    color: var(--ivory-white);
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--ivory-white), var(--royal-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-page-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.privacy-date {
    color: var(--accent-gold);
    font-size: 1rem;
    font-weight: 500;
}

.privacy-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.privacy-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-section h2 {
    color: var(--ivory-white);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    border-bottom: 2px solid var(--royal-blue);
    padding-bottom: 0.5rem;
}

.privacy-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.privacy-section ul {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

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

.info-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-type {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-type h3 {
    color: var(--ivory-white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-type p {
    margin-bottom: 1rem;
}

.usage-list,
.rights-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.usage-item,
.right-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.usage-item:hover,
.right-item:hover {
    transform: translateY(-3px);
    border-color: var(--royal-blue);
}

.usage-item h3,
.right-item h3 {
    color: var(--ivory-white);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.usage-item p,
.right-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.disclosure-list {
    margin-top: 1rem;
}

.disclosure-list li {
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-left: 3px solid var(--royal-blue);
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.security-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.security-item:hover {
    transform: translateY(-3px);
    border-color: var(--accent-gold);
}

.security-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.security-item h3 {
    color: var(--ivory-white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.security-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-info {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 1rem;
}

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

.contact-info p:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments for privacy page */
@media (max-width: 768px) {
    .privacy-page-title {
        font-size: 2.5rem;
    }
    
    .privacy-page-subtitle {
        font-size: 1.25rem;
    }
    
    .privacy-content {
        gap: 2rem;
    }
    
    .info-types,
    .usage-list,
    .rights-list,
    .security-features {
        grid-template-columns: 1fr;
    }
    
    .privacy-section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .privacy-page-title {
        font-size: 2rem;
    }
    
    .privacy-page-subtitle {
        font-size: 1.1rem;
    }
    
    .privacy-section h2 {
        font-size: 1.75rem;
    }
    
    .privacy-section {
        padding: 1rem;
    }
}

/* Terms Page Styles */
.terms-page-section {
    margin-top: 80px;
    padding: 3rem 0;
    background-color: var(--graphite-dark);
}

.terms-page-content {
    max-width: 1000px;
    margin: 0 auto;
}

.terms-header {
    text-align: center;
    margin-bottom: 4rem;
}

.terms-page-title {
    font-size: 3.5rem;
    color: var(--ivory-white);
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--ivory-white), var(--royal-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.terms-page-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.terms-date {
    color: var(--accent-gold);
    font-size: 1rem;
    font-weight: 500;
}

.terms-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.terms-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-section h2 {
    color: var(--ivory-white);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    border-bottom: 2px solid var(--royal-blue);
    padding-bottom: 0.5rem;
}

.terms-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.terms-section ul {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

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

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-feature {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.service-feature:hover {
    transform: translateY(-3px);
    border-color: var(--royal-blue);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-feature h3 {
    color: var(--ivory-white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-feature p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.eligibility-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.eligibility-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.eligibility-item:hover {
    transform: translateY(-3px);
    border-color: var(--royal-blue);
}

.eligibility-item h3 {
    color: var(--ivory-white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.eligibility-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.account-features {
    margin: 1rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border-left: 3px solid var(--royal-blue);
}

.prohibited-actions {
    margin-top: 1rem;
}

.prohibited-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.prohibited-item h3 {
    color: var(--ivory-white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.prohibited-item ul {
    margin: 0;
    padding-left: 1.5rem;
}

.gambling-disclaimer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.disclaimer-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.disclaimer-item:hover {
    transform: translateY(-3px);
    border-color: var(--accent-gold);
}

.disclaimer-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.disclaimer-item h3 {
    color: var(--ivory-white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.disclaimer-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive adjustments for terms page */
@media (max-width: 768px) {
    .terms-page-title {
        font-size: 2.5rem;
    }
    
    .terms-page-subtitle {
        font-size: 1.25rem;
    }
    
    .terms-content {
        gap: 2rem;
    }
    
    .service-features,
    .eligibility-list,
    .gambling-disclaimer {
        grid-template-columns: 1fr;
    }
    
    .terms-section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .terms-page-title {
        font-size: 2rem;
    }
    
    .terms-page-subtitle {
        font-size: 1.1rem;
    }
    
    .terms-section h2 {
        font-size: 1.75rem;
    }
    
    .terms-section {
        padding: 1rem;
    }
}

/* Cookies Page Styles */
.cookies-page-section {
    margin-top: 80px;
    padding: 3rem 0;
    background-color: var(--graphite-dark);
}

.cookies-page-content {
    max-width: 1000px;
    margin: 0 auto;
}

.cookies-header {
    text-align: center;
    margin-bottom: 4rem;
}

.cookies-page-title {
    font-size: 3.5rem;
    color: var(--ivory-white);
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--ivory-white), var(--royal-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cookies-page-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.cookies-date {
    color: var(--accent-gold);
    font-size: 1rem;
    font-weight: 500;
}

.cookies-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.cookies-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookies-section h2 {
    color: var(--ivory-white);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    border-bottom: 2px solid var(--royal-blue);
    padding-bottom: 0.5rem;
}

.cookies-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.cookies-section ul {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

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

.cookie-purposes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.purpose-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.purpose-item:hover {
    transform: translateY(-3px);
    border-color: var(--royal-blue);
}

.purpose-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.purpose-item h3 {
    color: var(--ivory-white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.purpose-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.cookie-type {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.cookie-type:hover {
    transform: translateY(-3px);
    border-color: var(--royal-blue);
}

.cookie-type h3 {
    color: var(--ivory-white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.cookie-type p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.cookie-examples {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    padding: 1rem;
    border-left: 3px solid var(--accent-gold);
}

.cookie-examples strong {
    color: var(--accent-gold);
}

.third-party-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-3px);
    border-color: var(--royal-blue);
}

.service-item h3 {
    color: var(--ivory-white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.cookie-management {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.management-option {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.management-option:hover {
    transform: translateY(-3px);
    border-color: var(--royal-blue);
}

.management-option h3 {
    color: var(--ivory-white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.management-option p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.cookie-preferences {
    margin: 2rem 0;
}

.preference-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.preference-item:hover {
    border-color: var(--royal-blue);
}

.preference-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 1rem;
}

.preference-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--royal-blue);
}

.preference-text {
    display: flex;
    flex-direction: column;
}

.preference-text strong {
    color: var(--ivory-white);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.preference-text small {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.save-preferences-btn {
    background: linear-gradient(45deg, var(--royal-blue), var(--royal-blue-dark));
    color: var(--ivory-white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-medium);
    margin-top: 1rem;
}

.save-preferences-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-dark);
    background: linear-gradient(45deg, var(--royal-blue-dark), var(--royal-blue));
}

.impact-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.impact-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.impact-item:hover {
    transform: translateY(-3px);
    border-color: var(--accent-gold);
}

.impact-item h3 {
    color: var(--ivory-white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.impact-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive adjustments for cookies page */
@media (max-width: 768px) {
    .cookies-page-title {
        font-size: 2.5rem;
    }
    
    .cookies-page-subtitle {
        font-size: 1.25rem;
    }
    
    .cookies-content {
        gap: 2rem;
    }
    
    .cookie-purposes,
    .cookie-types,
    .third-party-services,
    .cookie-management,
    .impact-list {
        grid-template-columns: 1fr;
    }
    
    .cookies-section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .cookies-page-title {
        font-size: 2rem;
    }
    
    .cookies-page-subtitle {
        font-size: 1.1rem;
    }
    
    .cookies-section h2 {
        font-size: 1.75rem;
    }
    
    .cookies-section {
        padding: 1rem;
    }
    
    .preference-label {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Responsible Gaming Page Styles */
.responsible-gaming-section {
    margin-top: 80px;
    padding: 3rem 0;
    background-color: var(--graphite-dark);
}

.responsible-gaming-content {
    max-width: 1000px;
    margin: 0 auto;
}

.responsible-gaming-header {
    text-align: center;
    margin-bottom: 4rem;
}

.responsible-gaming-title {
    font-size: 3.5rem;
    color: var(--ivory-white);
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--ivory-white), var(--royal-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.responsible-gaming-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.rg-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 3rem;
}

.rg-section h2 {
    color: var(--ivory-white);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    border-bottom: 2px solid var(--royal-blue);
    padding-bottom: 0.5rem;
}

.rg-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.rg-section ul {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

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

.rg-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.principle-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.principle-item:hover {
    transform: translateY(-3px);
    border-color: var(--royal-blue);
}

.principle-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.principle-item h3 {
    color: var(--ivory-white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.principle-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.warning-signs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.warning-category {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.warning-category:hover {
    transform: translateY(-3px);
    border-color: var(--accent-gold);
}

.warning-category h3 {
    color: var(--ivory-white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.warning-category ul {
    margin: 0;
    padding-left: 1.5rem;
}

.healthy-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tip-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.tip-item:hover {
    transform: translateY(-3px);
    border-color: var(--royal-blue);
}

.tip-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tip-item h3 {
    color: var(--ivory-white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.tip-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.parental-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.parental-tip {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.parental-tip:hover {
    transform: translateY(-3px);
    border-color: var(--royal-blue);
}

.parental-tip h3 {
    color: var(--ivory-white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.parental-tip p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.help-resources {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.resource-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.resource-item:hover {
    transform: translateY(-3px);
    border-color: var(--royal-blue);
}

.resource-item h3 {
    color: var(--ivory-white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.resource-item ul {
    margin: 0;
    padding-left: 1.5rem;
}

.resource-item li {
    margin-bottom: 0.5rem;
}

.platform-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.platform-feature {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.platform-feature:hover {
    transform: translateY(-3px);
    border-color: var(--accent-gold);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.platform-feature h3 {
    color: var(--ivory-white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.platform-feature p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.remember-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid var(--accent-gold);
    text-align: center;
    margin-top: 1rem;
}

.remember-box p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.remember-box p:last-child {
    margin-bottom: 0;
}

.remember-box strong {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

/* Responsive adjustments for responsible gaming page */
@media (max-width: 768px) {
    .responsible-gaming-title {
        font-size: 2.5rem;
    }
    
    .responsible-gaming-subtitle {
        font-size: 1.25rem;
    }
    
    .rg-principles,
    .warning-signs,
    .healthy-tips,
    .parental-tips,
    .help-resources,
    .platform-features {
        grid-template-columns: 1fr;
    }
    
    .rg-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .responsible-gaming-title {
        font-size: 2rem;
    }
    
    .responsible-gaming-subtitle {
        font-size: 1.1rem;
    }
    
    .rg-section h2 {
        font-size: 1.75rem;
    }
    
    .rg-section {
        padding: 1rem;
    }
    
    .remember-box {
        padding: 1.5rem;
    }
}
