/* GrooveItSocial - Retro Digital Nightlife Styles */

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

:root {
    --dark-bg: #121212;
    --electric-pink: #ff2c70;
    --aqua-neon: #18f9e2;
    --yellow-led: #ffdb4d;
    --vinyl-black: #1f1f1f;
    --text-light: #ffffff;
    --text-muted: #cccccc;
    --gradient-primary: linear-gradient(135deg, var(--electric-pink), var(--aqua-neon));
    --gradient-secondary: linear-gradient(135deg, var(--aqua-neon), var(--yellow-led));
    --shadow-neon: 0 0 20px rgba(255, 44, 112, 0.5);
    --shadow-aqua: 0 0 20px rgba(24, 249, 226, 0.5);
}

body {
    font-family: 'Orbitron', monospace;
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Glitch Effect */
.glitch {
    position: relative;
    animation: glitch 2s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 0.5s infinite;
    color: var(--electric-pink);
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.5s infinite;
    color: var(--aqua-neon);
    z-index: -2;
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    10% { transform: translate(-2px, -2px); }
    20% { transform: translate(2px, 2px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    30% { transform: translate(2px, -2px); }
    60% { transform: translate(-2px, 2px); }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--electric-pink);
}

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

.logo-text {
    font-family: 'Press Start 2P', monospace;
    font-size: 1.2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--electric-pink);
    text-shadow: 0 0 10px var(--electric-pink);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, var(--electric-pink) 0%, var(--dark-bg) 70%);
    opacity: 0.3;
}

.wave-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, var(--aqua-neon) 50%, transparent 70%);
    animation: wave-move 4s ease-in-out infinite;
    opacity: 0.1;
}

@keyframes wave-move {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dj-avatar {
    margin: 2rem 0;
    animation: float 3s ease-in-out infinite;
}

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

.avatar-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    box-shadow: var(--shadow-neon);
}

.avatar-text {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-neon);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 44, 112, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--aqua-neon);
    border: 2px solid var(--aqua-neon);
    box-shadow: var(--shadow-aqua);
}

.btn-secondary:hover {
    background: var(--aqua-neon);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

.btn-game {
    background: var(--gradient-secondary);
    color: var(--dark-bg);
    font-weight: 700;
}

.btn-game:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 219, 77, 0.4);
}

/* Sections */
section {
    padding: 5rem 0;
    position: relative;
}

.about {
    background: linear-gradient(135deg, var(--vinyl-black) 0%, var(--dark-bg) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.glitch-text {
    color: var(--electric-pink);
    font-weight: 600;
    text-shadow: 0 0 10px var(--electric-pink);
}

.floating-avatar {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    animation: float 3s ease-in-out infinite;
}

.avatar-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.3;
    animation: pulse 2s infinite;
}

/* Games Section */
.games {
    background: var(--dark-bg);
}

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

.game-card {
    background: var(--vinyl-black);
    border-radius: 15px;
    padding: 0rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--electric-pink);
    box-shadow: var(--shadow-neon);
}

.game-card:hover::before {
    opacity: 0.1;
}

.game-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    position: relative;
    inset: 0;
    height: 367px;
    overflow: hidden;
}
.game-details{
    padding: 10px;
}
.game-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--aqua-neon);
}

.groove-level {
    margin: 1.5rem 0;
}

.groove-bar {
    width: 100%;
    height: 8px;
    background: var(--vinyl-black);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
    border: 1px solid var(--electric-pink);
}

.groove-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    animation: groove-pulse 2s ease-in-out infinite;
}

@keyframes groove-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.groove-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, var(--vinyl-black) 0%, var(--dark-bg) 100%);
}

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

.testimonial-card {
    background: var(--vinyl-black);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid var(--electric-pink);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-neon);
}

.waveform {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 1.5rem;
    height: 40px;
    align-items: end;
}

.wave-bar {
    width: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: wave-dance 1.5s ease-in-out infinite;
}

.wave-bar:nth-child(1) { height: 20px; animation-delay: 0s; }
.wave-bar:nth-child(2) { height: 35px; animation-delay: 0.1s; }
.wave-bar:nth-child(3) { height: 25px; animation-delay: 0.2s; }
.wave-bar:nth-child(4) { height: 40px; animation-delay: 0.3s; }
.wave-bar:nth-child(5) { height: 15px; animation-delay: 0.4s; }

@keyframes wave-dance {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.5); }
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.testimonial-avatar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.avatar-emoji {
    font-size: 1.5rem;
}

.avatar-name {
    font-weight: 600;
    color: var(--aqua-neon);
}

/* Timeline */
.timeline {
    background: var(--dark-bg);
}

.timeline-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    z-index: 1;
}

.timeline-item {
    text-align: center;
    position: relative;
    z-index: 2;
    background: var(--dark-bg);
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-neon);
}

.timeline-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.timeline-item h3 {
    color: var(--electric-pink);
    margin-bottom: 0.5rem;
}

.timeline-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Disclaimer */
.disclaimer {
    background: linear-gradient(135deg, var(--vinyl-black) 0%, var(--dark-bg) 100%);
}

.disclaimer-box {
    background: var(--vinyl-black);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid var(--yellow-led);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.music-bars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 1rem;
    height: 30px;
    align-items: end;
}

.music-bars .bar {
    width: 3px;
    background: var(--yellow-led);
    border-radius: 2px;
    animation: music-beat 1s ease-in-out infinite;
    opacity: 0.6;
}

.music-bars .bar:nth-child(1) { height: 15px; animation-delay: 0s; }
.music-bars .bar:nth-child(2) { height: 25px; animation-delay: 0.1s; }
.music-bars .bar:nth-child(3) { height: 20px; animation-delay: 0.2s; }
.music-bars .bar:nth-child(4) { height: 30px; animation-delay: 0.3s; }
.music-bars .bar:nth-child(5) { height: 18px; animation-delay: 0.4s; }

@keyframes music-beat {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.3); }
}

.disclaimer-title {
    color: var(--yellow-led);
    font-family: 'Press Start 2P', monospace;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.disclaimer-text {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--vinyl-black);
    padding: 3rem 0 1rem;
    border-top: 2px solid var(--electric-pink);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.record-icon {
    width: 60px;
    height: 60px;
    position: relative;
    margin: 0 auto;
    animation: spin 10s linear infinite;
}

.record-disc {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 50%;
}

.record-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--dark-bg);
    border-radius: 50%;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.footer-center {
    text-align: center;
}

.footer-text {
    font-size: 1.2rem;
    color: var(--aqua-neon);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    display: inline-block;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
    background: var(--vinyl-black);
    border: 1px solid var(--electric-pink);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-neon);
}

.footer-right {
    text-align: center;
}

.back-to-top {
    background: transparent;
    border: 2px solid var(--aqua-neon);
    color: var(--aqua-neon);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', monospace;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
}

.back-to-top:hover {
    background: var(--aqua-neon);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--electric-pink);
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--electric-pink);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--vinyl-black);
    margin: 2% auto;
    border: 2px solid var(--electric-pink);
    border-radius: 15px;
    width: 90%;
    max-width: 1200px;
    height: 90%;
    position: relative;
    overflow: hidden;
}

.modal-header {
    background: var(--gradient-primary);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    color: white;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-body {
    height: calc(100% - 80px);
}

.modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Page Styles */
.contact-section {
    padding: 8rem 0 5rem;
    background: var(--dark-bg);
    min-height: 100vh;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.contact-form-container {
    background: var(--vinyl-black);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--electric-pink);
}

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--aqua-neon);
    font-weight: 600;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    background: var(--dark-bg);
    border: 2px solid var(--vinyl-black);
    border-radius: 8px;
    color: var(--text-light);
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--electric-pink);
    box-shadow: var(--shadow-neon);
}

.input-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: -1;
}

.form-input:focus + .input-glow,
.form-textarea:focus + .input-glow {
    opacity: 0.1;
}

.btn-submit {
    position: relative;
    overflow: hidden;
}

.turntable-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.btn-submit:hover .turntable-effect {
    opacity: 1;
    animation: spin 1s linear infinite;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--vinyl-black);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--aqua-neon);
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-aqua);
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.info-card h3 {
    color: var(--electric-pink);
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--text-muted);
}

.back-to-flow {
    text-align: center;
}

.success-modal .modal-content {
    max-width: 500px;
    height: auto;
    padding: 2rem;
    text-align: center;
}

.success-animation {
    animation: bounce 0.5s ease-out;
}

@keyframes bounce {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
    animation: pulse 2s infinite;
}

/* Legal Pages Styles */
.legal-section {
    padding: 8rem 0 5rem;
    background: var(--dark-bg);
    min-height: 100vh;
}

.legal-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
}

.legal-sidebar {
    background: var(--vinyl-black);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--electric-pink);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-title {
    color: var(--aqua-neon);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.sidebar-link:hover {
    background: var(--dark-bg);
    color: var(--electric-pink);
    transform: translateX(5px);
}

.pixel-icon {
    font-size: 1rem;
}

.legal-content {
    background: var(--vinyl-black);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid var(--aqua-neon);
}

.last-updated {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 3rem;
    text-align: center;
}

.legal-section-content {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--vinyl-black);
    animation: slideInUp 0.6s ease-out;
}

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

.section-heading {
    color: var(--electric-pink);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gradient-primary);
}

.legal-section-content h3 {
    color: var(--aqua-neon);
    margin: 2rem 0 1rem;
    font-size: 1.3rem;
}

.legal-section-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-section-content ul {
    margin: 1rem 0 1.5rem 2rem;
    color: var(--text-muted);
}

.legal-section-content li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.legal-section-content strong {
    color: var(--electric-pink);
}

.contact-info-legal {
    background: var(--dark-bg);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--electric-pink);
    margin: 1.5rem 0;
}

.contact-info-legal p {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .timeline-container::before {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .legal-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .legal-sidebar {
        position: static;
    }
    
    .modal-content {
        width: 95%;
        height: 85%;
        margin: 5% auto;
    }
}