:root {
    --navy: #071a3d;
    --navy-2: #0d2450;
    --gold: #d4a53c;
    --gold-light: #f8df8a;
    --gold-dark: #8e6420;
    --white: #ffffff;
    --soft: #dbe6ff;
}

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

html {
    overflow-x: hidden;
}
body {
    background: #02102a;
    font-family: "Montserrat", sans-serif;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
}
img {
    max-width: 100%;
}
body .poster {
    width: 100%;
    max-width: 900px;
    height: fit-content;
}
.poster .header {
    width: 100%;
    aspect-ratio: 1982 / 1106;
    background-image: url("./Backgrounds/header.webp");
    background-size: cover;
    background-position: center;
    position: relative;
}
.header button {
    width: clamp(120px, 22vw, 200px);
    height: clamp(38px, 7vw, 60px);
    background-color: transparent;
    border: 2px solid var(--gold);
    border-radius: 5px;
    color: var(--gold);
    font-size: clamp(12px, 2.2vw, 16px);
    cursor: pointer;
    position: absolute;
    bottom: 2%;
    left: 50%;
    transform: translateX(-50%);
}
.header button:hover {
    background-color: #d4a43c25;
    color: var(--navy);
}

.poster .content {
    background: var(--navy);
    padding: clamp(22px, 4vw, 36px) clamp(14px, 4vw, 28px) clamp(30px, 6vw, 48px);
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(8px, 2.5vw, 18px);
    margin-bottom: clamp(16px, 4vw, 28px);
}
.section-heading .line {
    flex: 1;
    max-width: 220px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), var(--gold), var(--gold-light));
}
.section-heading .line:last-of-type {
    background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-dark), transparent);
}
.section-heading h2 {
    font-family: "Cinzel", serif;
    font-weight: 700;
    font-size: clamp(15px, 4.2vw, 28px);
    letter-spacing: clamp(1px, 0.4vw, 3px);
    white-space: nowrap;
    color: var(--gold-light);
    text-shadow: 0 0 16px rgba(212, 165, 60, 0.45);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: clamp(6px, 1.6vw, 14px);
}
@media (max-width: 640px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 360px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.category-card {
    aspect-ratio: 1 / 1;
    border: 1px solid var(--gold);
    border-radius: clamp(8px, 1.5vw, 12px);
    padding: clamp(3px, 0.8vw, 5px);
    background: linear-gradient(160deg, var(--navy-2), var(--navy));
    box-shadow: 0 0 0 1px rgba(212, 165, 60, 0.15);
}
.category-card-inner {
    height: 100%;
    border: 2px solid var(--gold);
    border-radius: clamp(5px, 1.2vw, 8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(4px, 1.5vw, 8px);
    background: radial-gradient(circle at 50% 35%, rgba(212, 165, 60, 0.1), transparent 70%);
}
.category-card-inner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}

.featured-wrap {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}
.featured-wrap .category-card {
    width: clamp(130px, 32vw, 220px);
    aspect-ratio: 1 / 1;
}

.poster .nominate {
    position: relative;
    background: var(--navy);
    padding: clamp(28px, 6vw, 44px) clamp(16px, 4vw, 28px) clamp(34px, 7vw, 56px);
    text-align: center;
    overflow: hidden;
}
.nominate::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("./Backgrounds/46.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 140% auto;
    pointer-events: none;
}
.nominate > * {
    position: relative;
    z-index: 1;
}
.nominate-text {
    max-width: 640px;
    margin: 0 auto 14px;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    font-size: clamp(13px, 2.6vw, 17px);
    line-height: 1.6;
    color: var(--white);
}
.nominate-sub {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    font-size: clamp(12px, 2.4vw, 16px);
    margin-bottom: 28px;
    color: var(--white);
}
.nominate-btn {
    display: inline-block;
    padding: clamp(13px, 3vw, 18px) clamp(28px, 10vw, 64px);
    border-radius: 8px;
    background: linear-gradient(180deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
    color: var(--navy);
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: clamp(15px, 3.4vw, 22px);
    letter-spacing: 2px;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}
.nominate-btn:hover {
    filter: brightness(1.08);
}

.poster .footer {
    background: var(--navy);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: clamp(20px, 5vw, 32px);
    padding: clamp(20px, 5vw, 32px) clamp(18px, 5vw, 36px) clamp(26px, 6vw, 40px);
    border-top: 2px solid var(--gold);
}
.footer-col {
    flex: 1 1 200px;
}
.footer-col h3 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(14px, 3vw, 16px);
    letter-spacing: 1px;
    margin-bottom: 14px;
    color: var(--white);
}
.footer-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.footer-item img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}
.footer-item span {
    font-size: clamp(13px, 2.8vw, 15px);
    color: var(--soft);
}
.socials {
    display: flex;
    gap: 14px;
}
.social {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.social svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}
.social.facebook { background: #1877f2; }
.social.instagram { background: radial-gradient(circle at 30% 110%, #fdf497, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.social.tiktok { background: #000000; }
.social.youtube { background: #ff0000; }
