:root {
    --primary-color: #ff6b6b;
    --secondary-color: #4ecdc4;
    --dark-bg: #1a1a2e;
    --darker-bg: #16213e;
    --light-text: #e9ecef;
    --accent-color: #ffd93d;
}

body.dark-theme {
    background-color: var(--dark-bg);
    color: var(--light-text);
    font-family: 'Poppins', sans-serif;
}

/* Age Disclaimer Topbar */
.age-disclaimer {
    background-color: var(--darker-bg);
    color: var(--light-text);
    padding: 8px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Navbar Styling */
.navbar {
    background-color: var(--darker-bg);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand .logo {
    height: 40px;
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--light-text);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* Custom Button Styling */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
}

.btn-primary:hover {
    background-color: darken(var(--primary-color), 10%);
    border-color: darken(var(--primary-color), 10%);
}

/* Card Styling */
.card {
    background-color: var(--darker-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.card-title {
    color: var(--accent-color);
    font-family: 'Orbitron', sans-serif;
}

/* Footer Styling */
.footer {
    background-color: var(--darker-bg);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-disclaimer i {
    font-size: 2rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.footer-disclaimer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-logo {
    margin-bottom: 3rem;
}

.footer-logo img {
    max-height: 60px;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.footer-logo img:hover {
    filter: brightness(1);
}

.footer-links {
    margin-bottom: 3rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.footer-copyright {
    text-align: center;
}

.footer-copyright .divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin-bottom: 2rem;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(78, 205, 196, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.highlight-text {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.highlight-text:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.hero-buttons {
    margin-bottom: 3rem;
}

.btn-glow {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.btn-glow:hover::before {
    transform: rotate(45deg) translateY(-100%);
}

.btn-hover-glow:hover {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.hero-features {
    display: flex;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.feature-item i {
    color: var(--secondary-color);
}

.hero-image-container {
    position: relative;
    height: 500px;
}

.hero-image {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(78, 205, 196, 0.3));
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-card {
    position: absolute;
    width: 100px;
    height: 140px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-1 {
    top: 20%;
    left: 10%;
    transform: rotate(-15deg);
    animation: float 6s ease-in-out infinite;
}

.card-2 {
    top: 40%;
    right: 15%;
    transform: rotate(10deg);
    animation: float 8s ease-in-out infinite;
}

.card-3 {
    bottom: 15%;
    left: 20%;
    transform: rotate(5deg);
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(var(--rotation));
    }
    50% {
        transform: translateY(-20px) rotate(var(--rotation));
    }
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.2) 0%, rgba(255, 107, 107, 0) 70%);
    border-radius: 50%;
    filter: blur(30px);
    z-index: 1;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.title-divider i {
    color: var(--accent-color);
    font-size: 1.5rem;
    position: relative;
}

.title-divider i::before,
.title-divider i::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.title-divider i::before {
    right: 30px;
}

.title-divider i::after {
    left: 30px;
}

.about-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature-box {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-box i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feature-box h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.feature-box p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.about-image-container {
    position: relative;
    padding: 2rem;
}

.about-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--darker-bg);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid var(--accent-color);
    text-align: center;
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'Orbitron', sans-serif;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Games Section */
.games-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.game-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.game-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-info {
    padding: 1.5rem;
}

.game-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.game-info .btn {
    width: 100%;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    padding: 0.75rem;
}

.game-tags {
    display: flex;
    gap: 1rem;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.tag i {
    color: var(--secondary-color);
}

/* Responsible Gaming Section */
.responsible-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.guidelines-card,
.support-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.guidelines-card h3,
.support-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.guidelines-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guidelines-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guidelines-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.guidelines-list li i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.guidelines-list li h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.guidelines-list li p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.support-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.support-feature {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.support-feature:hover {
    transform: translateY(-5px);
}

.support-feature i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.support-feature h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.support-feature p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.support-links {
    margin-top: 1rem;
}

.support-links h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.support-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.support-links li {
    margin-bottom: 1rem;
}

.support-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.support-links a:hover {
    color: var(--secondary-color);
}

.support-links i {
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.info-card,
.contact-form-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card h3,
.contact-form-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.lead-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.method-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.method-item:hover {
    transform: translateX(10px);
}

.method-item i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.method-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.method-item p {
    margin-bottom: 0.3rem;
    color: rgba(255, 255, 255, 0.9);
}

.response-time {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.text-accent {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.text-accent:hover {
    color: var(--primary-color);
}

/* Contact Form Styling */
.contact-form {
    margin-top: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.input-group {
    position: relative;
    display: flex;
}

.input-group-text {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
    border-right: none;
    padding: 0.75rem 1rem;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 1rem;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--secondary-color);
    box-shadow: none;
    color: rgba(255, 255, 255, 0.9);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

select.form-control option {
    background: var(--darker-bg);
    color: rgba(255, 255, 255, 0.9);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    padding: 1rem;
    margin-top: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
}

.accordion-button {
    background: rgba(255, 255, 255, 0.03);
    color: var(--light-text);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 1.5rem;
    border: none;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.accordion-button i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed) i {
    transform: scale(1.2);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.2);
}

.accordion-button:not(.collapsed) {
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent-color);
}

.accordion-body {
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

/* Success Modal */
.modal-content {
    background: var(--darker-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: var(--light-text);
}

.modal-body {
    padding: 2.5rem;
}

.success-icon {
    font-size: 4rem;
    color: #4ecdc4;
    margin-bottom: 1.5rem;
    animation: scaleIn 0.5s ease;
}

.success-icon i {
    animation: bounce 1s ease infinite;
}

.modal-body h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.modal-body p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.modal-body .btn {
    min-width: 150px;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Game Pages */
.game-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    min-height: calc(100vh - 300px);
}

.game-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.game-frame-container {
    position: relative;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.game-frame {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

.game-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-disclaimer i {
    font-size: 2rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.disclaimer-content h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.disclaimer-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

/* Policy Pages */
.policy-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    min-height: calc(100vh - 300px);
}

.policy-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    text-align: center;
}

.policy-block {
    margin-bottom: 3rem;
}

.policy-block:last-child {
    margin-bottom: 0;
}

.policy-block h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.policy-block h3 {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin: 1.5rem 0 1rem;
}

.policy-block p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.policy-block ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.policy-block ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.policy-block ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary-color);
}

.footer-links .active {
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    /* Game Pages Responsive */
    .game-section {
        padding: 60px 0;
    }

    .game-title {
        font-size: 2rem;
    }

    .game-frame {
        height: 600px;
    }

    .game-disclaimer {
        padding: 1.2rem;
        gap: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .game-disclaimer i {
        font-size: 1.8rem;
    }
    /* Policy Pages Responsive */
    .policy-section {
        padding: 60px 0;
    }

    .policy-content {
        padding: 2rem;
    }

    .policy-content h1 {
        font-size: 2rem;
    }

    .policy-block h2 {
        font-size: 1.5rem;
    }

    .policy-block h3 {
        font-size: 1.2rem;
    }

    .policy-block {
        margin-bottom: 2rem;
    }
    /* Footer Responsive */
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-disclaimer {
        padding: 1.2rem;
        margin-bottom: 2rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-logo {
        margin-bottom: 2rem;
    }

    .footer-logo img {
        max-height: 50px;
    }

    .footer-links {
        margin-bottom: 2rem;
    }

    .footer-links ul {
        gap: 1.5rem;
    }

    .footer-links a {
        font-size: 0.9rem;
    }
    /* FAQ Section Responsive */
    .faq-section {
        padding: 60px 0;
    }

    .accordion-button {
        font-size: 1rem;
        padding: 1.2rem;
    }

    .accordion-body {
        padding: 1.2rem;
        font-size: 0.95rem;
    }
    /* Contact Section Responsive */
    .contact-section {
        padding: 60px 0;
    }

    .info-card,
    .contact-form-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .method-item {
        padding: 1.2rem;
        gap: 1rem;
    }

    .method-item i {
        font-size: 1.5rem;
    }

    .contact-form .row {
        margin-bottom: -1.5rem;
    }

    .contact-form .col-md-6 {
        margin-bottom: 1.5rem;
    }
    /* Responsible Gaming Responsive */
    .responsible-section {
        padding: 60px 0;
    }

    .guidelines-card,
    .support-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .guidelines-list li {
        padding: 1rem;
        gap: 1rem;
    }

    .guidelines-list li i {
        font-size: 1.2rem;
    }

    .support-feature {
        padding: 1.2rem;
    }

    .support-feature i {
        font-size: 1.5rem;
    }
    /* Games Section Responsive */
    .games-section {
        padding: 60px 0;
    }

    .game-info h3 {
        font-size: 1.3rem;
    }

    .game-tags {
        flex-wrap: wrap;
    }

    .tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    .navbar-collapse {
        background-color: var(--darker-bg);
        padding: 1rem;
        border-radius: 8px;
        margin-top: 1rem;
    }

    .hero-section {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-image-container {
        height: 400px;
        margin-top: 3rem;
    }

    .floating-card {
        width: 80px;
        height: 112px;
    }

    /* About Section Responsive */
    .about-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-item {
        flex: 0 0 calc(33.333% - 1rem);
    }

    .about-image-container {
        margin-top: 3rem;
        padding: 1rem;
    }

    .experience-badge {
        padding: 1rem;
    }

    .experience-badge .years {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .navbar-brand .logo {
        height: 32px;
    }
}