/* RoamvikHub Digital - Gaming Website Stylesheet */
:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --neon-blue: #0ff;
    --neon-purple: #f0f;
    --neon-green: #0f0;
    --text-color: #ffffff;
    --light-color: #f8f9fa;
    --dark-color: #0a0a0a;
    --gray-color: #6c757d;
    --border-radius: 12px;
    --box-shadow: 0 8px 32px rgba(233, 69, 96, 0.3);
    --neon-glow: 0 0 20px rgba(0, 255, 255, 0.5);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    z-index: -1;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-10px) translateY(-10px); }
}

a {
    text-decoration: none;
    color: var(--neon-blue);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
    text-shadow: var(--neon-glow);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.site-header {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--accent-color);
    box-shadow: 0 4px 20px rgba(233, 69, 96, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-logo {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px var(--neon-blue));
}

.site-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-color);
    background: rgba(233, 69, 96, 0.993);
    box-shadow: 0 0 15px rgba(233, 69, 96, 0.3);
}

/* Active Nav Link Style */
.nav-links a.active {
    color: var(--neon-blue) !important;
    background: rgba(0,255,255,0.12) !important;
    box-shadow: 0 0 18px var(--neon-blue), 0 0 8px var(--accent-color);
    border: 2px solid var(--neon-blue);
    text-shadow: 0 0 8px var(--neon-blue), 0 0 2px var(--accent-color);
    z-index: 2;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-blue), var(--accent-color));
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 80%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    background: none;
    border: 2px solid var(--neon-blue);
    border-radius: var(--border-radius);
    font-size: 1.2rem;
    color: var(--neon-blue);
    padding: 0.5rem;
    transition: var(--transition);
}

.menu-toggle:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8)), url('assets/img/hero-bg.jpg'), url('assets/img/hero-bg.svg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(0,255,255,0.6)"><animate attributeName="opacity" values="0;1;0" dur="2s" repeatCount="indefinite"/></circle><circle cx="80" cy="30" r="1.5" fill="rgba(255,0,255,0.6)"><animate attributeName="opacity" values="0;1;0" dur="3s" repeatCount="indefinite"/></circle><circle cx="60" cy="70" r="1" fill="rgba(233,69,96,0.6)"><animate attributeName="opacity" values="0;1;0" dur="2.5s" repeatCount="indefinite"/></circle></svg>');
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

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

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

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--neon-blue), var(--accent-color), var(--neon-purple));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, var(--accent-color), var(--neon-purple));
    color: white;
    border-radius: var(--border-radius);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

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

.hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.5);
    color: white;
    border-color: var(--neon-blue);
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--neon-blue);
    position: relative;
    text-shadow: 0 0 20px var(--neon-blue);
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-blue), var(--accent-color), var(--neon-purple));
    margin: 1rem auto;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--accent-color);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-text {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--light-color);
}

.about-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(233, 69, 96, 0.3);
    position: relative;
    background: url('../../assets/img/about-gaming.jpg'), url('assets/img/about-gaming.svg');
    background-size: cover;
    background-position: center;
    min-height: 400px;
    border: 2px solid var(--accent-color);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 255, 255, 0.1), rgba(233, 69, 96, 0.1));
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    position: relative;
}

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

.feature-card {
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(0, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

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

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(233, 69, 96, 0.4);
    border-color: var(--accent-color);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--neon-blue);
    text-shadow: 0 0 20px var(--neon-blue);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    color: var(--accent-color);
    text-shadow: 0 0 20px var(--accent-color);
    transform: scale(1.2);
}

.feature-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 600;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Game Section */
.game-section {
    padding: 6rem 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
}

.game-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.game-frame {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(233, 69, 96, 0.4);
    border: 3px solid var(--accent-color);
    background: var(--dark-color);
    position: relative;
}

.game-frame::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--neon-blue), var(--accent-color), var(--neon-purple), var(--neon-green));
    background-size: 400% 400%;
    border-radius: var(--border-radius);
    z-index: -1;
    animation: borderGlow 3s ease infinite;
}

@keyframes borderGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    min-height: 70vh;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(22, 33, 62, 0.9);
    backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(233, 69, 96, 0.3);
    border: 2px solid rgba(0, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

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

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

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

.form-label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    font-size: 1.1rem;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: var(--border-radius);
    background: rgba(26, 26, 46, 0.8);
    color: var(--text-color);
    font-size: 1rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.form-control:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.4);
    background: rgba(26, 26, 46, 0.9);
}

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

.form-submit {
    background: linear-gradient(45deg, var(--accent-color), var(--neon-purple));
    color: white;
    border: 2px solid transparent;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.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;
}

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

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.5);
    border-color: var(--neon-blue);
}

/* Legal Section */
.legal-section {
    padding: 6rem 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    min-height: 80vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(22, 33, 62, 0.8);
    backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 255, 255, 0.2);
}

.legal-section h1 {
    color: var(--neon-blue);
    margin-bottom: 2.5rem;
    text-align: center;
    font-size: 3rem;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    position: relative;
}

.legal-section h1::after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-blue), var(--accent-color), var(--neon-purple));
    margin: 1rem auto;
    border-radius: 2px;
    box-shadow: 0 0 15px var(--accent-color);
}

.legal-section h2 {
    color: var(--accent-color);
    margin: 2.5rem 0 1.5rem 0;
    font-size: 1.8rem;
    text-shadow: 0 0 10px rgba(233, 69, 96, 0.5);
    border-left: 4px solid var(--accent-color);
    padding-left: 1rem;
    background: rgba(233, 69, 96, 0.1);
    padding: 1rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.legal-content p {
    color: var(--light-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.legal-content ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-content li {
    color: var(--light-color);
    margin-bottom: 1rem;
    line-height: 1.7;
    position: relative;
}

.legal-content li::marker {
    color: var(--neon-blue);
}

.legal-content strong {
    color: var(--neon-blue);
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
}

/* Footer */
.site-footer {
/* Centered Disclaimer Card in Footer */
.footer-disclaimer-center {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    z-index: 2;
}
@media (max-width: 600px) {
    .footer-disclaimer-center {
        margin-bottom: 1rem;
        margin-top: 1rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}
    background: linear-gradient(135deg, var(--primary-color), #0a0a0a);
    color: white;
    padding: 4rem 0 1rem;
    margin-top: auto;
    position: relative;
    border-top: 3px solid var(--accent-color);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(0,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(233,69,96,0.1)"/><circle cx="50" cy="80" r="1" fill="rgba(255,0,255,0.1)"/></svg>');
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col {
    padding: 0 1rem;
}

.footer-col h3 {
    margin-bottom: 1.5rem;
    color: var(--neon-blue);
    position: relative;
    display: inline-block;
    font-size: 1.3rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-blue), var(--accent-color));
    border-radius: 2px;
    box-shadow: 0 0 10px var(--neon-blue);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    padding: 0.3rem 0;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(233, 69, 96, 0.5);
    transform: translateX(5px);
}

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

.footer-logo img {
    width: 35px;
    height: 35px;
    filter: drop-shadow(0 0 10px var(--neon-blue));
}

.footer-logo span {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.disclaimer-card {
    background: rgba(233, 69, 96, 0.2);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--light-color);
    border: 1px solid rgba(233, 69, 96, 0.3);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.2);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(0, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* Disclaimer Popup */
.disclaimer-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.disclaimer-popup.show {
    opacity: 1;
    visibility: visible;
}

.disclaimer-popup-content {
    background: rgba(22, 33, 62, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    max-width: 90%;
    width: 550px;
    padding: 3rem;
    position: relative;
    border: 2px solid var(--accent-color);
    box-shadow: 0 30px 80px rgba(233, 69, 96, 0.4);
    animation: popupSlide 0.5s ease-out;
}

@keyframes popupSlide {
    0% {
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.disclaimer-popup h2 {
    color: var(--neon-blue);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 2rem;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.disclaimer-popup p {
    margin-bottom: 1.5rem;
    color: var(--light-color);
    line-height: 1.7;
    font-size: 1.1rem;
}

.disclaimer-popup-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, var(--accent-color), var(--neon-purple));
    color: white;
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.disclaimer-popup-btn::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;
}

.disclaimer-popup-btn:hover::before {
    left: 100%;
}

.disclaimer-popup-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.6);
    border-color: var(--neon-blue);
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .legal-content {
        padding: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100vw;
        height: calc(100vh - 70px);
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        border-top: 2px solid var(--accent-color);
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.4s cubic-bezier(0.77,0,0.175,1), opacity 0.4s cubic-bezier(0.77,0,0.175,1);
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
        margin: 0.5rem 0;
        border-radius: 0;
    }

    .hero-section {
        padding: 4rem 0;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .legal-section h1 {
        font-size: 2.2rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .disclaimer-popup-content {
        padding: 2rem;
        width: 95%;
    }
}

@media (max-width: 576px) {
    .game-frame {
        height: 450px;
    }
    
    .hero-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .legal-content {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .disclaimer-popup-content {
        padding: 1.5rem;
    }

    /* Responsive About Image */
    .about-image {
        min-height: 220px;
        height: 45vw;
        max-height: 260px;
        width: 100%;
        margin-bottom: 2rem;
        border-radius: var(--border-radius);
        background-size: cover;
        background-position: center;
        display: block;
    }
    .about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: var(--border-radius);
    }
}