/* critvora.online - Gaming Casino Website Styles */
/* Based on Gamic template design */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', 'Open Sans', sans-serif;
    background-color: #1A1A2E;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 140px; /* More space on mobile */
    }
}

@media (max-width: 480px) {
    body {
        padding-bottom: 160px; /* Even more space on small screens */
    }
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2.2rem; }
h4 { font-size: 1.8rem; }

p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #E0E0E0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.btn-secondary {
    background: #ffffff;
    color: #1A1A2E;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: transparent;
    color: #ffffff;
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 2px solid rgba(76, 175, 80, 0.3);
}

.header.scrolled {
    background: rgba(26, 26, 46, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-shield {
    width: 40px;
    height: 45px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 8px 8px 12px 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.logo-shield::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ffffff, #E0E0E0);
    border-radius: 10px 10px 14px 14px;
    z-index: -1;
}

.logo-controller {
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 50%;
    position: relative;
}

.logo-controller::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff, #E0E0E0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-item {
    margin: 0;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4CAF50;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #4CAF50;
}

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

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    text-align: center;
    padding: 20px;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 40px;
}

.mobile-nav-item {
    margin: 20px 0;
}

.mobile-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #4CAF50;
}

.mobile-menu-actions {
    margin-top: 30px;
}

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

/* Responsive Header */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .header-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo-text {
        font-size: 1.5rem;
        letter-spacing: 1.5px;
    }
    
    .logo-shield {
        width: 35px;
        height: 40px;
    }
    
    .logo-controller {
        width: 18px;
        height: 18px;
    }
    
    .logo-controller::before {
        width: 7px;
        height: 7px;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 10px 0;
    }
    
    .logo-text {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }
    
    .logo-shield {
        width: 30px;
        height: 35px;
    }
    
    .logo-controller {
        width: 16px;
        height: 16px;
    }
    
    .logo-controller::before {
        width: 6px;
        height: 6px;
    }
    
    .mobile-nav-link {
        font-size: 1.3rem;
    }
}

/* Main Content Padding for Fixed Header */
body {
    padding-top: 80px; /* Space for fixed header */
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
        padding-bottom: 140px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 60px;
        padding-bottom: 160px;
    }
}

/* Responsive Text and Images */
.hero-title,
.section-title,
.game-hero-title,
.about-hero-title,
.commitment-text h2,
.responsible-text h2,
.featured-text h2 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.hero-description,
.section-description,
.game-hero-description,
.about-hero-description,
.commitment-text p,
.responsible-text p,
.featured-text p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Responsive Images */
.hero-image img,
.game-hero-img,
.about-hero-img,
.game-preview-image,
.responsible-gaming-img,
.mission-img,
.commitment-img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

/* Responsive Grid Layouts */
.features-grid,
.safety-grid,
.values-grid,
.testimonials-grid,
.stats-grid {
    display: grid;
    gap: 30px;
}

@media (max-width: 768px) {
    .features-grid,
    .safety-grid,
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .features-grid,
    .safety-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Responsive Content Sections */
.hero-content,
.featured-content,
.responsible-content,
.commitment-content {
    display: grid;
    gap: 60px;
}

@media (max-width: 768px) {
    .hero-content,
    .featured-content,
    .responsible-content,
    .commitment-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content,
    .featured-content,
    .responsible-content,
    .commitment-content {
        gap: 30px;
    }
}

/* Page Header */
.page-header {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #1A1A2E, #16213E);
}

.page-title {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
}

.breadcrumb-item {
    color: #E0E0E0;
    text-transform: uppercase;
}

.breadcrumb-separator {
    color: #4CAF50;
    font-weight: 700;
}

.breadcrumb-item.active {
    color: #4CAF50;
    font-weight: 700;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.2rem;
    color: #E0E0E0;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213E, #1A1A2E);
    position: relative;
    overflow: hidden;
}

.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(76, 175, 80, 0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 500px;
}

.hero-subtitle {
    color: #4CAF50;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: inline-block;
    padding: 8px 16px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.1rem;
    color: #E0E0E0;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 450px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: #ffffff;
    border-color: #4CAF50;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(76, 175, 80, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

/* Responsive Hero Section */
@media (max-width: 1024px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 50px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
        order: 1;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 15px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }
    
    .hero-content {
        gap: 30px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 1.5px;
        padding: 6px 12px;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 25px;
        line-height: 1.6;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .hero {
        padding: 30px 0;
    }
    
    .hero-content {
        gap: 25px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
        letter-spacing: 0.5px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 1px;
        padding: 5px 10px;
        margin-bottom: 12px;
    }
    
    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .hero-buttons {
        gap: 10px;
    }
    
    .btn {
        padding: 12px 18px;
        font-size: 0.85rem;
        max-width: 220px;
    }
}

@media (max-width: 320px) {
    .hero {
        padding: 25px 0;
    }
    
    .hero-content {
        gap: 20px;
    }
    
    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 10px;
        letter-spacing: 0.3px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
        letter-spacing: 0.8px;
        padding: 4px 8px;
        margin-bottom: 10px;
    }
    
    .hero-description {
        font-size: 0.8rem;
        margin-bottom: 18px;
        line-height: 1.4;
    }
    
    .hero-buttons {
        gap: 8px;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 0.8rem;
        max-width: 200px;
        letter-spacing: 0.5px;
    }
    
    .btn-arrow {
        font-size: 1rem;
    }
}

/* Live Gaming Section */
.live-gaming {
    padding: 100px 0;
    background: #1A1A2E;
}

.live-gaming-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.preview-frame {
    width: 400px;
    height: 250px;
    background: linear-gradient(135deg, #2A2A4E, #3A3A5E);
    border-radius: 20px;
    position: relative;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.live-gaming-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.live-gaming-description {
    font-size: 1.2rem;
    color: #E0E0E0;
    margin-bottom: 40px;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.game-card {
    background: linear-gradient(135deg, #2A2A4E, #3A3A5E);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
}

.game-vs {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
}

.game-status {
    display: inline-block;
    background: #4CAF50;
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Games Filter Section */
.games-filter {
    padding: 60px 0 40px;
    background: #1A1A2E;
}

.filter-panel {
    background: #111122;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.filter-controls {
    display: flex;
    gap: 20px;
    flex: 1;
}

.filter-dropdown {
    min-width: 200px;
}

.filter-select {
    width: 100%;
    padding: 12px 20px;
    background: #0A0A1A;
    border: 1px solid #4CAF50;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    appearance: none;
    cursor: pointer;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M287%20197.9l-131.3-131.3c-4.1-4.1-10.8-4.1-14.9%200L5.4%20197.9c-4.1%204.1-4.1%2010.8%200%2014.9l14.9%2014.9c4.1%204.1%2010.8%204.1%2014.9%200l101.5-101.5l101.5%20101.5c4.1%204.1%2010.8%204.1%2014.9%200l14.9-14.9c4.1-4.1%204.1-10.8%200-14.9z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-input {
    padding: 12px 20px;
    background: #0A0A1A;
    border: 1px solid #4CAF50;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    min-width: 250px;
}

.search-input::placeholder {
    color: #888;
}

.search-button {
    padding: 12px 20px;
    background: #4CAF50;
    border: none;
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-button:hover {
    background: #45a049;
}

/* Games Grid Section */
.games-grid-section {
    padding: 60px 0;
    background: #1A1A2E;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.game-item {
    background: linear-gradient(135deg, #2A2A4E, #3A3A5E);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.game-item:hover {
    transform: translateY(-10px);
}

.game-preview {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.game-play-button {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.game-play-button:hover {
    transform: scale(1.1);
}

.game-info {
    padding: 20px;
    text-align: center;
}

.game-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.game-category {
    font-size: 0.9rem;
    color: #4CAF50;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Live Games Section */
.live-games {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213E, #1A1A2E);
}

.iframe-games {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.iframe-game {
    text-align: center;
}

.iframe-game-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.iframe-container {
    width: 100%;
    height: 500px;
    background: #0A0A1A;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    margin: 0 auto;
    max-width: 900px;
}

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

/* About Hero Section */
.about-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213E, #1A1A2E);
    position: relative;
    overflow: hidden;
}

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

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

.about-hero-text {
    max-width: 500px;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.about-hero-description {
    font-size: 1.1rem;
    color: #E0E0E0;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 450px;
}

.about-hero-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-hero-img img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

/* Responsive About Hero */
@media (max-width: 1024px) {
    .about-hero {
        padding: 60px 0;
    }
    
    .about-hero-content {
        gap: 40px;
    }
    
    .about-hero-title {
        font-size: 3rem;
    }
    
    .about-hero-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 50px 0;
    }
    
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-hero-text {
        max-width: 100%;
        order: 1;
    }
    
    .about-hero-img {
        order: 2;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .about-hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 40px 0;
    }
    
    .about-hero-content {
        gap: 30px;
    }
    
    .about-hero-title {
        font-size: 2rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .about-hero-description {
        font-size: 0.9rem;
        margin-bottom: 25px;
        line-height: 1.6;
    }
}

@media (max-width: 360px) {
    .about-hero {
        padding: 30px 0;
    }
    
    .about-hero-content {
        gap: 25px;
    }
    
    .about-hero-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
        letter-spacing: 0.5px;
    }
    
    .about-hero-description {
        font-size: 0.85rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }
}

@media (max-width: 320px) {
    .about-hero {
        padding: 25px 0;
    }
    
    .about-hero-content {
        gap: 20px;
    }
    
    .about-hero-title {
        font-size: 1.6rem;
        margin-bottom: 10px;
        letter-spacing: 0.3px;
        line-height: 1.2;
    }
    
    .about-hero-description {
        font-size: 0.8rem;
        margin-bottom: 18px;
        line-height: 1.4;
    }
}

/* Mission Section */
.mission {
    padding: 80px 0;
    background: #1A1A2E;
    position: relative;
    overflow: hidden;
}

.mission::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(76, 175, 80, 0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.mission-text {
    max-width: 500px;
}

.mission-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.mission-description {
    font-size: 1.1rem;
    color: #E0E0E0;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 450px;
}

.mission-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mission-img img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

/* Responsive Mission */
@media (max-width: 1024px) {
    .mission {
        padding: 60px 0;
    }
    
    .mission-content {
        gap: 40px;
    }
    
    .mission-title {
        font-size: 2.5rem;
    }
    
    .mission-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .mission {
        padding: 50px 0;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .mission-text {
        max-width: 100%;
        order: 1;
    }
    
    .mission-img {
        order: 2;
    }
    
    .mission-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .mission-description {
        font-size: 1rem;
        margin-bottom: 30px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .mission {
        padding: 40px 0;
    }
    
    .mission-content {
        gap: 30px;
    }
    
    .mission-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .mission-description {
        font-size: 0.9rem;
        margin-bottom: 25px;
        line-height: 1.6;
    }
}

@media (max-width: 360px) {
    .mission {
        padding: 30px 0;
    }
    
    .mission-content {
        gap: 25px;
    }
    
    .mission-title {
        font-size: 1.6rem;
        margin-bottom: 12px;
        letter-spacing: 0.5px;
    }
    
    .mission-description {
        font-size: 0.85rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }
}

@media (max-width: 320px) {
    .mission {
        padding: 25px 0;
    }
    
    .mission-content {
        gap: 20px;
    }
    
    .mission-title {
        font-size: 1.4rem;
        margin-bottom: 10px;
        letter-spacing: 0.3px;
        line-height: 1.2;
    }
    
    .mission-description {
        font-size: 0.8rem;
        margin-bottom: 18px;
        line-height: 1.4;
    }
}

/* Values Section */
.values {
    padding: 80px 0;
    background: #1A1A2E;
}

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

.value-item {
    background: linear-gradient(135deg, #2A2A4E, #3A3A5E);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.value-description {
    font-size: 1rem;
    color: #E0E0E0;
    line-height: 1.6;
}

/* Team Section */
.team {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213E, #1A1A2E);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member {
    background: linear-gradient(135deg, #2A2A4E, #3A3A5E);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ffffff;
    font-weight: 700;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-role {
    font-size: 1rem;
    color: #4CAF50;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.team-description {
    font-size: 1rem;
    color: #E0E0E0;
    line-height: 1.6;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: #1A1A2E;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(76, 175, 80, 0.5);
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: #4CAF50;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.stat-label::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #4CAF50;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #16213E, #1A1A2E);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-logo-shield {
    width: 40px;
    height: 50px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-controller {
    width: 16px;
    height: 16px;
    background: #ffffff;
    border-radius: 50%;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-description {
    font-size: 1rem;
    color: #E0E0E0;
    line-height: 1.7;
    margin-bottom: 0;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.footer-contact-item {
    margin-bottom: 15px;
}

.footer-contact-label {
    font-weight: 600;
    color: #4CAF50;
    margin-right: 10px;
}

.footer-contact-value {
    color: #E0E0E0;
}

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

.footer-help-item {
    margin-bottom: 15px;
}

.footer-help-link {
    color: #E0E0E0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-help-link:hover {
    color: #4CAF50;
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    font-size: 0.9rem;
    color: #E0E0E0;
    margin-bottom: 0;
}

/* Contact Map Section */
.contact-map {
    padding: 60px 0;
    background: #1A1A2E;
}

.map-container {
    max-width: 800px;
    margin: 0 auto;
}

.map-placeholder {
    background: linear-gradient(135deg, #2A2A4E, #3A3A5E);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.map-placeholder::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="map-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%234CAF50" stroke-width="0.5" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23map-pattern)"/></svg>');
    opacity: 0.3;
}

.map-icon {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.map-pin {
    width: 60px;
    height: 60px;
    background: #4CAF50;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    margin: 0 auto;
    position: relative;
}

.map-pin::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 50%;
}

.map-text {
    position: relative;
    z-index: 2;
}

.map-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.map-text p {
    font-size: 1.1rem;
    color: #E0E0E0;
    margin-bottom: 0;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213E, #1A1A2E);
}

.contact-content {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    background: linear-gradient(135deg, #2A2A4E, #3A3A5E);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-envelope::before {
    content: '✉';
    font-size: 1.5rem;
    color: #ffffff;
}

.icon-location::before {
    content: '📍';
    font-size: 1.5rem;
    color: #ffffff;
}

.icon-phone::before {
    content: '📞';
    font-size: 1.5rem;
    color: #ffffff;
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-details p {
    font-size: 1rem;
    color: #E0E0E0;
    margin-bottom: 0;
}

/* Contact Form */
.contact-form {
    background: linear-gradient(135deg, #2A2A4E, #3A3A5E);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px 20px;
    background: #0A0A1A;
    border: 2px solid #4CAF50;
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #45a049;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #888;
}

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

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #1A1A2E;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-search {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    align-items: center;
}

.faq-search-input {
    flex: 1;
    padding: 15px 20px;
    background: #0A0A1A;
    border: 2px solid #4CAF50;
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
}

.faq-search-input::placeholder {
    color: #888;
}

.faq-category {
    min-width: 200px;
}

.faq-category-select {
    width: 100%;
    padding: 15px 20px;
    background: #0A0A1A;
    border: 2px solid #4CAF50;
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    appearance: none;
    cursor: pointer;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M287%20197.9l-131.3-131.3c-4.1-4.1-10.8-4.1-14.9%200L5.4%20197.9c-4.1%204.1-4.1%2010.8%200%2014.9l14.9%2014.9c4.1%204.1%2010.8%204.1%2014.9%200l101.5-101.5l101.5%20101.5c4.1%204.1%2010.8%204.1%2014.9%200l14.9-14.9c4.1-4.1%204.1-10.8%200-14.9z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 15px;
}

.faq-search-button {
    padding: 15px 20px;
    background: #4CAF50;
    border: none;
    border-radius: 10px;
    color: #ffffff;
    cursor: pointer;
    transition: background 0.3s ease;
    min-width: 60px;
}

.faq-search-button:hover {
    background: #45a049;
}

.search-icon {
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 50%;
    position: relative;
}

.search-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
}

.search-icon::after {
    content: '';
    position: absolute;
    top: 60%;
    left: 60%;
    width: 12px;
    height: 2px;
    background: #4CAF50;
    transform: rotate(45deg);
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: linear-gradient(135deg, #2A2A4E, #3A3A5E);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(76, 175, 80, 0.1);
}

.faq-question span {
    flex: 1;
    margin-right: 20px;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4CAF50;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-answer {
    padding: 0 30px 25px;
    color: #E0E0E0;
    font-size: 1rem;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

/* Privacy Content Section */
.privacy-content {
    padding: 80px 0;
    background: #1A1A2E;
}

.privacy-text {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 50px;
}

.privacy-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.privacy-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4CAF50;
    margin-top: 40px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.privacy-date {
    font-style: italic;
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 30px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: inline-block;
}

.privacy-text p {
    font-size: 1.1rem;
    color: #E0E0E0;
    margin-bottom: 15px;
    line-height: 1.7;
}

.privacy-text ul {
    list-style: none;
    margin-left: 0;
    margin-bottom: 20px;
}

.privacy-text ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #E0E0E0;
    padding-left: 25px;
    position: relative;
}

.privacy-text ul li::before {
    content: '▶';
    position: absolute;
    left: 0;
    top: 0;
    color: #4CAF50;
    font-size: 0.8rem;
}

.contact-info-privacy {
    background: linear-gradient(135deg, #2A2A4E, #3A3A5E);
    border-radius: 15px;
    padding: 30px;
    margin-top: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.contact-info-privacy p {
    margin-bottom: 10px;
}

.contact-info-privacy strong {
    color: #4CAF50;
}

/* Thank You Page */
.thank-you-section {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, #1A1A2E, #16213E);
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-content {
    background: linear-gradient(135deg, #2A2A4E, #3A3A5E);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 30px;
}

.success-checkmark {
    width: 80px;
    height: 115px;
    margin: 0 auto;
}

.check-icon {
    width: 80px;
    height: 80px;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: 4px solid #4CAF50;
}

.check-icon::before,
.check-icon::after {
    content: '';
    border-radius: 50%;
    position: absolute;
    width: 60px;
    height: 120px;
    background: #2A2A4E;
    transform: rotate(45deg);
}

.check-icon::before {
    left: -17px;
    top: 48px;
    transform: rotate(45deg);
    transform-origin: 100% 100%;
}

.check-icon::after {
    left: 30px;
    top: 48px;
    transform: rotate(-45deg);
    transform-origin: 0% 100%;
}

.check-icon .icon-line {
    height: 5px;
    background-color: #4CAF50;
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
}

.check-icon .icon-line.line-tip {
    top: 46px;
    left: 14px;
    width: 25px;
    transform: rotate(45deg);
    animation: icon-line-tip 0.75s forwards cubic-bezier(0.65, 0, 0.45, 1);
}

.check-icon .icon-line.line-long {
    top: 38px;
    right: 8px;
    width: 47px;
    transform: rotate(-45deg);
    animation: icon-line-long 0.75s forwards cubic-bezier(0.65, 0, 0.45, 1);
}

.check-icon .icon-circle {
    position: absolute;
    top: -4px;
    left: -4px;
    z-index: 10;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-sizing: content-box;
    border: 4px solid #4CAF50;
    border-right-color: transparent;
    border-left-color: transparent;
    transform: rotate(-45deg);
    animation: icon-circle 0.75s forwards cubic-bezier(0.65, 0, 0.45, 1);
}

.check-icon .icon-fix {
    width: 5px;
    height: 90px;
    background-color: #2A2A4E;
    position: absolute;
    left: 28px;
    top: 8px;
    transform: rotate(-45deg);
    z-index: 1;
}

@keyframes icon-line-tip {
    0% { width: 0; left: 1px; top: 19px; }
    54% { width: 0; left: 1px; top: 19px; }
    70% { width: 50px; left: -8px; top: 37px; }
    84% { width: 17px; left: 21px; top: 48px; }
    100% { width: 25px; left: 14px; top: 46px; }
}

@keyframes icon-line-long {
    0% { width: 0; right: 46px; top: 54px; }
    65% { width: 0; right: 46px; top: 54px; }
    84% { width: 55px; right: 0px; top: 35px; }
    100% { width: 47px; right: 8px; top: 38px; }
}

@keyframes icon-circle {
    0% { transform: rotate(-45deg); }
    100% { transform: rotate(-405deg); }
}

.thank-you-title {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.thank-you-message {
    font-size: 1.2rem;
    color: #E0E0E0;
    margin-bottom: 30px;
    line-height: 1.6;
}

.message-summary {
    background: rgba(76, 175, 80, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: left;
}

.message-summary h3 {
    font-size: 1.3rem;
    color: #4CAF50;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.summary-item {
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(76, 175, 80, 0.2);
}

.summary-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.summary-item strong {
    color: #4CAF50;
    margin-right: 10px;
}

.thank-you-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.contact-info-reminder {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
}

.contact-info-reminder p {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #E0E0E0;
}

.contact-email {
    font-size: 1.1rem;
    color: #4CAF50;
    font-weight: 700;
    text-decoration: none;
}

/* Upcoming Games Section */
.upcoming-games {
    padding: 100px 0;
    background: linear-gradient(135deg, #16213E, #1A1A2E);
}

.games-more {
    text-align: center;
    margin-top: 40px;
}

/* Feedback Section */
.feedback {
    padding: 100px 0;
    background: linear-gradient(135deg, #16213E, #1A1A2E);
}

.feedback-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.feedback-arrows {
    position: absolute;
    top: 50%;
    left: -60px;
    right: -60px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.feedback-arrow {
    width: 50px;
    height: 50px;
    background: #4CAF50;
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.feedback-arrow:hover {
    background: #45a049;
    transform: scale(1.1);
}

.feedback-card {
    background: linear-gradient(135deg, #2A2A4E, #3A3A5E);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feedback-avatar {
    width: 100px;
    height: 100px;
    background: #4CAF50;
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    font-weight: 700;
}

.feedback-text {
    font-size: 1.3rem;
    color: #E0E0E0;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.7;
}

.feedback-author {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feedback-role {
    font-size: 1rem;
    color: #4CAF50;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* News Section */
.news {
    padding: 100px 0;
    background: #1A1A2E;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: linear-gradient(135deg, #2A2A4E, #3A3A5E);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-10px);
}

.news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.news-image-1::before {
    content: '🎮';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
}

.news-image-2::before {
    content: '🎯';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
}

.news-image-3::before {
    content: '🏆';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
}

.news-content {
    padding: 30px;
}

.news-date {
    font-size: 0.9rem;
    color: #4CAF50;
    margin-bottom: 15px;
}

.news-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.news-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: #4CAF50;
}

/* Game Logos */
.game-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.game-logo {
    width: 60px;
    height: 60px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.game-logo-1::before { content: '🐉'; }
.game-logo-2::before { content: '⚔️'; }
.game-logo-3::before { content: '🛡️'; }
.game-logo-4::before { content: '⚔️'; }
.game-logo-5::before { content: '🏰'; }
.game-logo-6::before { content: '🐉'; }

.game-info {
    text-align: center;
}

.game-date {
    font-size: 0.9rem;
    color: #E0E0E0;
    margin-bottom: 10px;
}

.game-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.game-teams {
    font-size: 0.9rem;
    color: #E0E0E0;
}

/* Game Hero Section */
.game-hero {
    padding: 80px 0;
    background: #1A1A2E;
}

.game-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.game-hero-text {
    max-width: 500px;
}

.game-hero-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.game-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    line-height: 1.1;
}

.game-hero-description {
    font-size: 1.1rem;
    color: #E0E0E0;
    margin-bottom: 30px;
    line-height: 1.7;
}

.safety-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.safety-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    color: #E0E0E0;
}

.safety-icon {
    font-size: 1.5rem;
}

.game-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-frame {
    width: 300px;
    height: 400px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border: 4px solid #ffffff;
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(76, 175, 80, 0.3);
}

.game-character {
    width: 200px;
    height: 250px;
    position: relative;
}

.character-helmet {
    width: 120px;
    height: 80px;
    background: #ffffff;
    border-radius: 60px 60px 20px 20px;
    position: absolute;
    top: 50px;
    left: 40px;
}

.character-body {
    width: 80px;
    height: 120px;
    background: #ffffff;
    border-radius: 20px;
    position: absolute;
    bottom: 0;
    left: 60px;
}

.game-text-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    font-weight: 700;
    color: #1A1A2E;
    text-transform: uppercase;
}

/* Main Game Section */
.main-game {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213E, #1A1A2E);
}

.game-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.game-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.game-iframe-wrapper {
    background: #0A0A1A;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

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

.game-info-panel {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.game-details h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-description {
    font-size: 1.1rem;
    color: #E0E0E0;
    line-height: 1.7;
    margin-bottom: 30px;
}

.game-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.9rem;
    color: #E0E0E0;
    margin-bottom: 0;
}

.safety-notice {
    background: rgba(76, 175, 80, 0.1);
    border: 2px solid #4CAF50;
    border-radius: 15px;
    padding: 25px;
}

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

.safety-icon-large {
    font-size: 2rem;
}

.safety-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.safety-notice p {
    font-size: 1rem;
    color: #E0E0E0;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Safety Information Section */
.safety-info {
    padding: 80px 0;
    background: #1A1A2E;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.safety-card {
    background: linear-gradient(135deg, #2A2A4E, #3A3A5E);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.safety-card:hover {
    transform: translateY(-10px);
}

.safety-card-icon {
    font-size: 3rem;
    margin-bottom: 25px;
}

.safety-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.safety-card p {
    font-size: 1rem;
    color: #E0E0E0;
    line-height: 1.6;
}

/* Responsible Gaming Section */
.responsible-gaming {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213E, #1A1A2E);
}

.responsible-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.responsible-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.responsible-text p {
    font-size: 1.1rem;
    color: #E0E0E0;
    line-height: 1.7;
    margin-bottom: 30px;
}

.responsible-points {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.point-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    color: #E0E0E0;
}

.point-icon {
    font-size: 1.2rem;
    color: #4CAF50;
}

.responsible-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.responsible-frame {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border: 4px solid #ffffff;
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(76, 175, 80, 0.3);
}

.responsible-icon {
    font-size: 4rem;
    color: #ffffff;
}

.responsible-text-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    font-weight: 700;
    color: #1A1A2E;
    text-transform: uppercase;
}

/* Call to Action */
.game-cta {
    padding: 80px 0;
    background: #1A1A2E;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: #E0E0E0;
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Safe Gaming Features */
.safe-gaming-features {
    padding: 100px 0;
    background: #1A1A2E;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(135deg, #2A2A4E, #3A3A5E);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card .feature-icon {
    font-size: 3rem;
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-card p {
    font-size: 1rem;
    color: #E0E0E0;
    line-height: 1.6;
}

/* Featured Game */
.featured-game {
    padding: 100px 0;
    background: linear-gradient(135deg, #16213E, #1A1A2E);
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.featured-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.featured-text p {
    font-size: 1.1rem;
    color: #E0E0E0;
    line-height: 1.7;
    margin-bottom: 30px;
}

.game-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    color: #E0E0E0;
}

.highlight-icon {
    font-size: 1.5rem;
}

.featured-preview {
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-preview-frame {
    width: 300px;
    height: 400px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border: 4px solid #ffffff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(76, 175, 80, 0.3);
}

.preview-content {
    text-align: center;
    color: #1A1A2E;
}

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

.preview-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.preview-content p {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
}

/* Safety Statistics */
.safety-stats {
    padding: 100px 0;
    background: #1A1A2E;
}

/* User Testimonials */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #16213E, #1A1A2E);
}

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

.testimonial-card {
    background: linear-gradient(135deg, #2A2A4E, #3A3A5E);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #E0E0E0;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 25px;
}

.testimonial-author {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-role {
    font-size: 0.9rem;
    color: #4CAF50;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero CTA */
.hero-cta {
    padding: 100px 0;
    background: #1A1A2E;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: #E0E0E0;
    line-height: 1.7;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Safe Gaming Commitment */
.safe-gaming-commitment {
    padding: 80px 0;
    background: #1A1A2E;
}

.commitment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.commitment-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.commitment-text p {
    font-size: 1.1rem;
    color: #E0E0E0;
    line-height: 1.7;
    margin-bottom: 30px;
}

.commitment-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.commitment-point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.commitment-point .point-icon {
    font-size: 1.2rem;
    color: #4CAF50;
    flex-shrink: 0;
    margin-top: 2px;
}

.point-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.point-content p {
    font-size: 0.9rem;
    color: #E0E0E0;
    margin-bottom: 0;
}

.commitment-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.commitment-frame {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border: 4px solid #ffffff;
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(76, 175, 80, 0.3);
}

.commitment-icon {
    font-size: 4rem;
    color: #ffffff;
}

.commitment-text-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    font-weight: 700;
    color: #1A1A2E;
    text-transform: uppercase;
}

/* About CTA */
.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213E, #1A1A2E);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1A1A2E, #16213E);
    border-top: 3px solid #4CAF50;
    padding: 20px 0;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

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

.cookie-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cookie-text p {
    font-size: 0.9rem;
    color: #E0E0E0;
    line-height: 1.5;
    margin-bottom: 15px;
    max-width: 600px;
}

.cookie-links {
    display: flex;
    gap: 20px;
}

.cookie-link {
    color: #4CAF50;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: #45a049;
}

.cookie-actions {
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cookie-text p {
        max-width: 100%;
    }
    
    .cookie-links {
        justify-content: center;
    }
    
    .cookie-actions {
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 15px 0;
    }
    
    .cookie-content {
        padding: 0 15px;
    }
    
    .cookie-text h3 {
        font-size: 1.1rem;
    }
    
    .cookie-text p {
        font-size: 0.85rem;
    }
    
    .cookie-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* Privacy Policy Styles */
.privacy-content {
    padding: 100px 0;
    background: #1A1A2E;
}

.privacy-text {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.privacy-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    margin-top: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.privacy-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    margin-top: 25px;
}

.privacy-section p {
    font-size: 1rem;
    color: #E0E0E0;
    line-height: 1.7;
    margin-bottom: 20px;
}

.privacy-section ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.privacy-section li {
    font-size: 1rem;
    color: #E0E0E0;
    line-height: 1.6;
    margin-bottom: 10px;
}

.privacy-section strong {
    color: #ffffff;
    font-weight: 600;
}

.last-updated {
    font-size: 0.9rem;
    color: #4CAF50;
    font-style: italic;
    margin-bottom: 30px;
}

.contact-info {
    background: rgba(76, 175, 80, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #4CAF50;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    color: #45a049;
    text-decoration: underline;
}

/* Responsive Privacy Policy */
@media (max-width: 768px) {
    .privacy-content {
        padding: 80px 0;
    }
    
    .privacy-text {
        padding: 0 20px;
    }
    
    .privacy-section h2 {
        font-size: 2rem;
    }
    
    .privacy-section h3 {
        font-size: 1.5rem;
    }
    
    .privacy-section h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .privacy-content {
        padding: 60px 0;
    }
    
    .privacy-text {
        padding: 0 15px;
    }
    
    .privacy-section h2 {
        font-size: 1.8rem;
    }
    
    .privacy-section h3 {
        font-size: 1.3rem;
    }
    
    .privacy-section h4 {
        font-size: 1.1rem;
    }
    
    .privacy-section p,
    .privacy-section li {
        font-size: 0.9rem;
    }
}

/* Additional Responsive Adjustments */
@media (max-width: 768px) {
    .game-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .main-game-iframe {
        height: 400px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .main-game-iframe {
        height: 300px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .game-hero-title {
        font-size: 2.2rem;
    }
}

/* Contact Page Styles - Enhanced Responsiveness */
.contact-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213E, #1A1A2E);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-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(76, 175, 80, 0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.contact-hero-description {
    font-size: 1.1rem;
    color: #E0E0E0;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-content {
    padding: 80px 0;
    background: #1A1A2E;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    background: rgba(76, 175, 80, 0.1);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(76, 175, 80, 0.3);
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-text {
    color: #E0E0E0;
    line-height: 1.6;
}

.contact-info-text strong {
    color: #ffffff;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.contact-form h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #4CAF50;
    background: rgba(255, 255, 255, 0.15);
}

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

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

.form-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(76, 175, 80, 0.4);
}

/* FAQ Section Responsive */
.faq-search-filter {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.faq-search-input,
.faq-category-select {
    flex: 1;
    min-width: 200px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.faq-search-input:focus,
.faq-category-select:focus {
    outline: none;
    border-color: #4CAF50;
    background: rgba(255, 255, 255, 0.15);
}

.faq-refresh-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-refresh-btn:hover {
    transform: rotate(180deg);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

/* Footer Responsive */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding: 60px 0 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #4CAF50;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-description {
    color: #E0E0E0;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 400px;
}

.footer-links h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #E0E0E0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #4CAF50;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-copyright {
    color: #E0E0E0;
    font-size: 0.9rem;
}

/* Enhanced Responsive Contact Page */
@media (max-width: 1024px) {
    .contact-hero {
        padding: 60px 0;
    }
    
    .contact-content {
        padding: 60px 0;
    }
    
    .contact-grid {
        gap: 40px;
    }
    
    .contact-hero-title {
        font-size: 3rem;
    }
    
    .contact-hero-description {
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 30px;
        padding: 50px 0 30px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 50px 0;
    }
    
    .contact-content {
        padding: 50px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .contact-hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .contact-info,
    .contact-form {
        padding: 30px;
    }
    
    .contact-info h3,
    .contact-form h3 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .faq-search-filter {
        flex-direction: column;
        gap: 15px;
    }
    
    .faq-search-input,
    .faq-category-select {
        min-width: 100%;
    }
    
    .faq-refresh-btn {
        align-self: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 40px 0 25px;
    }
    
    .footer-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 40px 0;
    }
    
    .contact-content {
        padding: 40px 0;
    }
    
    .contact-grid {
        gap: 30px;
    }
    
    .contact-hero-title {
        font-size: 2rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .contact-hero-description {
        font-size: 0.9rem;
        margin-bottom: 25px;
        line-height: 1.6;
    }
    
    .contact-info,
    .contact-form {
        padding: 25px;
    }
    
    .contact-info h3,
    .contact-form h3 {
        font-size: 1.6rem;
        margin-bottom: 18px;
    }
    
    .contact-info-item {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .contact-info-icon {
        width: 35px;
        height: 35px;
    }
    
    .form-input,
    .form-textarea {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .form-submit {
        padding: 16px;
        font-size: 1rem;
    }
    
    .faq-search-filter {
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .faq-search-input,
    .faq-category-select {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .faq-refresh-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .footer-content {
        gap: 25px;
        padding: 35px 0 20px;
    }
    
    .footer-logo-text {
        font-size: 1.3rem;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .contact-hero {
        padding: 30px 0;
    }
    
    .contact-content {
        padding: 30px 0;
    }
    
    .contact-grid {
        gap: 25px;
    }
    
    .contact-hero-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
        letter-spacing: 0.5px;
    }
    
    .contact-hero-description {
        font-size: 0.85rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .contact-info,
    .contact-form {
        padding: 20px;
    }
    
    .contact-info h3,
    .contact-form h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .contact-info-item {
        padding: 10px;
        margin-bottom: 12px;
    }
    
    .contact-info-icon {
        width: 30px;
        height: 30px;
    }
    
    .form-input,
    .form-textarea {
        padding: 10px;
        font-size: 0.85rem;
    }
    
    .form-submit {
        padding: 14px;
        font-size: 0.9rem;
    }
    
    .faq-search-filter {
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .faq-search-input,
    .faq-category-select {
        padding: 8px 10px;
        font-size: 0.8rem;
    }
    
    .faq-refresh-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .footer-content {
        gap: 20px;
        padding: 30px 0 15px;
    }
    
    .footer-logo-text {
        font-size: 1.2rem;
    }
    
    .footer-description {
        font-size: 0.85rem;
    }
    
    .footer-links h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .footer-copyright {
        font-size: 0.8rem;
    }
}

@media (max-width: 320px) {
    .contact-hero {
        padding: 25px 0;
    }
    
    .contact-content {
        padding: 25px 0;
    }
    
    .contact-grid {
        gap: 20px;
    }
    
    .contact-hero-title {
        font-size: 1.6rem;
        margin-bottom: 10px;
        letter-spacing: 0.3px;
        line-height: 1.2;
    }
    
    .contact-hero-description {
        font-size: 0.8rem;
        margin-bottom: 18px;
        line-height: 1.4;
    }
    
    .contact-info,
    .contact-form {
        padding: 18px;
    }
    
    .contact-info h3,
    .contact-form h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .contact-info-item {
        padding: 8px;
        margin-bottom: 10px;
        gap: 10px;
    }
    
    .contact-info-icon {
        width: 28px;
        height: 28px;
    }
    
    .form-input,
    .form-textarea {
        padding: 8px;
        font-size: 0.8rem;
    }
    
    .form-submit {
        padding: 12px;
        font-size: 0.85rem;
    }
    
    .faq-search-filter {
        gap: 8px;
        margin-bottom: 18px;
    }
    
    .faq-search-input,
    .faq-category-select {
        padding: 6px 8px;
        font-size: 0.75rem;
    }
    
    .faq-refresh-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .footer-content {
        gap: 18px;
        padding: 25px 0 12px;
    }
    
    .footer-logo-text {
        font-size: 1.1rem;
    }
    
    .footer-description {
        font-size: 0.8rem;
    }
    
    .footer-links h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .footer-copyright {
        font-size: 0.8rem;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background: #1A1A2E;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.section-description {
    font-size: 1.1rem;
    color: #E0E0E0;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-accordion {
    margin-top: 40px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(76, 175, 80, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

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

.faq-question span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

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

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

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: #E0E0E0;
    line-height: 1.6;
    margin: 0;
}

/* Responsive FAQ Section */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-question span {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 25px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 25px 20px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .section-description {
        font-size: 0.9rem;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question span {
        font-size: 0.95rem;
    }
    
    .faq-toggle {
        width: 28px;
        height: 28px;
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 18px;
    }
}

@media (max-width: 360px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 25px;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .section-description {
        font-size: 0.85rem;
    }
    
    .faq-question {
        padding: 15px 18px;
    }
    
    .faq-question span {
        font-size: 0.9rem;
    }
    
    .faq-toggle {
        width: 25px;
        height: 25px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 18px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 18px 15px;
    }
}

@media (max-width: 320px) {
    .faq-section {
        padding: 35px 0;
    }
    
    .section-header {
        margin-bottom: 20px;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }
    
    .section-description {
        font-size: 0.8rem;
    }
    
    .faq-question {
        padding: 12px 15px;
    }
    
    .faq-question span {
        font-size: 0.85rem;
    }
    
    .faq-toggle {
        width: 22px;
        height: 22px;
        font-size: 0.9rem;
    }
    
    .faq-answer {
        padding: 0 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 15px 12px;
    }
}

/* Page Header Responsive */
@media (max-width: 768px) {
    .page-header {
        padding: 40px 0;
    }
    
    .page-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .breadcrumbs {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 30px 0;
    }
    
    .page-title {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .breadcrumbs {
        font-size: 0.85rem;
    }
}

@media (max-width: 360px) {
    .page-header {
        padding: 25px 0;
    }
    
    .page-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .breadcrumbs {
        font-size: 0.8rem;
    }
}

@media (max-width: 320px) {
    .page-header {
        padding: 20px 0;
    }
    
    .page-title {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }
    
    .breadcrumbs {
        font-size: 0.75rem;
    }
}

/* Safety Stats Responsive */
@media (max-width: 768px) {
    .safety-stats {
        padding: 50px 0;
    }
    
    .safety-stats .section-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .safety-stats .section-description {
        font-size: 1rem;
    }
    
    .safety-stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .safety-stats {
        padding: 40px 0;
    }
    
    .safety-stats .section-title {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .safety-stats .section-description {
        font-size: 0.9rem;
    }
    
    .safety-stats .stats-grid {
        gap: 15px;
    }
    
    .safety-stats .stat-item {
        padding: 20px 15px;
    }
    
    .safety-stats .stat-number {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }
    
    .safety-stats .stat-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .safety-stats {
        padding: 30px 0;
    }
    
    .safety-stats .section-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .safety-stats .section-description {
        font-size: 0.85rem;
    }
    
    .safety-stats .stats-grid {
        gap: 12px;
    }
    
    .safety-stats .stat-item {
        padding: 15px 12px;
    }
    
    .safety-stats .stat-number {
        font-size: 2.2rem;
        margin-bottom: 8px;
    }
    
    .safety-stats .stat-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 320px) {
    .safety-stats {
        padding: 25px 0;
    }
    
    .safety-stats .section-title {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }
    
    .safety-stats .section-description {
        font-size: 0.8rem;
    }
    
    .safety-stats .stats-grid {
        gap: 10px;
    }
    
    .safety-stats .stat-item {
        padding: 12px 10px;
    }
    
    .safety-stats .stat-number {
        font-size: 2rem;
        margin-bottom: 6px;
    }
    
    .safety-stats .stat-label {
        font-size: 0.8rem;
    }
}

/* Safe Gaming Commitment Responsive */
@media (max-width: 768px) {
    .safe-gaming-commitment {
        padding: 50px 0;
    }
    
    .safe-gaming-commitment .commitment-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .safe-gaming-commitment .commitment-text {
        max-width: 100%;
        order: 1;
    }
    
    .safe-gaming-commitment .commitment-image {
        order: 2;
    }
    
    .safe-gaming-commitment .commitment-text h2 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .safe-gaming-commitment .commitment-text p {
        font-size: 1rem;
        margin-bottom: 30px;
        max-width: 100%;
    }
    
    .safe-gaming-commitment .commitment-points {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .safe-gaming-commitment {
        padding: 40px 0;
    }
    
    .safe-gaming-commitment .commitment-content {
        gap: 30px;
    }
    
    .safe-gaming-commitment .commitment-text h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .safe-gaming-commitment .commitment-text p {
        font-size: 0.9rem;
        margin-bottom: 25px;
        line-height: 1.6;
    }
    
    .safe-gaming-commitment .commitment-points {
        gap: 12px;
    }
    
    .safe-gaming-commitment .commitment-point {
        gap: 12px;
    }
    
    .safe-gaming-commitment .point-content h4 {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    
    .safe-gaming-commitment .point-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 360px) {
    .safe-gaming-commitment {
        padding: 30px 0;
    }
    
    .safe-gaming-commitment .commitment-content {
        gap: 25px;
    }
    
    .safe-gaming-commitment .commitment-text h2 {
        font-size: 1.6rem;
        margin-bottom: 12px;
        letter-spacing: 0.5px;
    }
    
    .safe-gaming-commitment .commitment-text p {
        font-size: 0.85rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .safe-gaming-commitment .commitment-points {
        gap: 10px;
    }
    
    .safe-gaming-commitment .commitment-point {
        gap: 10px;
    }
    
    .safe-gaming-commitment .point-content h4 {
        font-size: 0.95rem;
        margin-bottom: 3px;
    }
    
    .safe-gaming-commitment .point-content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 320px) {
    .safe-gaming-commitment {
        padding: 25px 0;
    }
    
    .safe-gaming-commitment .commitment-content {
        gap: 20px;
    }
    
    .safe-gaming-commitment .commitment-text h2 {
        font-size: 1.4rem;
        margin-bottom: 10px;
        letter-spacing: 0.3px;
        line-height: 1.2;
    }
    
    .safe-gaming-commitment .commitment-text p {
        font-size: 0.8rem;
        margin-bottom: 18px;
        line-height: 1.4;
    }
    
    .safe-gaming-commitment .commitment-points {
        gap: 8px;
    }
    
    .safe-gaming-commitment .commitment-point {
        gap: 8px;
    }
    
    .safe-gaming-commitment .point-content h4 {
        font-size: 0.9rem;
        margin-bottom: 2px;
    }
    
    .safe-gaming-commitment .point-content p {
        font-size: 0.75rem;
    }
}

/* Stats Section Responsive */
@media (max-width: 768px) {
    .stats {
        padding: 50px 0;
    }
    
    .stats .section-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .stats .section-description {
        font-size: 1rem;
    }
    
    .stats .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .stats {
        padding: 40px 0;
    }
    
    .stats .section-title {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .stats .section-description {
        font-size: 0.9rem;
    }
    
    .stats .stats-grid {
        gap: 15px;
    }
    
    .stats .stat-item {
        padding: 20px 15px;
    }
    
    .stats .stat-number {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }
    
    .stats .stat-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .stats {
        padding: 30px 0;
    }
    
    .stats .section-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .stats .section-description {
        font-size: 0.85rem;
    }
    
    .stats .stats-grid {
        gap: 12px;
    }
    
    .stats .stat-item {
        padding: 15px 12px;
    }
    
    .stats .stat-number {
        font-size: 2.2rem;
        margin-bottom: 8px;
    }
    
    .stats .stat-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 320px) {
    .stats {
        padding: 25px 0;
    }
    
    .stats .section-title {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }
    
    .stats .section-description {
        font-size: 0.8rem;
    }
    
    .stats .stats-grid {
        gap: 10px;
    }
    
    .stats .stat-item {
        padding: 12px 10px;
    }
    
    .stats .stat-number {
        font-size: 2rem;
        margin-bottom: 6px;
    }
    
    .stats .stat-label {
        font-size: 0.8rem;
    }
}

/* Responsible Gaming Responsive */
@media (max-width: 768px) {
    .responsible-gaming {
        padding: 50px 0;
    }
    
    .responsible-gaming .responsible-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .responsible-gaming .responsible-text {
        max-width: 100%;
        order: 1;
    }
    
    .responsible-gaming .responsible-image {
        order: 2;
    }
    
    .responsible-gaming .responsible-text h2 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .responsible-gaming .responsible-text p {
        font-size: 1rem;
        margin-bottom: 30px;
        max-width: 100%;
    }
    
    .responsible-gaming .responsible-points {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .responsible-gaming {
        padding: 40px 0;
    }
    
    .responsible-gaming .responsible-content {
        gap: 30px;
    }
    
    .responsible-gaming .responsible-text h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .responsible-gaming .responsible-text p {
        font-size: 0.9rem;
        margin-bottom: 25px;
        line-height: 1.6;
    }
    
    .responsible-gaming .responsible-points {
        gap: 12px;
    }
    
    .responsible-gaming .point-item {
        gap: 12px;
    }
    
    .responsible-gaming .point-item span {
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .responsible-gaming {
        padding: 30px 0;
    }
    
    .responsible-gaming .responsible-content {
        gap: 25px;
    }
    
    .responsible-gaming .responsible-text h2 {
        font-size: 1.6rem;
        margin-bottom: 12px;
        letter-spacing: 0.5px;
    }
    
    .responsible-gaming .responsible-text p {
        font-size: 0.85rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .responsible-gaming .responsible-points {
        gap: 10px;
    }
    
    .responsible-gaming .point-item {
        gap: 10px;
    }
    
    .responsible-gaming .point-item span {
        font-size: 0.85rem;
    }
}

@media (max-width: 320px) {
    .responsible-gaming {
        padding: 25px 0;
    }
    
    .responsible-gaming .responsible-content {
        gap: 20px;
    }
    
    .responsible-gaming .responsible-text h2 {
        font-size: 1.4rem;
        margin-bottom: 10px;
        letter-spacing: 0.3px;
        line-height: 1.2;
    }
    
    .responsible-gaming .responsible-text p {
        font-size: 0.8rem;
        margin-bottom: 18px;
        line-height: 1.4;
    }
    
    .responsible-gaming .responsible-points {
        gap: 8px;
    }
    
    .responsible-gaming .point-item {
        gap: 8px;
    }
    
    .responsible-gaming .point-item span {
        font-size: 0.8rem;
    }
}

/* Contact Page Specific Styles - Isolated from other pages */
.contact-page .contact-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #16213E, #1A1A2E);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-page .contact-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(76, 175, 80, 0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.contact-page .contact-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.contact-page .contact-hero-description {
    font-size: 1.1rem;
    color: #E0E0E0;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-page .contact-content {
    padding: 80px 0;
    background: #1A1A2E;
}

.contact-page .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-page .contact-info {
    background: rgba(76, 175, 80, 0.1);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(76, 175, 80, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-page .contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-page .contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-page .contact-info-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(8px);
    border-color: rgba(76, 175, 80, 0.3);
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.2);
}

.contact-page .contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
}

.contact-page .contact-info-item:hover .contact-info-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.contact-page .contact-info-text {
    color: #E0E0E0;
    line-height: 1.6;
    flex: 1;
}

.contact-page .contact-info-text strong {
    color: #ffffff;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-page .contact-info-text span {
    font-size: 1rem;
    color: #E0E0E0;
    display: block;
}

.contact-page .contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-page .contact-form h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-page .form-group {
    margin-bottom: 25px;
}

.contact-page .form-label {
    display: block;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.contact-page .form-input,
.contact-page .form-textarea {
    width: 100%;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: inherit;
}

.contact-page .form-input:focus,
.contact-page .form-textarea:focus {
    outline: none;
    border-color: #4CAF50;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
    transform: translateY(-2px);
}

.contact-page .form-input::placeholder,
.contact-page .form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.contact-page .form-textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.6;
}

.contact-page .form-submit {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: inherit;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-page .form-submit::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;
}

.contact-page .form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, #45a049, #4CAF50);
}

.contact-page .form-submit:hover::before {
    left: 100%;
}

.contact-page .form-submit:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

/* Contact Page FAQ Section */
.contact-page .faq-section {
    padding: 80px 0;
    background: #1A1A2E;
}

.contact-page .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-page .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.contact-page .section-description {
    font-size: 1.1rem;
    color: #E0E0E0;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.contact-page .faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-page .faq-search-filter {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.contact-page .faq-search-input,
.contact-page .faq-category-select {
    flex: 1;
    min-width: 200px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.contact-page .faq-search-input:focus,
.contact-page .faq-category-select:focus {
    outline: none;
    border-color: #4CAF50;
    background: rgba(255, 255, 255, 0.15);
}

.contact-page .faq-refresh-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-page .faq-refresh-btn:hover {
    transform: rotate(180deg);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.contact-page .faq-accordion {
    margin-top: 40px;
}

.contact-page .faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-page .faq-item:hover {
    border-color: rgba(76, 175, 80, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.contact-page .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-page .faq-question span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
}

.contact-page .faq-toggle {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

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

.contact-page .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
}

.contact-page .faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 30px 25px;
}

.contact-page .faq-answer p {
    color: #E0E0E0;
    line-height: 1.6;
    margin: 0;
}

/* Contact Page Responsive Styles */
@media (max-width: 1024px) {
    .contact-page .contact-hero {
        padding: 60px 0;
    }
    
    .contact-page .contact-content {
        padding: 60px 0;
    }
    
    .contact-page .contact-grid {
        gap: 50px;
        padding: 0 20px;
    }
    
    .contact-page .contact-hero-title {
        font-size: 3rem;
    }
    
    .contact-page .contact-hero-description {
        font-size: 1rem;
    }
    
    .contact-page .contact-info,
    .contact-page .contact-form {
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .contact-page .contact-hero {
        padding: 50px 0;
    }
    
    .contact-page .contact-content {
        padding: 50px 0;
    }
    
    .contact-page .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .contact-page .contact-hero-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .contact-page .contact-hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .contact-page .contact-info,
    .contact-page .contact-form {
        padding: 30px;
    }
    
    .contact-page .contact-info h3,
    .contact-page .contact-form h3 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .contact-page .contact-info-item {
        padding: 18px;
        margin-bottom: 20px;
        gap: 18px;
    }
    
    .contact-page .contact-info-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .contact-page .form-input,
    .contact-page .form-textarea {
        padding: 16px 18px;
        font-size: 0.95rem;
    }
    
    .contact-page .form-submit {
        padding: 18px;
        font-size: 1rem;
    }
    
    .contact-page .faq-search-filter {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-page .faq-search-input,
    .contact-page .faq-category-select {
        min-width: 100%;
    }
    
    .contact-page .faq-refresh-btn {
        align-self: center;
    }
    
    .contact-page .section-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .contact-page .section-description {
        font-size: 1rem;
    }
    
    .contact-page .faq-question {
        padding: 20px 25px;
    }
    
    .contact-page .faq-question span {
        font-size: 1rem;
    }
    
    .contact-page .faq-answer {
        padding: 0 25px;
    }
    
    .contact-page .faq-item.active .faq-answer {
        padding: 0 25px 20px;
    }
}

@media (max-width: 480px) {
    .contact-page .contact-hero {
        padding: 40px 0;
    }
    
    .contact-page .contact-content {
        padding: 40px 0;
    }
    
    .contact-page .contact-grid {
        gap: 30px;
        padding: 0 15px;
    }
    
    .contact-page .contact-hero-title {
        font-size: 2rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .contact-page .contact-hero-description {
        font-size: 0.9rem;
        margin-bottom: 25px;
        line-height: 1.6;
    }
    
    .contact-page .contact-info,
    .contact-page .contact-form {
        padding: 25px;
    }
    
    .contact-page .contact-info h3,
    .contact-page .contact-form h3 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .contact-page .contact-info-item {
        padding: 15px;
        margin-bottom: 15px;
        gap: 15px;
    }
    
    .contact-page .contact-info-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .contact-page .contact-info-text strong {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .contact-page .contact-info-text span {
        font-size: 0.9rem;
    }
    
    .contact-page .form-input,
    .contact-page .form-textarea {
        padding: 14px 16px;
        font-size: 0.9rem;
    }
    
    .contact-page .form-submit {
        padding: 16px;
        font-size: 0.95rem;
    }
    
    .contact-page .faq-search-filter {
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .contact-page .faq-search-input,
    .contact-page .faq-category-select {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .contact-page .faq-refresh-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .contact-page .section-title {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .contact-page .section-description {
        font-size: 0.9rem;
    }
    
    .contact-page .faq-question {
        padding: 18px 20px;
    }
    
    .contact-page .faq-question span {
        font-size: 0.95rem;
    }
    
    .contact-page .faq-toggle {
        width: 28px;
        height: 28px;
        font-size: 1.1rem;
    }
    
    .contact-page .faq-answer {
        padding: 0 20px;
    }
    
    .contact-page .faq-item.active .faq-answer {
        padding: 0 20px 18px;
    }
}

@media (max-width: 360px) {
    .contact-page .contact-hero {
        padding: 30px 0;
    }
    
    .contact-page .contact-content {
        padding: 30px 0;
    }
    
    .contact-page .contact-grid {
        gap: 25px;
        padding: 0 12px;
    }
    
    .contact-page .contact-hero-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
        letter-spacing: 0.5px;
    }
    
    .contact-page .contact-hero-description {
        font-size: 0.85rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .contact-page .contact-info,
    .contact-page .contact-form {
        padding: 20px;
    }
    
    .contact-page .contact-info h3,
    .contact-page .contact-form h3 {
        font-size: 1.4rem;
        margin-bottom: 18px;
    }
    
    .contact-page .contact-info-item {
        padding: 12px;
        margin-bottom: 12px;
        gap: 12px;
    }
    
    .contact-page .contact-info-icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .contact-page .contact-info-text strong {
        font-size: 0.95rem;
        margin-bottom: 5px;
    }
    
    .contact-page .contact-info-text span {
        font-size: 0.85rem;
    }
    
    .contact-page .form-input,
    .contact-page .form-textarea {
        padding: 12px 14px;
        font-size: 0.85rem;
    }
    
    .contact-page .form-submit {
        padding: 14px;
        font-size: 0.9rem;
    }
    
    .contact-page .faq-search-filter {
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .contact-page .faq-search-input,
    .contact-page .faq-category-select {
        padding: 8px 10px;
        font-size: 0.8rem;
    }
    
    .contact-page .faq-refresh-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .contact-page .section-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .contact-page .section-description {
        font-size: 0.85rem;
    }
    
    .contact-page .faq-question {
        padding: 15px 18px;
    }
    
    .contact-page .faq-question span {
        font-size: 0.9rem;
    }
    
    .contact-page .faq-toggle {
        width: 25px;
        height: 25px;
        font-size: 1rem;
    }
    
    .contact-page .faq-answer {
        padding: 0 18px;
    }
    
    .contact-page .faq-item.active .faq-answer {
        padding: 0 18px 15px;
    }
}

@media (max-width: 320px) {
    .contact-page .contact-hero {
        padding: 25px 0;
    }
    
    .contact-page .contact-content {
        padding: 25px 0;
    }
    
    .contact-page .contact-grid {
        gap: 20px;
        padding: 0 10px;
    }
    
    .contact-page .contact-hero-title {
        font-size: 1.6rem;
        margin-bottom: 10px;
        letter-spacing: 0.3px;
        line-height: 1.2;
    }
    
    .contact-page .contact-hero-description {
        font-size: 0.8rem;
        margin-bottom: 18px;
        line-height: 1.4;
    }
    
    .contact-page .contact-info,
    .contact-page .contact-form {
        padding: 18px;
    }
    
    .contact-page .contact-info h3,
    .contact-page .contact-form h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .contact-page .contact-info-item {
        padding: 10px;
        margin-bottom: 10px;
        gap: 10px;
    }
    
    .contact-page .contact-info-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .contact-page .contact-info-text strong {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }
    
    .contact-page .contact-info-text span {
        font-size: 0.8rem;
    }
    
    .contact-page .form-input,
    .contact-page .form-textarea {
        padding: 10px 12px;
        font-size: 0.8rem;
    }
    
    .contact-page .form-submit {
        padding: 12px;
        font-size: 0.85rem;
    }
    
    .contact-page .faq-search-filter {
        gap: 8px;
        margin-bottom: 18px;
    }
    
    .contact-page .faq-search-input,
    .contact-page .faq-category-select {
        padding: 6px 8px;
        font-size: 0.75rem;
    }
    
    .contact-page .faq-refresh-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .contact-page .section-title {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }
    
    .contact-page .section-description {
        font-size: 0.8rem;
    }
    
    .contact-page .faq-question {
        padding: 12px 15px;
    }
    
    .contact-page .faq-question span {
        font-size: 0.85rem;
    }
    
    .contact-page .faq-toggle {
        width: 22px;
        height: 22px;
        font-size: 0.9rem;
    }
    
    .contact-page .faq-answer {
        padding: 0 15px;
    }
    
    .contact-page .faq-item.active .faq-answer {
        padding: 0 15px 12px;
    }
}
