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

:root {
    --bg: #050816;
    --bg-alt: #090f25;
    --accent-pink: #ff9ae3;
    --accent-blue: #7ad7ff;
    --accent-purple: #b38bff;
    --accent-gold: #ffd27f;
    --text-main: #fdfbff;
    --text-muted: #c9c3e6;
    --card-bg: rgba(15, 23, 42, 0.88);
    --border-glow: rgba(255, 255, 255, 0.08);
    --shadow-soft: 0 18px 45px rgba(12, 6, 64, 0.8);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-pill: 999px;
    --transition-fast: 0.2s ease-out;
    --transition-med: 0.3s ease-out;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Yusei Magic", sans-serif;
    background:
        radial-gradient(circle at 0% 0%, #261b55 0, transparent 50%),
        radial-gradient(circle at 100% 0%, #203a72 0, transparent 55%),
        radial-gradient(circle at 50% 100%, #40186b 0, transparent 60%),
        linear-gradient(160deg, #050816 0%, #050816 60%, #0b1021 100%);
    color: var(--text-main);
    min-height: 100vh;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.section-alt {
    background: 
        radial-gradient(circle at 20% 0%, rgba(255, 154, 227, 0.09) 0, transparent 50%),
        radial-gradient(circle at 80% 100%, rgba(122, 215, 255, 0.12) 0, transparent 50%),
        url('./img/game-bg.jpg') center/cover no-repeat;
    background-attachment: fixed;
}

.section-alt .container {
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.section h2 {
    font-family: "Chewy", cursive;
    font-size: clamp(2.1rem, 2.6vw, 2.6rem);
    margin-bottom: 1rem;
}

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

.center {
    text-align: center;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(16px);
    background: linear-gradient(to bottom, rgba(5, 8, 22, 0.96), rgba(5, 8, 22, 0.85));
    border-bottom: 1px solid var(--border-glow);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 0;
    gap: 1.5rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: "Chewy", cursive;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: conic-gradient(from 160deg, #ff9ae3, #b38bff, #7ad7ff, #ffd27f, #ff9ae3);
    color: #050816;
    font-size: 1.3rem;
    box-shadow: 0 0 24px rgba(255, 154, 227, 0.85);
}

.logo-text {
    background: linear-gradient(120deg, #ffffff, #ffe4ff, #b2e6ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 50;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-main);
    border-radius: 3px;
    transition: all var(--transition-fast);
    transform-origin: center;
}

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

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

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

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-family: "Chewy", cursive;
    font-size: 0.95rem;
}

.nav-link {
    position: relative;
    padding-bottom: 0.15rem;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-blue));
    transition: width var(--transition-fast);
}

.nav-link:hover {
    color: var(--text-main);
}

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

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        padding: 1rem 0;
    }
    
    .menu-toggle {
        display: flex;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(5, 8, 22, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 5rem;
        gap: 2rem;
        transition: transform var(--transition-med);
        transform: translateY(-100%);
        z-index: 40;
        border-bottom: 1px solid var(--border-glow);
    }
    
    .main-nav.active {
        transform: translateY(0);
    }
    
    .main-nav .nav-link {
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
    }
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 5.5rem 0 4.5rem;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 10%, rgba(255, 154, 227, 0.22) 0, transparent 50%),
        radial-gradient(circle at 90% 20%, rgba(122, 215, 255, 0.25) 0, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(255, 210, 127, 0.18) 0, transparent 55%);
    opacity: 0.5;
    pointer-events: none;
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
    gap: 3.5rem;
    align-items: center;
}

.hero-text {
    max-width: 560px;
}

.hero-kicker {
    font-family: "Chewy", cursive;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-blue);
    margin-bottom: 0.9rem;
}

.hero h1 {
    font-family: "Chewy", cursive;
    font-size: clamp(2.4rem, 3vw, 3.1rem);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.hero-subtitle {
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 0.98rem;
    margin-bottom: 1.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.4rem;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.hero-meta span {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: radial-gradient(circle at 0% 0%, rgba(255, 154, 227, 0.22) 0, transparent 60%);
}

.hero-art {
    position: relative;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-glow);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.4rem;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    font-size: 0.96rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
    white-space: nowrap;
}

.btn-primary {
    background: radial-gradient(circle at 0% 0%, #ffe9ff 0, #ff9ae3 40%, #b38bff 100%);
    color: #250d3b;
    box-shadow: 0 16px 36px rgba(255, 154, 227, 0.5);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 40px rgba(255, 154, 227, 0.7);
}

.btn-ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.26);
    color: var(--text-main);
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, rgba(255, 154, 227, 0.2), rgba(122, 215, 255, 0.2));
}

.btn-block {
    width: 100%;
}

.section-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
    gap: 3rem;
    align-items: flex-start;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header.center {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header p {
    margin-top: 0.75rem;
    color: var(--text-muted);
}

.section-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.card {
    background: rgba(15, 23, 42, 0.95);
    border-radius: var(--radius-lg);
    padding: 1.4rem 1.5rem;
    border: 1px solid var(--border-glow);
    box-shadow: var(--shadow-soft);
}

.card h3 {
    font-family: "Chewy", cursive;
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

.card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.check-list {
    list-style: none;
    margin-top: 0.4rem;
}

.check-list li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.35rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.check-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-gold);
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1rem 0 1.4rem;
    justify-content: center;
}

.pill {
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.8rem;
    color: var(--text-muted);
    background: radial-gradient(circle at 0% 0%, rgba(179, 139, 255, 0.28) 0, transparent 60%);
}

.game-preview-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid var(--border-glow);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
}

.game-preview-header {
    display: flex;
    gap: 0.35rem;
    padding: 0.7rem 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.game-preview-header .dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
}

.game-preview-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.game-content-wrapper {
    margin-top: 1.5rem;
    max-width: 600px;
}

.game-content-wrapper h2 {
    font-family: "Chewy", cursive;
    font-size: clamp(1.8rem, 2.2vw, 2.2rem);
    margin-bottom: 1rem;
}

.game-content-wrapper p {
    margin-bottom: 0.9rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.game-image-container {
    width: 100%;
    max-width: 350px;
    margin: 0 auto 1.5rem;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border-glow);
    box-shadow: var(--shadow-soft);
}

.game-preview-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.preview-caption {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0.8rem auto 1.5rem;
    max-width: 500px;
    text-align: center;
}



.faq-list {
    max-width: 720px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    border-radius: var(--radius-md);
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid var(--border-glow);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.faq-question {
    width: 100%;
    padding: 0.95rem 1.2rem;
    background: transparent;
    border: none;
    color: var(--text-main);
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: "Chewy", cursive;
    font-size: 0.95rem;
}

.faq-icon {
    margin-left: 0.75rem;
    font-size: 1.1rem;
    color: var(--accent-blue);
    transition: transform var(--transition-fast);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.2rem;
    transition: max-height var(--transition-med);
}

.faq-answer p {
    padding-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 260px;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 2.8rem;
    align-items: flex-start;
}

.contact-copy {
    background: rgba(15, 23, 42, 0.95);
    border-radius: var(--radius-lg);
    padding: 1.7rem 1.6rem;
    border: 1px solid var(--border-glow);
    box-shadow: var(--shadow-soft);
}

.contact-copy p {
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.contact-highlights {
    list-style: none;
    margin: 0.6rem 0 1rem;
}

.contact-highlights li {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding-left: 1.1rem;
    position: relative;
    margin-bottom: 0.35rem;
}

.contact-highlights li::before {
    content: "♥";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-pink);
}

.contact-email a {
    color: var(--accent-blue);
}

.contact-form-card {
    background: rgba(15, 23, 42, 0.95);
    border-radius: var(--radius-lg);
    padding: 1.7rem 1.6rem;
    border: 1px solid var(--border-glow);
    box-shadow: var(--shadow-soft);
}

.field {
    margin-bottom: 1rem;
}

.field label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.field input,
.field textarea {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(5, 8, 22, 0.8);
    color: var(--text-main);
    padding: 0.65rem 0.8rem;
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.field textarea {
    resize: vertical;
    min-height: 120px;
}

.field input::placeholder,
.field textarea::placeholder {
    color: rgba(201, 195, 230, 0.7);
}

.field input:focus,
.field textarea:focus {
    border-color: rgba(255, 154, 227, 0.75);
    box-shadow: 0 0 0 1px rgba(255, 154, 227, 0.6);
    background: rgba(5, 8, 22, 0.95);
}

.site-footer {
    margin-top: 3rem;
    background: #050716;
    border-top: 1px solid var(--border-glow);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.3fr;
    gap: 2rem;
    padding: 2.5rem 0 2rem;
}

.footer-logo {
    margin-bottom: 0.75rem;
}

.footer-disclaimer {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-disclaimer.prominent {
    font-size: 0.95rem;
    color: #ff9ae3;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.5rem;
    padding: 0.8rem;
    background: rgba(15, 23, 42, 0.95);
    border-radius: var(--radius-md);
    border: 1px solid #ff9ae3;
    box-shadow: 0 0 15px rgba(255, 154, 227, 0.3);
}

.footer-col h4 {
    font-family: "Chewy", cursive;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

.footer-links {
    list-style: none;
    font-size: 0.86rem;
    color: var(--text-muted);
}

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

.footer-links a {
    color: inherit;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-blue);
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    align-items: center;
}

.partner-logos img {
    height: 40px;
    width: auto;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.85rem 0;
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.footer-bottom-inner .footer-disclaimer.prominent {
    margin-bottom: 0.5rem;
    padding: 0.8rem;
}

.legal-page {
    padding-top: 4.5rem;
    padding-bottom: 4rem;
}

.legal-inner {
    max-width: 780px;
}

.legal-inner h1 {
    font-family: "Chewy", cursive;
    font-size: clamp(2rem, 2.4vw, 2.3rem);
    margin-bottom: 0.5rem;
}

.legal-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.7rem;
}

.legal-inner h2 {
    font-family: "Chewy", cursive;
    font-size: 1.2rem;
    margin-top: 1.8rem;
    margin-bottom: 0.5rem;
}

.legal-inner h3 {
    font-family: "Chewy", cursive;
    font-size: 1.03rem;
    margin-top: 1.2rem;
    margin-bottom: 0.4rem;
}

.legal-inner p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 0.5rem;
}

.legal-inner ul {
    margin: 0.4rem 0 0.8rem 1.2rem;
}

.legal-inner li {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
    line-height: 1.7;
}

.section-game-page {
    padding-top: 4.5rem;
    padding-bottom: 4rem;
}

.game-page-header {
    max-width: 700px;
}

.game-page-header h1 {
    font-family: "Chewy", cursive;
    font-size: clamp(2rem, 2.5vw, 2.3rem);
    margin-bottom: 0.8rem;
}

.game-page-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.game-frame-wrapper {
    margin-top: 2rem;
}

.game-frame-aspect {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-glow);
    background: #050816;
    box-shadow: var(--shadow-soft);
}

.game-frame-aspect::before {
    content: "";
    display: block;
    padding-top: 56.25%;
}

.game-frame-aspect iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.game-note {
    margin-top: 0.8rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modal-dialog {
    position: relative;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 2rem;
    max-width: 90%;
    width: 400px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-glow);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal.show .modal-dialog {
    transform: translateY(0);
}

.modal-dialog h2 {
    font-family: "Chewy", cursive;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--text-main);
}

.modal-dialog p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Cookie Consent Popup */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-glow);
    z-index: 1000;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.cookie-consent-content p {
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.cookie-consent-content p a {
    color: var(--accent-blue);
    text-decoration: underline;
}

.cookie-consent-content p a:hover {
    color: var(--accent-pink);
}

.cookie-consent-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .cookie-consent {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 1.25rem;
    }
    
    .cookie-consent-buttons {
        flex-direction: column;
    }
    
    .cookie-consent-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 960px) {
    .hero-content {
        grid-template-columns: minmax(0, 1fr);
        gap: 3rem;
    }

    .hero-art {
        order: -1;
    }

    .section-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .section-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .header-inner {
        padding: 0.7rem 0;
    }

    .main-nav {
        gap: 1rem;
        font-size: 0.86rem;
    }

    .hero {
        padding-top: 4rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-meta {
        justify-content: center;
    }

    .section {
        padding: 3.5rem 0;
    }

    .section-columns {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer-main {
        grid-template-columns: minmax(0, 1fr);
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-col {
        margin-bottom: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

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

    .partner-logos {
        gap: 0.8rem;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .partner-logos {
        gap: 0.6rem;
    }

    .footer-main {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-col {
        margin-bottom: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}