@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap');

:root {
    --bg-dark: #05070f;
    --bg-panel: rgba(13, 16, 29, 0.92);
    --bg-soft: rgba(13, 16, 29, 0.7);
    --accent: #ff7f50;
    --accent-secondary: #8d9dff;
    --text-main: #f5f7ff;
    --text-muted: #a9b1d6;
    --border: rgba(255, 255, 255, 0.12);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --shadow-soft: 0 28px 60px rgba(0, 0, 0, 0.45);
    --shadow-tiny: 0 12px 26px rgba(0, 0, 0, 0.28);
    --transition: all 0.3s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: radial-gradient(120% 140% at 80% 15%, rgba(141, 157, 255, 0.12), rgba(5, 7, 15, 0) 55%) var(--bg-dark);
    color: var(--text-main);
    line-height: 1.65;
    letter-spacing: 0.01em;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius-sm);
}

h1, h2, h3 {
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.04em;
}

p {
    margin: 0;
    color: var(--text-muted);
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(18px);
    background: rgba(5, 7, 15, 0.82);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

.site-header::before {
    content: '';
    position: absolute;
    inset: -140% 45% auto -40%;
    height: 360%;
    background: radial-gradient(circle at center, rgba(141, 157, 255, 0.35), rgba(255, 127, 80, 0) 55%);
    transform: rotate(12deg);
    pointer-events: none;
    opacity: 0.45;
}

.header-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
    transition: none;
}

.logo:hover,
.logo:focus-visible {
    transform: none;
    box-shadow: none;
}

.logo-title {
    font-size: 0.92rem;
    letter-spacing: 0.16em;
}

.logo-year {
    font-size: 0.9rem;
    color: var(--accent-secondary);
    text-shadow: 0 0 18px rgba(141, 157, 255, 0.45);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    position: relative;
    -webkit-tap-highlight-color: rgba(255, 127, 80, 0.2);
    touch-action: manipulation;
}

.menu-toggle-bar {
    width: 100%;
    height: 3px;
    background: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

.main-nav {
    display: flex;
    gap: 24px;
}

.nav-link {
    font-weight: 500;
    opacity: 0.7;
    position: relative;
    padding-bottom: 4px;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
    opacity: 1;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after {
    width: 100%;
}

.header-meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    border-radius: 0;
    background: none;
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(241, 244, 255, 0.86);
    box-shadow: none;
}

.header-meta-dot {
    display: none;
}

.header-meta-year {
    font-weight: 700;
    color: var(--accent);
}

.header-meta-label {
    letter-spacing: 0.18em;
}


.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.game-header {
    position: relative;
    padding: 120px 32px 140px;
    display: flex;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: radial-gradient(circle at 15% 20%, rgba(255, 127, 80, 0.18), rgba(5, 7, 15, 0) 55%) var(--bg-dark);
}

.game-header-gallery {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.game-header-gallery img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: contain;
    opacity: 0;
    filter: saturate(1.05) brightness(0.92);
    transition: opacity 1.6s ease;
}

.game-header-gallery img.is-active {
    opacity: 1;
}

.game-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(140deg, rgba(8, 11, 24, 0.95), rgba(8, 11, 24, 0.55));
    pointer-events: none;
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 3;
    max-width: 720px;
    display: grid;
    gap: 22px;
    justify-items: center;
}

.badge {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    padding: 10px 22px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(115deg, rgba(141, 157, 255, 0.2), rgba(255, 127, 80, 0.12));
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.18em;
}

.header-ornament {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    pointer-events: none;
}

.bubble {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), rgba(255, 127, 80, 0.25));
    filter: blur(12px);
    opacity: 0.14;
    animation: floaty 12s ease-in-out infinite;
}

.bubble:nth-child(2) {
    width: 160px;
    height: 160px;
    animation-delay: -4s;
    opacity: 0.2;
}

.bubble:nth-child(3) {
    width: 100px;
    height: 100px;
    animation-delay: -8s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.page-fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

.page-fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.page-fade-in-delay-1 {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.1s forwards;
}

.page-fade-in-delay-2 {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.page-fade-in-delay-3 {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.page-fade-in-delay-4 {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

@media (prefers-reduced-motion: reduce) {
    .page-fade-in,
    .page-fade-in-up,
    .page-fade-in-delay-1,
    .page-fade-in-delay-2,
    .page-fade-in-delay-3,
    .page-fade-in-delay-4 {
        animation: none;
        opacity: 1;
    }
}

@keyframes floaty {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-18px) scale(1.06);
    }
}

main {
    padding: 0 32px 120px;
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.about-game {
    max-width: 1180px;
    margin: 0 auto;
    padding: 48px;
    background: var(--bg-panel);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 46px;
}

.section-header {
    display: grid;
    gap: 16px;
}

.section-header h2 {
    font-size: clamp(2rem, 3vw, 2.6rem);
}

.section-header p {
    font-size: 1.05rem;
}

.preview-grid {
    display: grid;
    grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
    gap: 36px;
    align-items: start;
}

.preview-media {
    margin: 0;
    background: var(--bg-soft);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    box-shadow: var(--shadow-tiny);
}

.preview-media figcaption {
    padding: 18px 22px;
    font-size: 0.95rem;
    color: var(--text-muted);
    background: rgba(8, 11, 24, 0.8);
}

.preview-description {
    display: grid;
    gap: 18px;
}

.preview-description h3 {
    font-size: 1.6rem;
}

.preview-description p {
    font-size: 1rem;
    color: rgba(245, 247, 255, 0.85);
}

.challenge-types {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    gap: 36px;
}

.challenge-types h2 {
    font-size: clamp(1.9rem, 3vw, 2.4rem);
}

.challenge-grid {
    display: grid;
    gap: 26px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.challenge-grid article {
    padding: 30px 28px;
    border-radius: var(--radius-md);
    background: rgba(13, 16, 29, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-tiny);
    transition: var(--transition);
}

.challenge-grid article:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 127, 80, 0.45);
    box-shadow: 0 24px 40px rgba(255, 127, 80, 0.18);
}

.challenge-grid h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.flavor-shots {
    max-width: 980px;
    margin: 0 auto;
    padding: 48px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(255, 127, 80, 0.15), rgba(141, 157, 255, 0.12));
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: var(--shadow-tiny);
}

.flavor-shots h2 {
    font-size: 2rem;
    margin-bottom: 18px;
}

.flavor-shots details {
    background: rgba(5, 7, 15, 0.6);
    padding: 20px 24px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: border-color 0.3s ease;
}

.flavor-shots summary {
    cursor: pointer;
    font-weight: 600;
    position: relative;
    list-style: none;
}

.flavor-shots summary::marker,
.flavor-shots summary::-webkit-details-marker {
    display: none;
}

.flavor-shots summary::after {
    content: '+';
    position: absolute;
    right: 0;
    transition: transform 0.3s ease;
}

.flavor-shots details[open] summary::after {
    transform: rotate(45deg);
}

.flavor-shots ul {
    margin: 18px 0 0;
    padding-left: 20px;
    color: rgba(245, 247, 255, 0.85);
}

.flavor-shots li {
    margin-bottom: 10px;
}

.cta-section {
    max-width: 1080px;
    margin: 0 auto;
    padding: 52px 48px;
    border-radius: var(--radius-lg);
    background: linear-gradient(115deg, rgba(255, 127, 80, 0.18), rgba(141, 157, 255, 0.18));
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 28px 60px rgba(141, 157, 255, 0.16);
}

.cta-content {
    display: grid;
    gap: 18px;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 3.2vw, 2.6rem);
}

.cta-content p {
    color: rgba(245, 247, 255, 0.88);
}

.cta-button {
    justify-self: center;
    margin-top: 12px;
    padding: 14px 34px;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--accent), var(--accent-secondary));
    color: var(--bg-dark);
    font-weight: 600;
    letter-spacing: 0.04em;
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    -webkit-tap-highlight-color: rgba(255, 127, 80, 0.2);
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
}

.cta-button:hover,
.cta-button:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(255, 127, 80, 0.28);
}

.gallery {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    gap: 32px;
}

.gallery h2 {
    font-size: clamp(1.9rem, 3vw, 2.4rem);
}

.gallery-grid {
    display: grid;
    gap: 26px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.gallery figure {
    margin: 0;
    background: rgba(13, 16, 29, 0.82);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-shadow: var(--shadow-tiny);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.gallery figure:hover {
    transform: translateY(-6px);
    border-color: rgba(141, 157, 255, 0.45);
}

.gallery figcaption {
    padding: 16px 22px;
    color: var(--text-muted);
    background: rgba(8, 11, 24, 0.78);
}

.site-footer {
    margin-top: 120px;
    padding: 90px 32px 110px;
    background: rgba(5, 7, 15, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.feedback-form {
    display: grid;
    gap: 16px;
    padding: 36px 32px;
    border-radius: var(--radius-md);
    background: rgba(13, 16, 29, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-tiny);
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    text-align: left;
}

.feedback-form h2 {
    font-size: 1.6rem;
}

.feedback-form p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.feedback-form label {
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    color: rgba(245, 247, 255, 0.82);
}

.feedback-form input,
.feedback-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(8, 11, 24, 0.78);
    color: var(--text-main);
    font: inherit;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.feedback-form input:focus,
.feedback-form textarea:focus {
    border-color: rgba(141, 157, 255, 0.55);
    box-shadow: 0 0 0 3px rgba(141, 157, 255, 0.18);
}

.feedback-form textarea {
    resize: vertical;
    min-height: 120px;
}

.feedback-form button {
    margin-top: 12px;
    padding: 13px 26px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(120deg, var(--accent), var(--accent-secondary));
    color: var(--bg-dark);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    -webkit-tap-highlight-color: rgba(255, 127, 80, 0.2);
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
}

.feedback-form button:hover,
.feedback-form button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 24px 48px rgba(255, 127, 80, 0.25);
}

.footer-links {
    display: inline-flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.footer-links a {
    font-weight: 500;
    color: rgba(245, 247, 255, 0.85);
    padding: 6px 0;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: linear-gradient(120deg, var(--accent), var(--accent-secondary));
    transition: width 0.3s ease;
}

.footer-links a:hover::after,
.footer-links a:focus-visible::after {
    width: 100%;
}

.footer-note {
    margin: 0;
    color: rgba(169, 177, 214, 0.6);
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .preview-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .menu-toggle {
        display: flex;
    }

    .header-inner {
        flex-wrap: nowrap;
        justify-content: space-between;
        position: relative;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        min-height: 100vh;
        max-height: 100vh;
        background: linear-gradient(135deg, rgba(9, 12, 24, 0.98), rgba(7, 9, 19, 0.98));
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        padding: 80px 24px 40px;
        transform: translateX(-100%);
        transition: transform 0.3s ease, opacity 0.3s ease;
        opacity: 0;
        visibility: hidden;
        z-index: 1001;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
        margin: 0;
        border: none;
    }

    .main-nav.nav-open {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 16px 24px;
        width: 100%;
        text-align: center;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        opacity: 1;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link:focus-visible,
    .nav-link.active {
        background: linear-gradient(120deg, rgba(255, 127, 80, 0.2), rgba(141, 157, 255, 0.2));
        border-color: rgba(255, 127, 80, 0.4);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(255, 127, 80, 0.2);
    }

    .header-meta {
        display: none;
    }

    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
    }

    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        pointer-events: none;
    }
}

@media (max-width: 900px) {
    .header-inner {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .header-meta {
        order: 3;
    }
}


@media (max-width: 760px) {
    .game-header {
        padding: 90px 20px 100px;
        min-height: auto;
    }

    .header-content {
        gap: 18px;
    }

    .badge {
        font-size: 0.8rem;
        padding: 8px 18px;
    }

    .game-header h1 {
        font-size: clamp(1.8rem, 5vw, 2.4rem);
    }

    .game-header p {
        font-size: 0.95rem;
    }

    .game-header-gallery img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: saturate(1) brightness(0.92);
    }

    main {
        padding: 0 20px 70px;
        gap: 70px;
    }

    .about-game,
    .flavor-shots {
        padding: 32px 24px;
    }

    .section-header h2 {
        font-size: clamp(1.6rem, 4vw, 2rem);
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .preview-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .preview-description h3 {
        font-size: 1.4rem;
    }

    .cta-section {
        padding: 36px 24px;
    }

    .cta-content h2 {
        font-size: clamp(1.6rem, 4vw, 2rem);
    }

    .cta-button {
        width: 100%;
        padding: 14px 28px;
    }

    .gallery-grid,
    .challenge-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }

    .challenge-grid article {
        padding: 24px 20px;
    }

    .challenge-grid h3 {
        font-size: 1.2rem;
    }

    .logo {
        padding: 0;
        letter-spacing: 0.12em;
        justify-content: flex-start;
    }

    .main-nav {
        gap: 12px;
    }
}

@media (max-width: 520px) {
    html {
        font-size: 15px;
    }

    .game-header {
        padding: 70px 16px 80px;
    }

    .badge {
        font-size: 0.75rem;
        letter-spacing: 0.12em;
        padding: 8px 16px;
    }

    .game-header h1 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .game-header p {
        font-size: 0.9rem;
    }

    .about-game {
        padding: 28px 18px;
    }

    .section-header h2 {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .preview-description h3 {
        font-size: 1.3rem;
    }

    .preview-description p {
        font-size: 0.9rem;
    }

    .flavor-shots {
        padding: 28px 18px;
    }

    .flavor-shots h2 {
        font-size: 1.6rem;
    }

    .flavor-shots details {
        padding: 16px 18px;
    }

    .flavor-shots summary {
        font-size: 0.95rem;
    }

    .flavor-shots ul {
        font-size: 0.9rem;
    }

    .cta-section {
        padding: 32px 20px;
    }

    .cta-content h2 {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
    }

    .cta-content p {
        font-size: 0.9rem;
    }

    .gallery h2 {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
    }

    .gallery-grid,
    .challenge-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .challenge-types h2 {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
    }

    .challenge-grid article {
        padding: 20px 18px;
    }

    .challenge-grid h3 {
        font-size: 1.1rem;
    }

    .challenge-grid p {
        font-size: 0.9rem;
    }

    .feedback-form {
        padding: 24px 20px;
    }

    .feedback-form h2 {
        font-size: 1.4rem;
    }

    .feedback-form p {
        font-size: 0.9rem;
    }

    .feedback-form input,
    .feedback-form textarea {
        padding: 12px 14px;
        font-size: 0.95rem;
    }

    .feedback-form button {
        width: 100%;
        padding: 12px 24px;
    }

    .logo {
        justify-content: flex-start;
        font-size: 0.85rem;
    }

    .logo-title {
        font-size: 0.85rem;
    }

    .logo-year {
        font-size: 0.8rem;
    }

    .main-nav {
        padding: 70px 20px 24px;
        gap: 10px;
    }

    .nav-link {
        padding: 14px 18px;
        font-size: 1rem;
    }

    main {
        padding: 0 16px 60px;
        gap: 60px;
    }

    .site-footer {
        padding: 60px 16px 80px;
    }
}

