/* ========================================
   Scandi Joy - Entertainment Platform
   Unique Scandinavian-Inspired Design
   ======================================== */

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

body {
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #1a2332;
    background: linear-gradient(135deg, #0f1419 0%, #1a2840 50%, #2d3e5f 100%);
    min-height: 100vh;
}

/* ========== Header & Navigation ========== */
.site-header {
    background: rgba(15, 20, 25, 0.95);
    border-bottom: 2px solid #d4af37;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.brand-logo img {
    height: 50px;
    width: auto;
}

.brand-name {
    color: #d4af37;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #d4af37;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.toggle-active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

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

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #e8eef5;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #d4af37;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link.active {
    color: #d4af37;
    font-weight: 600;
}

.nav-link:hover {
    color: #d4af37;
}

/* ========== Hero Section ========== */
.hero-area {
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(15, 20, 25, 0.9) 0%, rgba(26, 40, 64, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.hero-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 50px,
        rgba(212, 175, 55, 0.03) 50px,
        rgba(212, 175, 55, 0.03) 51px
    );
    pointer-events: none;
}

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

.hero-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #d4af37;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #e8eef5;
}

/* Play Page Hero Section */
.play-hero {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.9) 0%, rgba(26, 40, 64, 0.8) 100%);
    text-align: left;
}

/* Home Page Hero Section */
.home-hero {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.95) 0%, rgba(26, 40, 64, 0.9) 100%);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.home-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 60px,
        rgba(212, 175, 55, 0.02) 60px,
        rgba(212, 175, 55, 0.02) 61px
    );
    pointer-events: none;
}

.hero-content-home {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text-home h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #d4af37;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.hero-text-home p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #e8eef5;
    line-height: 1.8;
    opacity: 0.95;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.feature-icon {
    font-size: 1.2rem;
}

.feature-text {
    color: #e8eef5;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.secondary-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.hero-image-home {
    position: relative;
}

.home-hero-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.home-hero-img:hover {
    transform: scale(1.02);
}

.hero-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #0f1419;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.badge-text {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.hero-content-play {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text-play h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #d4af37;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-text-play p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e8eef5;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #e8eef5;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-image-play {
    position: relative;
}

.play-hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.play-hero-img:hover {
    transform: scale(1.02);
}

.primary-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #0f1419;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

/* ========== Notice Panel (Disclaimer) ========== */
.notice-panel {
    padding: 3rem 2rem;
    background: rgba(26, 40, 64, 0.7);
}

.notice-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: rgba(15, 20, 25, 0.8);
    border-left: 5px solid #d4af37;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

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

.notice-text h3 {
    color: #d4af37;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.notice-text p {
    color: #e8eef5;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.info-btn {
    padding: 0.7rem 1.8rem;
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.info-btn:hover {
    background: #d4af37;
    color: #0f1419;
}

/* ========== Game Zone ========== */
.game-zone {
    padding: 4rem 2rem;
    background: rgba(15, 20, 25, 0.6);
}

.game-zone.play-page {
    min-height: calc(100vh - 200px);
}

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

.zone-container h1,
.zone-container h2 {
    text-align: center;
    color: #d4af37;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.zone-subtitle {
    text-align: center;
    color: #e8eef5;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Vertical game list styles */
.game-list-vertical {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    margin-top: 2rem;
}

.game-item {
    width: 100%;
    max-width: 900px;
    background: rgba(26, 40, 64, 0.7);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    padding: 2rem;
    text-align: center;
}

.game-item h3 {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.game-item .game-frame {
    display: block;
    width: 100%;
    height: 500px;
    border: none;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .game-item .game-frame {
        height: auto;
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 480px) {
    .game-item .game-frame {
        height: auto;
        aspect-ratio: 16 / 9;
    }
}

.game-selector {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.selector-tab {
    padding: 0.8rem 2rem;
    background: rgba(26, 40, 64, 0.8);
    border: 2px solid #2d3e5f;
    color: #e8eef5;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.selector-tab:hover {
    border-color: #d4af37;
    background: rgba(45, 62, 95, 0.9);
}

.selector-tab.active-tab {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    border-color: #d4af37;
    color: #0f1419;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.game-frame-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
    display: none;
}

.game-frame.active-frame {
    display: block;
}

/* ========== About Section ========== */
.about-zone {
    padding: 4rem 2rem;
    background: rgba(26, 40, 64, 0.5);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    color: #d4af37;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #e8eef5;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* ========== Testimonials Section ========== */
.testimonials-zone {
    padding: 4rem 2rem;
    background: rgba(15, 20, 25, 0.6);
}

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

.testimonials-container h2 {
    text-align: center;
    color: #d4af37;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.testimonial-card {
    background: rgba(26, 40, 64, 0.8);
    padding: 2rem;
    border-radius: 10px;
    border-top: 3px solid #d4af37;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.stars {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: #e8eef5;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.reviewer {
    color: #b8b8b8;
    font-style: italic;
    font-size: 0.95rem;
}

/* ========== Features Section ========== */
.features-zone {
    padding: 4rem 2rem;
    background: rgba(26, 40, 64, 0.5);
}

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

.features-container h2 {
    text-align: center;
    color: #d4af37;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.feature-item {
    background: rgba(15, 20, 25, 0.8);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #2d3e5f;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #d4af37;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: #d4af37;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

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

/* ========== Footer ========== */
.site-footer {
    background: rgba(15, 20, 25, 0.95);
    border-top: 2px solid #d4af37;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand img {
    height: 45px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #b8b8b8;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.link-column h4 {
    color: #d4af37;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.link-column a {
    display: block;
    color: #e8eef5;
    text-decoration: none;
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.link-column a:hover {
    color: #d4af37;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 0;
    border-top: 1px solid #2d3e5f;
}

.footer-disclaimer p {
    color: #b8b8b8;
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid #2d3e5f;
}

.footer-bottom p {
    text-align: center;
    color: #b8b8b8;
    font-size: 0.9rem;
}

/* ========== Scroll to Top Button ========== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #0f1419;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.6);
}

/* ========== Age Verification Modal ========== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content {
    background: linear-gradient(135deg, #1a2840 0%, #2d3e5f 100%);
    padding: 3rem;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    border: 2px solid #d4af37;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
}

.modal-content h2 {
    color: #d4af37;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.modal-content p {
    color: #e8eef5;
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.confirm-btn,
.decline-btn {
    padding: 0.9rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.confirm-btn {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #0f1419;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.confirm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.6);
}

.decline-btn {
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
}

.decline-btn:hover {
    background: rgba(212, 175, 55, 0.1);
}

/* ========== Content Pages (Terms, Privacy, etc.) ========== */
.content-section {
    padding: 4rem 2rem;
    background: rgba(26, 40, 64, 0.6);
    min-height: calc(100vh - 400px);
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(15, 20, 25, 0.8);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.content-container h1 {
    color: #d4af37;
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.updated-date {
    color: #b8b8b8;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.intro-text {
    color: #e8eef5;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.legal-content h2 {
    color: #d4af37;
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content p,
.legal-content ul {
    color: #e8eef5;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.legal-content li {
    margin-bottom: 0.5rem;
}

/* ========== Contact Form ========== */
.contact-form {
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    background: rgba(26, 40, 64, 0.6);
    border: 2px solid #2d3e5f;
    border-radius: 6px;
    color: #e8eef5;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

.submit-btn {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #0f1419;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.6);
}

/* ========== Responsive Design ========== */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(15, 20, 25, 0.98);
        padding: 1rem 0;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .main-nav.nav-active {
        max-height: 400px;
    }

    .nav-link {
        padding: 1rem 2rem;
        width: 100%;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    /* Play Hero Responsive */
    .hero-content-play {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text-play h1 {
        font-size: 2.2rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 1rem;
    }

    .stat-item {
        padding: 0.8rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .play-hero-img {
        height: 250px;
    }

    /* Home Hero Responsive */
    .hero-content-home {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .hero-text-home h1 {
        font-size: 2.5rem;
    }

    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .home-hero-img {
        height: 300px;
    }

    .notice-content {
        flex-direction: column;
        text-align: center;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

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

    .footer-links {
        justify-content: center;
    }

    .game-frame {
        height: 400px;
    }

    .content-container {
        padding: 2rem;
    }

    .modal-content {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-text-play h1 {
        font-size: 1.8rem;
    }

    .hero-text-home h1 {
        font-size: 2rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 0.8rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        text-align: center;
    }

    .home-hero-img {
        height: 220px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 0.5rem;
    }

    .primary-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .selector-tab {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .game-frame {
        height: 300px;
    }

    .play-hero-img {
        height: 200px;
    }
}
