/* venzelazino.org - Custom Styles */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 50%, #9b59b6 100%);
    min-height: 100vh;
}

/* Navigation Styles */
.venzelazino-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.venzelazino-navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #2c3e50;
    font-weight: bold;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.venzelazino-navbar-brand:hover {
    color: #3498db;
}

.venzelazino-navbar-logo {
    height: 40px;
    width: auto;
    margin-right: 0.8rem;
    border-radius: 8px;
}

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

.venzelazino-navbar-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.venzelazino-navbar-link:hover,
.venzelazino-navbar-link.active {
    color: #3498db;
    background: rgba(52, 152, 219, 0.1);
    transform: translateY(-2px);
}

.venzelazino-navbar-cta {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white !important;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.venzelazino-navbar-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
    background: linear-gradient(45deg, #2980b9, #3498db);
}

/* Mobile Navigation */
.venzelazino-navbar-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.venzelazino-navbar-toggle:hover {
    background: rgba(52, 152, 219, 0.1);
}

.venzelazino-navbar-toggle-bar {
    width: 25px;
    height: 3px;
    background: #3498db;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .venzelazino-navbar-toggle {
        display: flex;
    }
    
    .venzelazino-navbar-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .venzelazino-navbar-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .venzelazino-navbar-link {
        padding: 1rem;
        text-align: center;
        width: 100%;
        border-radius: 10px;
        margin: 0.5rem 0;
    }
}

/* Hero Section */
.venzelazino-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 50%, #9b59b6 100%);
    color: white;
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.venzelazino-hero::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.venzelazino-hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #fff, #f8f9fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.venzelazino-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.8;
}

.venzelazino-hero-cta {
    display: inline-block;
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
    position: relative;
    overflow: hidden;
}

.venzelazino-hero-cta::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;
}

.venzelazino-hero-cta:hover::before {
    left: 100%;
}

.venzelazino-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(52, 152, 219, 0.5);
}

/* Section Styles */
.venzelazino-section {
    padding: 6rem 0;
    background: white;
}

.venzelazino-section-alt {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.venzelazino-section-title {
    font-size: 2.8rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    position: relative;
}

.venzelazino-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 2px;
}

.venzelazino-section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Grid */
.venzelazino-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.venzelazino-feature-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(142, 68, 173, 0.1);
    position: relative;
    overflow: hidden;
}

.venzelazino-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #3498db, #2980b9);
}

.venzelazino-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.venzelazino-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(142, 68, 173, 0.3);
}

.venzelazino-feature-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.venzelazino-feature-desc {
    color: #7f8c8d;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Games Grid */
.venzelazino-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.venzelazino-game-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(142, 68, 173, 0.1);
}

.venzelazino-game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.venzelazino-game-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.venzelazino-game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.venzelazino-game-content {
    padding: 2rem;
}

.venzelazino-game-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.venzelazino-game-desc {
    color: #7f8c8d;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.venzelazino-game-play {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.venzelazino-game-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
    background: linear-gradient(45deg, #2980b9, #3498db);
}

/* Stats Grid */
.venzelazino-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.venzelazino-stat-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(142, 68, 173, 0.1);
}

.venzelazino-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.venzelazino-stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #3498db;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #3498db, #2980b9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.venzelazino-stat-label {
    color: #7f8c8d;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Testimonials */
.venzelazino-testimonial-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    border: 1px solid rgba(142, 68, 173, 0.1);
}

.venzelazino-testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    color: #3498db;
    font-weight: bold;
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(142, 68, 173, 0.2);
}

.venzelazino-testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.venzelazino-testimonial-name {
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.venzelazino-testimonial-location {
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Footer */
.venzelazino-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 4rem 0 2rem;
}

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

.venzelazino-footer-section h3 {
    color: #3498db;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.venzelazino-footer-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #bdc3c7;
}

.venzelazino-footer-section a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.venzelazino-footer-section a:hover {
    color: #9b59b6;
}

.venzelazino-footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

/* Cookie Consent */
.venzelazino-cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1.5rem 2rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.venzelazino-cookie-consent.show {
    transform: translateY(0);
}

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

.venzelazino-cookie-text {
    flex: 1;
    font-size: 1rem;
    line-height: 1.6;
}

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

.venzelazino-cookie-policy {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.venzelazino-cookie-policy:hover {
    color: #9b59b6;
}

.venzelazino-cookie-accept {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(142, 68, 173, 0.3);
}

.venzelazino-cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 68, 173, 0.4);
}

@media (max-width: 768px) {
    .venzelazino-cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .venzelazino-cookie-buttons {
        justify-content: center;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .venzelazino-hero-title {
        font-size: 2.5rem;
    }
    
    .venzelazino-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .venzelazino-section-title {
        font-size: 2.2rem;
    }
    
    .venzelazino-features-grid,
    .venzelazino-games-grid,
    .venzelazino-stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .venzelazino-hero {
        padding: 6rem 0 4rem;
    }
    
    .venzelazino-section {
        padding: 4rem 0;
    }
}

/* Contact Grid Styles */
.venzelazino-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 768px) {
    .venzelazino-contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .venzelazino-contact-grid h2 {
        font-size: 1.5rem !important;
    }
    
    .venzelazino-contact-grid input,
    .venzelazino-contact-grid select,
    .venzelazino-contact-grid textarea {
        font-size: 16px !important; /* Prevents zoom on iOS */
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .venzelazino-contact-grid p {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }
.p-4 { padding: 2rem; }

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.venzelazino-loading {
    animation: pulse 2s infinite;
}

/* Additional Utility Classes from PHP Files */

/* Max-width container */
.content-max-width {
    max-width: 900px;
    margin: 0 auto;
}

/* Paragraph styling */
.content-paragraph {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #2c3e50;
    margin-bottom: 2.5rem;
}

/* Last updated paragraph */
.last-updated {
    color: #7f8c8d;
    margin-bottom: 3rem;
    font-style: italic;
    font-size: 1.1rem;
}

/* Section heading */
.content-heading {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 2rem;
}

/* List styling */
.content-list {
    color: #2c3e50;
    line-height: 1.9;
    margin-bottom: 2.5rem;
    padding-left: 2.5rem;
    font-size: 1.1rem;
}

/* Sub-heading */
.content-sub-heading {
    color: #e74c3c;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

/* Team member avatar */
.team-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #8e44ad, #9b59b6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2.5rem;
}

/* Role title */
.role-title {
    color: #8e44ad;
    font-weight: bold;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

/* Info box */
.info-box {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

/* Contact info box */
.contact-info-box {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2.5rem;
}

/* Contact info paragraph */
.contact-info-paragraph {
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

/* Stats container */
.stats-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* Stats item */
.stats-item {
    text-align: center;
}

/* Stats number */
.stats-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #8e44ad;
    display: block;
}

/* Stats label */
.stats-label {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
}

/* Game badge */
.game-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #8e44ad;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

/* Icon container in stats */
.icon-container {
    margin-top: 1.5rem;
    color: #8e44ad;
    font-size: 2.5rem;
}

/* Info block */
.info-block {
    background: #e8f4fd;
    border: 1px solid #bee5eb;
    border-radius: 15px;
    padding: 2rem;
}

/* Info block text */
.info-block-text {
    color: #0c5460;
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Disclaimer box */
.disclaimer-box {
    background: #e8f4fd;
    border: 1px solid #bee5eb;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

/* Form styling */
.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

/* Form label */
.form-label {
    display: block;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Form input */
.form-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #ecf0f1;
    border-radius: 10px;
    font-size: 1.1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    border-color: #3498db;
    outline: none;
}

/* Form button */
.form-button {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.form-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

/* Message div */
.form-message {
    margin-top: 1.5rem;
    padding: 1.5rem;
    border-radius: 10px;
    display: none;
}

/* Testimonial text */
.testimonial-text {
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Section title inline */
.section-title-inline {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

/* Contact paragraph */
.contact-paragraph {
    color: #7f8c8d;
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
}

/* Content card */
.content-card {
    background: white;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* FAQ card */
.faq-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

/* FAQ heading */
.faq-heading {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

/* FAQ paragraph */
.faq-paragraph {
    color: #7f8c8d;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* News date badge */
.news-date-badge {
    background: linear-gradient(45deg, #8e44ad, #9b59b6);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-right: 1rem;
    font-weight: bold;
}

/* News header */
.news-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

/* News title */
.news-title {
    margin: 0;
    color: #2c3e50;
}

/* News description */
.news-description {
    color: #7f8c8d;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* News link */
.news-link {
    color: #8e44ad;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
}

/* News link icon */
.news-link-icon {
    margin-left: 0.5rem;
}

/* Footer disclaimer box */
.footer-disclaimer {
    background: #34495e;
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem 0;
}

/* Footer disclaimer text */
.footer-disclaimer-text {
    color: #bdc3c7;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Footer disclaimer strong */
.footer-disclaimer-strong {
    color: #3498db;
}

/* Footer disclaimer link */
.footer-disclaimer-link {
    color: #3498db;
}

/* Centered container */
.centered-container {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

/* Onclick inline fix */
.contact-button-inline {
    /* This is handled by JS */
}

/* Policy page specific styles */
.policy-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.policy-card {
    background: white;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.policy-paragraph {
    color: #2c3e50;
    line-height: 1.9;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.policy-section-heading {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.policy-list {
    color: #2c3e50;
    line-height: 1.9;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.policy-paragraph-mb {
    color: #2c3e50;
    line-height: 1.9;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.policy-contact-box {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2.5rem;
}

.policy-contact-para {
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.policy-contact-para-last {
    color: #2c3e50;
    margin-bottom: 0;
    font-size: 1.1rem;
}

.policy-note-box {
    background: #e8f4fd;
    border: 1px solid #bee5eb;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 3rem;
}

.policy-note-text {
    color: #0c5460;
    line-height: 1.8;
    margin: 0;
    font-size: 1.1rem;
}

/* Additional utility classes to replace remaining inline styles */

/* Game card with relative positioning */
.game-card-relative {
    position: relative;
}

/* Stats/rating spacing */
.stats-spacing {
    margin-top: 1rem;
}

.stats-item-inline {
    margin-right: 1.5rem;
}

/* Text center with margin */
.text-center-mt {
    text-align: center;
    margin-top: 3rem;
}

/* Sub-heading with color override */
.sub-heading-blue {
    color: #3498db !important;
}

/* Small text gray */
.text-small-gray {
    color: #7f8c8d;
}

/* Link styles */
.link-blue {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

.link-blue:hover {
    color: #2980b9;
}

/* Textarea resize */
.textarea-resize {
    resize: vertical;
}

/* Mobile responsive additions */
@media (max-width: 768px) {
    .content-card, .policy-card {
        padding: 2rem;
    }
    
    .contact-form {
        padding: 2rem 1rem;
    }
    
    .stats-container {
        gap: 1.5rem;
    }
}
