@import url('https://fonts.googleapis.com/css2?family=Special+Elite&family=Bebas+Neue&display=swap');

body {
    overflow-x: hidden;
    background-color: #f272a0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23noise)' opacity='0.1'/%3E%3C/svg%3E");
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: 'Special Elite', cursive;
}

header {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 5px;
    background: #f272a0;
    color: #0d0d0d;
    text-transform: uppercase;
    width: 100%;
    margin: 0;
    display: flex;
    gap: 15px;
    padding: 24px 32px;
    box-sizing: border-box;
    line-height: 1.4;
    min-height: 110px;
    justify-content: space-between;
    align-items: center;
    border-bottom: 5px solid #0d0d0d;
    position: relative;
}

header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 4px;
    background: #0d0d0d;
    opacity: 0.15;
}

.logo-left {
    flex: 1;
    display: flex;
    align-items: center;
}

.logo-center {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.logo-center h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.4rem;
    font-weight: 400;
    letter-spacing: 8px;
    color: #0d0d0d;
    text-transform: uppercase;
    line-height: 1;
}

.logo-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.logo-right img {
    filter: brightness(0);
    cursor: pointer;
    transition: opacity 0.2s;
}

.logo-right img:hover {
    opacity: 0.6;
}

li {
    list-style-type: none;
}

main {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title {
    font-family: 'Bebas Neue', sans-serif;
    color: #0d0d0d;
    padding: 0;
    margin: 0;
    font-weight: 400;
    letter-spacing: 5px;
    font-size: 1.6rem;
    line-height: 1;
    text-transform: uppercase;
}

.section {
    background: #f8f8f6;
    border: 3px solid #0d0d0d;
    box-shadow:
        6px 6px 0px #0d0d0d;
    width: 90%;
    max-width: 720px;
    margin: 0 auto 24px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    box-sizing: border-box;
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #f272a0;
}

.section-image {
    aspect-ratio: 1/1;
    object-fit: cover;
    width: 85px;
    height: 85px;
    border: 3px solid #0d0d0d;
    flex-shrink: 0;
    margin-top: 4px;
    flex-basis: 85px;
    filter: grayscale(0.3) contrast(1.1);
    box-shadow: 3px 3px 0px #0d0d0d;
}

.sect-copy {
    color: #2a2a2a;
    font-family: 'Special Elite', cursive;
    font-size: 0.76rem;
    padding: 0;
    margin: 6px 0 0 0;
    font-weight: 400;
    letter-spacing: 1.2px;
    line-height: 1.7;
    opacity: 0.9;
}

.view-btn {
    background: #f272a0;
    color: #0d0d0d;
    border: 2px solid #0d0d0d;
    padding: 10px 28px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    cursor: pointer;
    margin: 16px 0 0 0;
    display: block;
    transition: all 0.15s ease;
    box-shadow: 3px 3px 0px #0d0d0d;
    width: fit-content;
}

.view-btn:hover {
    background: #0d0d0d;
    color: #f272a0;
    box-shadow: none;
    transform: translate(3px, 3px);
}

.text-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.logo-center img {
    filter: brightness(0) saturate(100%);
}

@media (max-width: 600px) {
    .section {
        width: 95%;
        flex-direction: column;
    }

    .section-image {
        width: 100%;
        height: 160px;
        flex-basis: auto;
    }

    .logo-center h1 {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    header {
        padding: 16px 18px;
        min-height: 80px;
    }

    .logo-center img {
        width: 40px;
    }

    .logo-right img {
        width: 36px;
    }
}

html {
    overflow-x: hidden;
}