/* ================================================
   Sunny Field Crfts - Jungle Gaming Theme
   ================================================ */

:root {
    /* Jungle Adventure Palette */
    --jungle-dark: #1a3d2e;
    --jungle-mid: #2d6a4f;
    --jungle-bright: #52b788;
    --leaf-green: #74c69d;
    --lime-accent: #95d5b2;
    --sand-beige: #d4a373;
    --sunset-orange: #ff6b35;
    --sky-blue: #4ea8de;
    --cream-bg: #fef9f3;
    
    /* Text */
    --text-primary: #212529;
    --text-secondary: #495057;
    --text-light: #868e96;
    --text-white: #ffffff;
    
    /* Gradients */
    --jungle-gradient: linear-gradient(135deg, var(--jungle-dark), var(--jungle-mid), var(--jungle-bright));
    --leaf-gradient: linear-gradient(90deg, var(--leaf-green), var(--lime-accent));
    
    /* Spacing */
    --gap-xs: 0.5rem;
    --gap-sm: 1rem;
    --gap-md: 1.5rem;
    --gap-lg: 2rem;
    --gap-xl: 3rem;
    --gap-2xl: 4rem;
    
    /* Effects */
    --shadow-light: 0 2px 8px rgba(26, 61, 46, 0.1);
    --shadow-medium: 0 4px 12px rgba(26, 61, 46, 0.15);
    --shadow-heavy: 0 8px 24px rgba(26, 61, 46, 0.2);
    --transition-fast: all 0.2s ease;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--cream-bg);
    overflow-x: hidden;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--gap-md);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--gap-md);
}

/* ================================================
   Header & Navigation - Unique Design
   ================================================ */

.main-header {
    background: var(--jungle-gradient);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-medium);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--gap-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

.logo-emoji {
    font-size: 2.5rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-primary {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 0.5px;
}

.logo-secondary {
    font-size: 1rem;
    font-weight: 500;
    color: var(--lime-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.toggle-line {
    width: 28px;
    height: 3px;
    background: var(--text-white);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

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

.nav-item {
    padding: 0.625rem 1.5rem;
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-smooth);
    background: rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: visible;
}
/* animated underline */
.nav-item::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 12%;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    width: 60%;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--sunset-orange), var(--jungle-bright));
    transition: transform 260ms cubic-bezier(.2,.8,.2,1);
}

.nav-item:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.nav-item.active {
    background: var(--sunset-orange);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

/* ================================================
   Hero Section - Unique Pattern
   ================================================ */

.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--text-white);
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(180deg, rgba(8,12,12,0.45), rgba(8,12,12,0.25)), url("../img/hero.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.55) contrast(1.05) saturate(0.92);
    z-index: 0;
    transition: filter 0.35s ease;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--gap-xl) var(--gap-md);
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 107, 53, 0.2);
    border: 2px solid var(--sunset-orange);
    border-radius: 50px;
    color: var(--sunset-orange);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: var(--gap-md);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.hero-heading {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: var(--gap-md);
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.hero-description {
    font-size: 1.4rem;
    color: var(--lime-accent);
    margin-bottom: var(--gap-xl);
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: inline-block;
    padding: 1.125rem 3rem;
    background: var(--sunset-orange);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta:hover {
    background: var(--jungle-bright);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(82, 183, 136, 0.4);
}

/* ================================================
   About Section
   ================================================ */

.about-section {
    padding: var(--gap-2xl) 0;
    background: var(--cream-bg);
}

.about-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--gap-xl);
    align-items: start;
}

.section-title {
    font-size: 2.8rem;
    color: var(--jungle-dark);
    margin-bottom: var(--gap-md);
    font-weight: 900;
}

.section-title.centered {
    text-align: center;
}

.about-paragraph {
    color: var(--text-secondary);
    margin-bottom: var(--gap-md);
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gap-md);
    margin-top: var(--gap-lg);
}

.highlight-box {
    background: var(--text-white);
    padding: var(--gap-md);
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    border-left: 4px solid var(--jungle-bright);
    transition: var(--transition-smooth);
}

.highlight-box:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-medium);
}

.highlight-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: var(--gap-sm);
}

.highlight-box h3 {
    font-size: 1.3rem;
    color: var(--jungle-mid);
    margin-bottom: var(--gap-xs);
}

.highlight-box p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.about-visual-area {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gap-md);
}

.visual-item {
    background: linear-gradient(135deg, var(--jungle-bright), var(--leaf-green));
    padding: var(--gap-lg);
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

.visual-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-heavy);
}

.visual-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-white);
    line-height: 1;
}

.visual-label {
    font-size: 1rem;
    color: var(--text-white);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ================================================
   Features Section - Unique Grid
   ================================================ */

.features-section {
    padding: var(--gap-2xl) 0;
    background: linear-gradient(180deg, var(--cream-bg), #e8f5e9);
}

.section-description {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.15rem;
    margin-bottom: var(--gap-xl);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.features-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--gap-lg);
    margin-top: var(--gap-xl);
}

.feature-card {
    background: var(--text-white);
    padding: var(--gap-lg);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--leaf-gradient);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.feature-icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--jungle-bright), var(--sky-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--gap-md);
    box-shadow: var(--shadow-medium);
}

.feature-emoji {
    font-size: 2.5rem;
}

.feature-heading {
    font-size: 1.4rem;
    color: var(--jungle-dark);
    margin-bottom: var(--gap-sm);
    font-weight: 700;
}

.feature-text {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ================================================
   Game Section
   ================================================ */

.game-section {
    padding: var(--gap-2xl) 0;
    background: var(--cream-bg);
}

.game-display {
    margin-top: var(--gap-xl);
}

.game-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--jungle-gradient);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    position: relative;
}

.game-wrapper::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--leaf-gradient);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.5;
}

.game-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: 12px;
    background: var(--text-primary);
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
    display: block;
}

/* ================================================
   Reviews Section
   ================================================ */

.reviews-section {
    padding: var(--gap-2xl) 0;
    background: linear-gradient(180deg, #e8f5e9, var(--cream-bg));
}

.reviews-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--gap-lg);
    margin-top: var(--gap-xl);
}

.review-item {
    background: var(--text-white);
    padding: var(--gap-lg);
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
    border-top: 4px solid var(--sunset-orange);
}

.review-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-heavy);
}

.review-rating {
    font-size: 1.3rem;
    margin-bottom: var(--gap-md);
}

.review-quote {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--gap-md);
    font-style: italic;
    font-size: 1.05rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: var(--gap-sm);
    padding-top: var(--gap-md);
    border-top: 2px solid var(--lime-accent);
}

.author-badge {
    width: 50px;
    height: 50px;
    background: var(--jungle-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: var(--shadow-light);
}

.author-name {
    font-weight: 700;
    color: var(--jungle-mid);
}

.author-time {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ================================================
   Page Banner (Legal Pages)
   ================================================ */

.page-banner {
    background: var(--jungle-gradient);
    padding: var(--gap-xl) 0;
    text-align: center;
    box-shadow: var(--shadow-medium);
}

.banner-title {
    font-size: 3.5rem;
    color: var(--text-white);
    margin-bottom: var(--gap-sm);
    font-weight: 900;
}

.banner-subtitle {
    font-size: 1.3rem;
    color: var(--lime-accent);
}

/* ================================================
   Legal Pages
   ================================================ */

.legal-section {
    padding: var(--gap-2xl) 0;
    background: var(--cream-bg);
}

.warning-block {
    background: linear-gradient(135deg, var(--sunset-orange), var(--sand-beige));
    border-radius: 16px;
    padding: var(--gap-lg);
    margin-bottom: var(--gap-xl);
    display: flex;
    gap: var(--gap-md);
    align-items: start;
    box-shadow: var(--shadow-medium);
}

.warning-symbol {
    font-size: 3.5rem;
    flex-shrink: 0;
}

.warning-text h3 {
    color: var(--jungle-dark);
    font-size: 1.5rem;
    margin-bottom: var(--gap-xs);
}

.warning-text p {
    color: var(--text-primary);
    line-height: 1.7;
}

.legal-document {
    background: var(--text-white);
    padding: var(--gap-2xl);
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
}

.legal-document h2 {
    color: var(--jungle-dark);
    font-size: 1.8rem;
    margin-top: var(--gap-xl);
    margin-bottom: var(--gap-md);
    padding-bottom: var(--gap-sm);
    border-bottom: 3px solid var(--jungle-bright);
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document h3 {
    color: var(--jungle-mid);
    font-size: 1.4rem;
    margin-top: var(--gap-lg);
    margin-bottom: var(--gap-sm);
}

.legal-document p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--gap-md);
}

.legal-document ul {
    margin-bottom: var(--gap-md);
    padding-left: var(--gap-xl);
}

.legal-document li {
    color: var(--text-secondary);
    margin-bottom: var(--gap-xs);
    line-height: 1.7;
}

.legal-document a {
    color: var(--jungle-bright);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid transparent;
    transition: var(--transition-fast);
}

.legal-document a:hover {
    color: var(--sunset-orange);
    border-bottom-color: var(--sunset-orange);
}

/* ================================================
   Contact Section
   ================================================ */

.contact-section {
    padding: var(--gap-2xl) 0;
    background: var(--cream-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--gap-xl);
    margin-top: var(--gap-xl);
}

.contact-form-area {
    background: var(--text-white);
    padding: var(--gap-xl);
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
}

.contact-heading {
    font-size: 2rem;
    color: var(--jungle-dark);
    margin-bottom: var(--gap-lg);
}

.input-group {
    margin-bottom: var(--gap-md);
}

.input-label {
    display: block;
    margin-bottom: var(--gap-xs);
    color: var(--jungle-mid);
    font-weight: 600;
}

.input-field {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--jungle-bright);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition-fast);
    background: var(--cream-bg);
}

.input-field:focus {
    outline: none;
    border-color: var(--jungle-mid);
    box-shadow: 0 0 0 4px rgba(45, 106, 79, 0.1);
}

.input-textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: var(--jungle-gradient);
    color: var(--text-white);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.contact-info-area {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
}

.info-block {
    background: var(--text-white);
    padding: var(--gap-md);
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    border-left: 4px solid var(--sand-beige);
}

.info-emoji {
    font-size: 3rem;
    margin-bottom: var(--gap-sm);
}

.info-heading {
    font-size: 1.3rem;
    color: var(--jungle-dark);
    margin-bottom: var(--gap-xs);
    font-weight: 700;
}

.info-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ================================================
   Play Page
   ================================================ */

.play-game-section {
    padding: var(--gap-2xl) 0;
    background: var(--cream-bg);
}

.game-instructions {
    max-width: 900px;
    margin: var(--gap-xl) auto 0;
    background: var(--text-white);
    padding: var(--gap-lg);
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
}

.instructions-heading {
    font-size: 1.6rem;
    color: var(--jungle-dark);
    margin-bottom: var(--gap-md);
}

.instructions-list {
    list-style: none;
    display: grid;
    gap: var(--gap-sm);
}

.instructions-list li {
    padding-left: 2rem;
    color: var(--text-secondary);
    position: relative;
}

.instructions-list li::before {
    content: '🎯';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* ================================================
   Footer - Unique Design
   ================================================ */

.main-footer {
    background: var(--jungle-gradient);
    color: var(--text-white);
    padding: var(--gap-2xl) 0 var(--gap-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--gap-xl);
    margin-bottom: var(--gap-xl);
    padding-bottom: var(--gap-xl);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-title {
    font-size: 1.25rem;
    margin-bottom: var(--gap-md);
    color: var(--lime-accent);
    font-weight: 700;
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--gap-xs);
}

.footer-menu a {
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-menu a:hover {
    color: var(--sunset-orange);
    transform: translateX(6px);
}

.footer-notice {
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 107, 53, 0.4);
    border-radius: 16px;
    padding: var(--gap-lg);
    margin-bottom: var(--gap-lg);
    display: flex;
    gap: var(--gap-md);
    backdrop-filter: blur(10px);
}

.notice-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.notice-heading {
    color: var(--sunset-orange);
    font-size: 1.25rem;
    margin-bottom: var(--gap-xs);
}

.notice-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--gap-md);
    color: rgba(255, 255, 255, 0.7);
}

/* ================================================
   Modal/Popup
   ================================================ */

.modal-screen {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26, 61, 46, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.3s ease;
}

.modal-screen.show {
    display: flex;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-dialog {
    background: var(--text-white);
    border-radius: 20px;
    padding: var(--gap-2xl);
    max-width: 520px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideUp 0.4s ease;
    border: 4px solid var(--jungle-bright);
}

@keyframes modalSlideUp {
    from { 
        transform: translateY(50px); 
        opacity: 0;
    }
    to { 
        transform: translateY(0); 
        opacity: 1;
    }
}

.modal-symbol {
    font-size: 4.5rem;
    text-align: center;
    margin-bottom: var(--gap-md);
}

.modal-heading {
    font-size: 2rem;
    color: var(--jungle-dark);
    text-align: center;
    margin-bottom: var(--gap-md);
    font-weight: 900;
}

.modal-body {
    color: var(--text-secondary);
    line-height: 1.8;
    text-align: center;
    margin-bottom: var(--gap-lg);
    font-size: 1.05rem;
}

.modal-action {
    width: 100%;
    padding: 1.125rem;
    background: var(--jungle-gradient);
    color: var(--text-white);
    border: none;
    border-radius: 10px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-action:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

/* ================================================
   Responsive Design
   ================================================ */

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--jungle-gradient);
        flex-direction: column;
        padding: var(--gap-md);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition-smooth);
        box-shadow: var(--shadow-heavy);
    }
    
    .nav-list.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-item {
        width: 100%;
        text-align: center;
        padding: 1rem;
        background: transparent;

    }
    
    .hero-heading {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .about-layout {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .banner-title {
        font-size: 2.5rem;
    }
    
    .game-wrapper {
        padding: 1rem;
    }
    
    .modal-dialog {
        padding: var(--gap-lg);
    }
}
