/* Custom Styles for Dire Grin Studio Website */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Baloo Bhai 2', sans-serif;
    overflow-x: hidden;
    background-color: var(--background);
    color: var(--text);
}

/* CSS Custom Properties */
:root {
    --text: #faf7f1;
    --main-button: #ec8818;
    --main-button-stroke: #d67600;
    --accent: #07beb8;
    --background: #1e2325;
}

/* ========================================
   HEADER
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 121px;
    z-index: 50;
    display: flex;
    justify-content: center;
}

/* Gradient Blur Background */
.header__blur-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(182deg, rgba(30, 35, 37, 0.68) -12.08%, rgba(30, 35, 37, 0.00) 98.08%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    pointer-events: none;
}

.header__content {
    position: relative;
    z-index: 10;
    display: flex;
    width: 1440px;
    height: 121px;
    padding: 16px 56px;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    box-sizing: border-box;
}

.header__logo {
    display: block;
    width: 74px;
    height: 59px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.header__logo-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.header__logo-img {
    position: absolute;
    max-width: none;
    width: 100%;
    height: 100%;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header__social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header__social-link {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.2s ease, background-color 0.2s ease;
    background-color: white;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.4));
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.header__social-link:hover {
    transform: scale(1.1);
    background-color: var(--accent);
}

.header__social-link img {
    opacity: 0;
    pointer-events: none;
}

.header__nav-link {
    font-family: 'Baloo Bhai 2', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: white;
    text-transform: uppercase;
    white-space: nowrap;
    text-decoration: none;
    line-height: 1.192;
    transition: color 0.2s ease;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
}

.header__nav-link:hover {
    color: var(--accent);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.hero__jungle-bg {
    position: relative;
    width: 3440px;
    height: 1014px;
    flex-shrink: 0;
}

.hero__jungle-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero__jungle-img {
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
}

.hero__logo {
    position: absolute;
    height: 450px;
    left: 50%;
    top: 260px;
    width: 513px;
    transform: translateX(-42%);
    z-index: 10;
    overflow: hidden;
}

.hero__logo-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero__logo-img {
    position: absolute;
    max-width: none;
    width: 85%;
    height: 85%;
    object-fit: contain;
}

/* ========================================
   MAIN SECTION (PartySaur Showcase)
   ======================================== */

.main-section {
    position: relative;
    margin-top: -327px;
    z-index: 10;
}

.main-section__partysaur-logo {
    position: absolute;
    height: 455px;
    left: calc(50% - 336.5px);
    top: 113px;
    width: 605px;
    transform: translateX(-50%);
    z-index: 10;
}

.main-section__partysaur-logo-inner {
    position: absolute;
    bottom: -3.96%;
    left: -0.66%;
    right: -0.66%;
    top: 0;
}

.main-section__partysaur-logo-img {
    display: block;
    max-width: none;
    width: 100%;
    height: 100%;
}

.main-section__content {
    position: absolute;
    display: flex;
    gap: 54px;
    align-items: center;
    left: calc(50% + 0.5px);
    top: 430px;
    width: 1239px;
    transform: translateX(-50%);
}

.main-section__game-video {
    border: 11px solid var(--main-button);
    height: 318px;
    position: relative;
    border-radius: 10px;
    width: 566px;
    flex-shrink: 0;
    display: block;
    overflow: hidden;
}

.main-section__game-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 4px;
}

.main-section__text {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    justify-content: center;
    flex: 1;
    color: var(--text);
}

.main-section__title {
    font-family: 'Baloo Bhai', sans-serif;
    font-size: 64px;
    letter-spacing: 1.92px;
    text-transform: uppercase;
    line-height: 0.94;
    width: 551px;
    text-shadow: -2px 4px 4px rgba(30, 35, 37, 0.5);
}

.main-section__description {
    font-family: 'Baloo Bhai 2', sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 1.192;
    min-width: 100%;
    text-shadow: 0px 4px 4px rgba(30, 35, 37, 0.31);
}

.main-section__dino {
    position: absolute;
    height: 480px;
    left: 560px;
    top: 798px;
    width: 854px;
    z-index: 20;
}

.main-section__dino-img {
    position: absolute;
    inset: 0;
    max-width: none;
    object-fit: cover;
    pointer-events: none;
    width: 100%;
    height: 100%;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services-section {
    position: relative;
    margin-top: 1210px;
}

.services-section__container {
    display: flex;
    flex-direction: column;
    gap: 120px;
    align-items: center;
    justify-content: center;
    padding: 0 56px;
    width: 1438px;
    margin: 0 auto;
}

.services-section__header {
    display: flex;
    gap: 4px;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}

.services-section__header-logo {
    width: 31px;
    height: 31px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
}

.services-section__header-logo-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-section__header-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4));
}

.services-section__header-logo:last-child .services-section__header-logo-img {
    transform: scale(-1, -1);
}

.services-section__title {
    font-family: 'Baloo Bhai', sans-serif;
    font-size: 64px;
    letter-spacing: 1.92px;
    text-transform: uppercase;
    line-height: 0.94;
    color: var(--text);
    text-shadow: 0px 4px 0px rgba(0, 0, 0, 0.11);
    white-space: nowrap;
}

.services-section__list {
    display: flex;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.services-section__card {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    justify-content: center;
    flex: 1;
    border-radius: 10px;
    transition: transform 0.25s ease;
}

.services-section__card-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 566/318;
    border: 11px solid;
    border-color: var(--main-button);;
    border-radius: 10px;
    flex-shrink: 0;
}

.services-section__card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    pointer-events: none;
    border-radius: 4px;
}

.services-section__card-header {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.services-section__card-icon {
    position: relative;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-3px);
}

.services-section__card-icon-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-section__card-icon-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.services-section__card-title {
    font-family: 'Baloo Bhai', sans-serif;
    font-size: 36px;
    letter-spacing: 1.08px;
    text-transform: uppercase;
    line-height: 0.94;
    color: var(--text);
    text-shadow: 0px 4px 0px rgba(0, 0, 0, 0.11);
    white-space: nowrap;
}

.services-section__card-description {
    font-family: 'Baloo Bhai 2', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.192;
    color: var(--text);
    text-align: center;
    width: 100%;
}

.services-section__card:hover {
    transform: translateY(-8px);
}

/* ========================================
   TEAM SECTION
   ======================================== */

.team-section {
    position: relative;
    margin-top: 200px;
    z-index: 10;
}

.team-section__container {
    position: absolute;
    height: 1030.5px;
    left: 50%;
    width: 1454px;
    transform: translateX(-50%);
}

.team-section__wave-bg {
    position: absolute;
    height: 1031px;
    left: 0;
    top: 0;
    width: 3440px;
}

.team-section__wave-inner {
    position: absolute;
    inset: -1.7% 0%;
}

.team-section__wave-img {
    display: block;
    max-width: none;
    width: 100%;
    height: 100%;
}

.team-section__header {
    position: absolute;
    display: flex;
    gap: 4px;
    align-items: flex-start;
    justify-content: center;
    left: 50%;
    top: 279.4px;
    width: 552px;
    transform: translateX(-50%);
}

.team-section__header-logo {
    width: 31px;
    height: 31px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
}

.team-section__header-logo-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-section__header-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4));
}

.team-section__header-logo:last-child .team-section__header-logo-img {
    transform: scale(-1, -1);
}

.team-section__title {
    font-family: 'Baloo Bhai', sans-serif;
    font-size: 64px;
    letter-spacing: 1.92px;
    text-transform: uppercase;
    line-height: 0.94;
    color: var(--text);
    text-shadow: -2px 4px 4px rgba(30, 35, 37, 0.5);
    white-space: nowrap;
}

.team-section__members {
    position: absolute;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
    left: 50%;
    top: 438.4px;
    width: 1326px;
    transform: translateX(-50%);
}

.team-section__member {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 0;
}

.team-section__member-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border: 11px solid var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.team-section__member-image-inner {
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 50%;
    overflow: hidden;
}

.team-section__member-image-bg {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

.team-section__member-image-blur {
    position: absolute;
    inset: 0;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 50%;
    overflow: hidden;
}

.team-section__member-image {
    position: absolute;
    max-width: none;
    object-fit: cover;
}

.team-section__member-image--cover {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    object-position: 50% 50%;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transition: opacity 0.25s ease-in-out;
}

.team-section__member-image--default {
    opacity: 1;
}

.team-section__member-image--hover {
    opacity: 0;
}

.team-section__member:hover .team-section__member-image--default {
    opacity: 0;
}

.team-section__member:hover .team-section__member-image--hover {
    opacity: 1;
}

.team-section__member-image-wrapper:hover .team-section__member-image--cover {
    cursor: pointer;
}

.team-section__member-name {
    font-family: 'Baloo Bhai', sans-serif;
    font-size: 36px;
    letter-spacing: 1.08px;
    text-transform: uppercase;
    line-height: 0.94;
    color: var(--text);
    text-shadow: -2px 3px 4px rgba(30, 35, 37, 0.4);
    white-space: nowrap;
}

.team-section__member-role {
    font-family: 'Baloo Bhai 2', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.192;
    color: var(--text);
    text-align: center;
    width: 100%;
    text-shadow: -2px 2px 6px rgba(30, 35, 37, 0.36);
}

.team-section__dino {
    position: absolute;
    height: 419px;
    left: 294px;
    top: -157px;
    width: 745px;
    z-index: 20;
}

.team-section__dino-img {
    position: absolute;
    inset: 0;
    max-width: none;
    object-fit: cover;
    pointer-events: none;
    width: 100%;
    height: 100%;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-section {
    position: relative;
    margin-top: 1345px;
    display: flex;
    justify-content: center;
}

.contact-section__container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 118px 83px;
    width: 1440px;
    box-sizing: border-box;
}

.contact-section__title {
    font-family: 'Baloo Bhai', sans-serif;
    font-size: 64px;
    letter-spacing: 1.92px;
    text-transform: uppercase;
    line-height: 0.94;
    color: var(--text);
    text-shadow: 0px 4px 0px rgba(0, 0, 0, 0.11);
    white-space: nowrap;
    text-align: center;
}

.contact-section__button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 360px;
    padding: 12px 0;
    background: var(--main-button);
    border: 6px solid var(--main-button-stroke);
    border-radius: 16px;
    text-decoration: none;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.contact-section__button:hover {
    transform: scale(1.05);
}

.contact-section__button-text {
    font-family: 'Baloo Bhai', sans-serif;
    font-size: 40px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    line-height: 1.192;
    color: var(--text);
    white-space: nowrap;
}

.contact-section__dino {
    position: absolute;
    height: 447px;
    left: 50%;
    top: -198px;
    width: 795px;
    z-index: 20;
    transform: translateX(-725px);
}

.contact-section--partysaur {
    margin-top: -325px;
    z-index: 15;
}

.contact-section--presskit {
    margin-top: 0;
    min-height: 400px;
    padding: 225px 0 80px 0;
}

.contact-section--presskit .contact-section__container {
    justify-content: center;
    gap: 80px;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    position: relative;
    padding: 40px 10px 80px 10px;
    box-sizing: border-box;
}

.footer__container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.footer__social-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    width: 374px;
}

.footer__logo {
    position: relative;
    width: 216px;
    height: 158px;
    flex-shrink: 0;
}

.footer__logo-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.footer__social {
    display: flex;
    gap: 24px;
    align-items: center;
}

.footer__social-link {
    position: relative;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    transition: transform 0.2s ease, background-color 0.2s ease;
    background-color: white;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.footer__social-link:hover {
    transform: scale(1.1);
    background-color: var(--accent);
}

.footer__social-link img {
    opacity: 0;
    pointer-events: none;
}

.footer__social-icon {
    display: block;
    max-width: none;
    width: 100%;
    height: 100%;
}

.footer__links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
}

.footer__link {
    font-family: 'Baloo Bhai 2', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.192;
    color: white;
    text-transform: uppercase;
    white-space: nowrap;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer__link:hover {
    color: var(--accent);
}

.footer__separator {
    font-family: 'Baloo Bhai', sans-serif;
    font-size: 24px;
    line-height: normal;
    color: var(--text);
    text-align: center;
    width: 7px;
}

.footer__copyright {
    font-family: 'Baloo Bhai 2', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text);
    text-align: center;
    margin-top: 24px;
    opacity: 0.7;
}

/* ========================================
   UTILITIES
   ======================================== */

.icon-container--discord {
    position: absolute;
    bottom: -0.02%;
    left: -2.08%;
    right: -2.09%;
    top: 0;
}

.icon-container--youtube {
    position: absolute;
    inset: 0;
}

.icon-container--youtube-inner {
    position: absolute;
    inset: 0;
}

.icon-container--instagram {
    position: absolute;
    bottom: -6.25%;
    left: 0;
    right: 0;
    top: 0;
}

.icon-img {
    display: block;
    max-width: none;
    width: 100%;
    height: 100%;
}

/* ========================================
   PARTYSAUR PAGE - HERO SECTION
   ======================================== */

.partysaur-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.partysaur-hero__beach-bg {
    position: relative;
    width: 3440px;
    height: 1014px;
    flex-shrink: 0;
}

.partysaur-hero__beach-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.partysaur-hero__beach-img {
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
}

.partysaur-hero__beach-overlay {
    position: absolute;
    inset: 0;
}

.partysaur-hero__logo {
    position: absolute;
    height: 550px;
    width: 800px;
    left: 50%;
    top: 220px;
    transform: translateX(-50%);
    z-index: 10;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partysaur-hero__logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transform: translateY(-8%) scale(1.25);
}

/* ========================================
   PARTYSAUR PAGE - MAIN SECTION
   ======================================== */

.partysaur-main {
    position: relative;
    margin-top: -327px;
    z-index: 10;
}

.partysaur-main__container {
    position: absolute;
    height: 988.666px;
    left: 50%;
    width: 1454px;
    transform: translateX(-50%);
}

/* Press Kit page - use normal flow instead of absolute positioning */
.partysaur-main--presskit {
    position: relative;
    margin-top: -327px;
    z-index: 10;
    min-height: 989px;
}

.partysaur-main--presskit .partysaur-main__container {
    position: relative;
    left: auto;
    transform: none;
    margin: 0 auto;
}

.partysaur-main__wave-bg {
    position: absolute;
    height: 990px;
    width: 3440px;
}

.team-section__wave-bg,
.partysaur-main__wave-bg,
.partysaur-meet-dinos__wave-bg {
    left: 50%;
    transform: translateX(-50%);
}

.partysaur-main__wave-bg img {
    display: block;
    max-width: none;
    width: 100%;
    height: 100%;
}

.partysaur-main__wishlist-button {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 385px;
    padding: 12px 0;
    background: var(--accent);
    border: 6px solid #069691;
    border-radius: 16px;
    text-decoration: none;
    transition: transform 0.2s ease;
    flex-shrink: 0;
    left: 36.5%;
    top: 175px;
    z-index: 15;
}

.partysaur-main__wishlist-button:hover {
    transform: scale(1.05);
}

.partysaur-main__wishlist-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.partysaur-main__wishlist-text {
    font-family: 'Baloo Bhai', sans-serif;
    font-size: 50px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    line-height: 1.192;
    color: var(--text);
    white-space: nowrap;
}

.partysaur-main__content {
    position: absolute;
    display: flex;
    gap: 54px;
    align-items: center;
    left: 50%;
    top: 398px;
    width: 1239px;
    transform: translateX(-50%);
}

.partysaur-main__game-video {
    border: 11px solid var(--main-button);
    height: 318px;
    position: relative;
    border-radius: 10px;
    width: 566px;
    flex-shrink: 0;
    display: block;
    overflow: hidden;
}

.partysaur-main__game-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 4px;
}

.partysaur-main__text {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    justify-content: center;
    flex: 1;
    color: var(--text);
}

.partysaur-main__title {
    font-family: 'Baloo Bhai', sans-serif;
    font-size: 64px;
    letter-spacing: 1.92px;
    text-transform: uppercase;
    line-height: 0.94;
    width: 551px;
    text-shadow: -2px 4px 4px rgba(30, 35, 37, 0.5);
}

.partysaur-main__description {
    font-family: 'Baloo Bhai 2', sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 1.192;
    min-width: 100%;
    text-shadow: 0px 4px 4px rgba(30, 35, 37, 0.31);
}

.partysaur-main__dino {
    position: absolute;
    height: 624px;
    left: 36.5%;
    top: 647px;
    width: 780px;
    z-index: 20;
}

.partysaur-main__dino--presskit {
    left: 25%;
    top: 700px;
}

.partysaur-main__dino img {
    position: absolute;
    inset: 0;
    max-width: none;
    object-fit: cover;
    pointer-events: none;
    width: 100%;
    height: 100%;
}

/* ========================================
   PRESS KIT PAGE - SPECIFIC STYLES
   ======================================== */

.partysaur-main__game-image {
    border: 11px solid var(--main-button);
    height: 318px;
    position: relative;
    border-radius: 10px;
    width: 566px;
    flex-shrink: 0;
    display: block;
    overflow: hidden;
}

.partysaur-main__game-image--presskit {
    border-color: var(--text);
    height: 424px;
}

.partysaur-main__game-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.partysaur-main__download-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 360px;
    padding: 12px 0;
    background: var(--main-button);
    border: 6px solid var(--main-button-stroke);
    border-radius: 16px;
    text-decoration: none;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.partysaur-main__download-button:hover {
    transform: scale(1.05);
}

.partysaur-main__download-text {
    font-family: 'Baloo Bhai', sans-serif;
    font-size: 40px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    line-height: 1.192;
    color: var(--text);
    white-space: nowrap;
}

.partysaur-main__content--presskit {
    top: 343px;
    z-index: 25;
}

/* ========================================
   PARTYSAUR PAGE - HOW TO PLAY SECTION
   ======================================== */

.partysaur-how-to-play {
    position: relative;
    margin-top: 1155px;
}

.partysaur-how-to-play__container {
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: center;
    justify-content: center;
    padding: 0 56px;
    width: 1440px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
}

.partysaur-how-to-play__header {
    display: flex;
    gap: 4px;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}

.partysaur-how-to-play__header-logo {
    width: 31px;
    height: 31px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
}

.partysaur-how-to-play__header-logo-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partysaur-how-to-play__header-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4));
}

.partysaur-how-to-play__header-logo:last-child .partysaur-how-to-play__header-logo-img {
    transform: scale(-1, -1);
}

.partysaur-how-to-play__title {
    font-family: 'Baloo Bhai', sans-serif;
    font-size: 64px;
    letter-spacing: 1.92px;
    text-transform: uppercase;
    line-height: 0.94;
    color: var(--text);
    text-shadow: 0px 4px 0px rgba(0, 0, 0, 0.11);
    white-space: nowrap;
}

.partysaur-how-to-play__content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    position: relative;
    left: 50%;
    gap: 0px;
    padding: 0;
    transition: transform 0.5s ease;
}

.partysaur-how-to-play__card {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 652px;
    transform: scale(0.85) translateY(14px);
    opacity: 0.6;
    transition: transform 0.5s ease, opacity 0.5s ease, border-color 0.5s ease;
}

.partysaur-how-to-play__card--active {
    transform: scale(1);
    opacity: 1;
}

.partysaur-how-to-play__card-image-wrapper {
    position: relative;
    width: 652px;
    height: 366px;
    border: 11px solid #333c3c;
    border-radius: 10px;
    flex-shrink: 0;
    overflow: hidden;
    transition: border-color 0.5s ease;
}

.partysaur-how-to-play__card--active .partysaur-how-to-play__card-image-wrapper {
    border-color: var(--main-button);
}

.partysaur-how-to-play__card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partysaur-how-to-play__card-text {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    justify-content: center;
    width: 652px;
    text-align: center;
}

.partysaur-how-to-play__card-title {
    font-family: 'Baloo Bhai', sans-serif;
    font-size: 36px;
    letter-spacing: 1.08px;
    text-transform: uppercase;
    line-height: 0.94;
    color: var(--text);
    text-shadow: 0px 4px 0px rgba(0, 0, 0, 0.11);
}

.partysaur-how-to-play__card-description {
    font-family: 'Baloo Bhai 2', sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 1.192;
    color: var(--text);
    opacity: 0;
    transition: opacity 0.5s ease 0.2s;
}

.partysaur-how-to-play__card--active .partysaur-how-to-play__card-description {
    opacity: 1;
}

.partysaur-how-to-play__pagination {
    display: flex;
    gap: 56px;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 30;
}

.partysaur-how-to-play__arrow {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partysaur-how-to-play__arrow img {
    width: 30px;
    height: 30px;
    transition: all 0.2s ease;
    filter: brightness(0.25) saturate(0);
}

.partysaur-how-to-play__arrow--left img {
    transform: scaleX(-1);
}

.partysaur-how-to-play__arrow--right img {
    transform: scale(1);
}

.partysaur-how-to-play__arrow--left:hover img {
    filter: brightness(1);
    transform: scaleX(-1.15) scaleY(1.15);
}

.partysaur-how-to-play__arrow--right:hover img {
    filter: brightness(1);
    transform: scale(1.15);
}

.partysaur-how-to-play__dots {
    display: flex;
    gap: 16px;
    align-items: center;
}

.partysaur-how-to-play__dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #7D7D7D;
    transition: background 0.3s ease;
}

.partysaur-how-to-play__dot--active {
    background: var(--text);
}

.partysaur-how-to-play__dino {
    position: absolute;
    height: 480px;
    left: 0;
    bottom: -240px;
    width: 600px;
    z-index: 20;
}

.partysaur-how-to-play__dino img {
    position: absolute;
    inset: 0;
    max-width: none;
    object-fit: contain;
    pointer-events: none;
    width: 100%;
    height: 100%;
}

/* ========================================
   PARTYSAUR PAGE - MEET THE DINOS SECTION
   ======================================== */

.partysaur-meet-dinos {
    position: relative;
    margin-top: 10px;
    z-index: 10;
}

.partysaur-meet-dinos__container {
    position: absolute;
    height: 1268px;
    left: 50%;
    width: 1454px;
    transform: translateX(-50%);
}

.partysaur-meet-dinos__wave-bg {
    position: absolute;
    height: 1268px;
    top: 3%;
    width: 3440px;
}

.partysaur-meet-dinos__wave-bg img {
    display: block;
    max-width: none;
    width: 100%;
    height: 100%;
}

.partysaur-meet-dinos__header {
    position: absolute;
    display: flex;
    gap: 4px;
    align-items: flex-start;
    justify-content: center;
    left: 50%;
    top: 325px;
    transform: translateX(-50%);
}

.partysaur-meet-dinos__header-logo {
    width: 31px;
    height: 31px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
}

.partysaur-meet-dinos__header-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4));
}

.partysaur-meet-dinos__header-logo:last-child img {
    transform: scale(-1, -1);
}

.partysaur-meet-dinos__title {
    font-family: 'Baloo Bhai', sans-serif;
    font-size: 64px;
    letter-spacing: 1.92px;
    text-transform: uppercase;
    line-height: 0.94;
    color: var(--text);
    text-shadow: -2px 4px 4px rgba(30, 35, 37, 0.5);
    white-space: nowrap;
}

.partysaur-meet-dinos__icons {
    position: absolute;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 68px;
    align-items: flex-start;
    justify-content: center;
    left: 50%;
    top: 480px;
    width: 1326px;
    transform: translateX(-50%);
}

.partysaur-meet-dinos__icon-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.partysaur-meet-dinos__icon {
    position: relative;
    width: 170px;
    height: 170px;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.25s ease;
}

.partysaur-meet-dinos__icon:hover {
    transform: scale(1.05);
}

.partysaur-meet-dinos__icon-bg-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.partysaur-meet-dinos__icon-bg {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 11px solid;
    z-index: 1;
}

.partysaur-meet-dinos__icon-img {
    position: absolute;
    inset: 0 3.53% -7.06% -12%;
    width: auto;
    height: auto;
    object-fit: cover;
    object-position: 50% 50%;
    max-width: none;
    z-index: 2;
}

.partysaur-meet-dinos__icon--locked .partysaur-meet-dinos__icon-img {
    inset: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    opacity: 1;
    object-fit: contain;
}

.partysaur-meet-dinos__icon-lock {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    z-index: 10;
}

.partysaur-meet-dinos__icon-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translate(15%, 15%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.partysaur-meet-dinos__icon:hover+.partysaur-meet-dinos__icon-label {
    opacity: 1;
}

.partysaur-meet-dinos__icon-label--rex {
    display: flex;
}

.partysaur-meet-dinos__icon-label span {
    font-family: 'Baloo Bhai', sans-serif;
    font-size: 48px;
    letter-spacing: 1.44px;
    text-transform: uppercase;
    line-height: 1.192;
    color: var(--text);
    white-space: nowrap;
    display: inline-block;
    transform: translateY(3px);
}

.partysaur-meet-dinos__icon-label-tag {
    background-color: #a71219;
    padding: 5px 8px;
    border-radius: 10px;
    transform: translate(20px, 16px);
}

.partysaur-meet-dinos__icon-label-tag span {
    line-height: 0.9;
}

/* Dino-specific colors */
.partysaur-meet-dinos__icon-label-tag--spino {
    background-color: #01307f;
}

.partysaur-meet-dinos__icon-label-tag--carno {
    background-color: #ffaa41;
}

.partysaur-meet-dinos__icon-label-tag--bary {
    background-color: #1b8838;
}

.partysaur-meet-dinos__icon-label-arrow {
    position: relative;
    width: 30px;
    height: 30px;
    background-color: #a71219;
    -webkit-mask-image: url('assets/images/dino-name-arrow.svg');
    mask-image: url('assets/images/dino-name-arrow.svg');
    -webkit-mask-size: 65% 65%;
    mask-size: 65% 65%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transform: translateX(-12%);
}

.partysaur-meet-dinos__icon-label-arrow--spino {
    background-color: #01307f;
    transform: translateX(-115%);
}

.partysaur-meet-dinos__icon-label-arrow--carno {
    background-color: #ffaa41;
    transform: translateX(-135%);
}

.partysaur-meet-dinos__icon-label-arrow--bary {
    background-color: #1b8838;
    transform: translateX(-75%);
}

.partysaur-meet-dinos__icon-label-arrow img {
    opacity: 0;
    pointer-events: none;
}

.partysaur-meet-dinos__icon-arrow {
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 16px solid var(--text);
}

/* Image hover effect - crossfade between default and hover images */
.partysaur-meet-dinos__icon-img--default {
    opacity: 1;
    transition: opacity 0.25s ease;
}

.partysaur-meet-dinos__icon-img--hover {
    opacity: 0;
    transition: opacity 0.25s ease;
}

.partysaur-meet-dinos__icon:hover .partysaur-meet-dinos__icon-img--default {
    opacity: 0;
}

.partysaur-meet-dinos__icon:hover .partysaur-meet-dinos__icon-img--hover {
    opacity: 1;
}

/* Locked state - keep both images faded */
.partysaur-meet-dinos__icon--locked .partysaur-meet-dinos__icon-img--default,
.partysaur-meet-dinos__icon--locked .partysaur-meet-dinos__icon-img--hover {
    opacity: 0.3;
}

/* ========================================
   PARTYSAUR PAGE - DINO INTRODUCTION
   ======================================== */

.partysaur-dino-intro {
    position: relative;
    margin-top: 590px;
    display: flex;
    justify-content: center;
    z-index: 11;
}

.partysaur-dino-intro__container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1440px;
    box-sizing: border-box;
    transform: translate(-5px, 38px);
}

.partysaur-dino-intro__dino {
    position: relative;
    height: 650px;
    width: 810px;
    flex-shrink: 0;
}

.partysaur-dino-intro__dino img {
    position: absolute;
    inset: 0;
    max-width: none;
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.partysaur-dino-intro__text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    justify-content: center;
    flex: 1;
    color: var(--text);
    transform: translate(-115px, 12px);
}

.partysaur-dino-intro__title {
    font-family: 'Baloo Bhai', sans-serif;
    font-size: 64px;
    letter-spacing: 1.92px;
    text-transform: uppercase;
    line-height: 0.94;
    text-shadow: 0px 4px 0px rgba(0, 0, 0, 0.2);
}

.partysaur-dino-intro__description {
    font-family: 'Baloo Bhai 2', sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 1.192;
    text-shadow: 0px 4px 4px rgba(30, 35, 37, 0.31);
}

/* Dino Intro Animation States */
.partysaur-dino-intro__dino--exit {
    animation: dinoExitAnimation 0.2s ease forwards;
}

.partysaur-dino-intro__text--exit {
    animation: dinoExitAnimation 0.2s ease forwards;
}

.partysaur-dino-intro__dino--enter {
    animation: dinoEnterAnimation 0.2s ease forwards;
}

.partysaur-dino-intro__text--enter {
    animation: dinoEnterAnimation 0.2s ease forwards;
}

/* Exit Animation - Quick fade out */
@keyframes dinoExitAnimation {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

/* Enter Animation - Translate from left + fade in */
@keyframes dinoEnterAnimation {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Text-specific enter animation to preserve existing translate */
.partysaur-dino-intro__text--enter {
    animation: dinoTextEnterAnimation 0.2s ease forwards;
}

@keyframes dinoTextEnterAnimation {
    from {
        opacity: 0;
        transform: translate(calc(-115px - 100px), 12px);
    }

    to {
        opacity: 1;
        transform: translate(-115px, 12px);
    }
}

/* ========================================
   PARTYSAUR PAGE - GAME MODES SECTION
   ======================================== */

.partysaur-game-modes {
    position: relative;
    margin-top: 250px;
}

.partysaur-game-modes__container {
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: center;
    justify-content: center;
    padding: 0 56px;
    width: 1438px;
    margin: 0 auto;
    position: relative;
}

.partysaur-game-modes__header {
    display: flex;
    gap: 4px;
    align-items: flex-start;
    justify-content: center;
    position: relative;
}

.partysaur-game-modes__header-logo {
    width: 31px;
    height: 31px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
}

.partysaur-game-modes__header-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4));
}

.partysaur-game-modes__header-logo:last-child img {
    transform: scale(-1, -1);
}

.partysaur-game-modes__title {
    font-family: 'Baloo Bhai', sans-serif;
    font-size: 64px;
    letter-spacing: 1.92px;
    text-transform: uppercase;
    line-height: 0.94;
    color: var(--text);
    text-shadow: 0px 4px 0px rgba(0, 0, 0, 0.11);
    white-space: nowrap;
}

.partysaur-game-modes__list {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    width: 100%;
}

.partysaur-game-modes__card {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    justify-content: flex-start;
    flex: 1;
    border-radius: 10px;
    transition: transform 0.25s ease;
}

.partysaur-game-modes__card:not(.partysaur-game-modes__card--locked):hover {
    transform: translateY(-8px);
}

.partysaur-game-modes__card--locked {
    opacity: 0.6;
    cursor: not-allowed;
}

.partysaur-game-modes__card-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 566/318;
    border: 11px solid #EC8818;
    border-radius: 10px;
    flex-shrink: 0;
    overflow: hidden;
}

.partysaur-game-modes__card--locked .partysaur-game-modes__card-image-wrapper {
    border-color: #939393;
    background-color: rgba(189, 189, 189, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.partysaur-game-modes__card-image-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.partysaur-game-modes__card-lock-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 35, 37, 0.7);
    z-index: 10;
}

.partysaur-game-modes__card-lock-icon {
    max-width: 100px;
    max-height: 100px;
    object-fit: contain;
    position: static !important;
    inset: auto !important;
    width: auto !important;
    height: auto !important;
}

.partysaur-game-modes__card-header {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.partysaur-game-modes__card-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.partysaur-game-modes__card-icon--locked {
    width: 30px;
    height: 30px;
}

.partysaur-game-modes__card-title {
    font-family: 'Baloo Bhai', sans-serif;
    font-size: 36px;
    letter-spacing: 1.08px;
    text-transform: uppercase;
    line-height: 0.94;
    color: var(--text);
    text-shadow: 0px 4px 0px rgba(0, 0, 0, 0.11);
    white-space: nowrap;
}

.partysaur-game-modes__card-description {
    font-family: 'Baloo Bhai 2', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.192;
    color: var(--text);
    text-align: center;
}

.partysaur-game-modes__dino {
    position: absolute;
    height: 600px;
    right: -150px;
    width: 700px;
    z-index: 20;
}

.partysaur-game-modes__dino img {
    position: absolute;
    inset: 0;
    max-width: none;
    object-fit: contain;
    pointer-events: none;
    width: 35%;
    height: 35%;
    transform: translate(260px, 10px);
}

/* ========================================
   PARTYSAUR PAGE - ADDITIONAL DINO IMAGES
   ======================================== */

.partysaur-bary-dino {
    position: relative;
    height: 600px;
    width: 100%;
    margin-top: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-150px, 55px);
}

.partysaur-bary-dino__image {
    position: relative;
    height: 100%;
    width: 720px;
}

.partysaur-bary-dino__image img {
    position: absolute;
    inset: 0;
    max-width: none;
    object-fit: contain;
    width: 100%;
    height: 100%;
}

/* ========================================
   CONTACT FORM MODAL
   ======================================== */

.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.modal--open {
    display: flex;
    opacity: 1;
}

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modal__content {
    position: relative;
    z-index: 10;
    display: flex;
    gap: 120px;
    align-items: center;
    justify-content: center;
    width: 100vw;
    padding: 80px 56px;
    background: var(--background);
    box-sizing: border-box;
}

.modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 48px;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
    z-index: 11;
    font-family: Arial, sans-serif;
}

.modal__close:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.modal__text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    justify-content: center;
    flex-shrink: 0;
    color: var(--text);
}

.modal__title {
    font-family: 'Baloo Bhai', sans-serif;
    font-size: 48px;
    letter-spacing: 1.44px;
    text-transform: uppercase;
    line-height: 0.94;
    color: var(--text);
    text-shadow: 0px 4px 0px rgba(0, 0, 0, 0.11);
    width: 100%;
    white-space: pre-wrap;
}

.modal__description {
    font-family: 'Baloo Bhai 2', sans-serif;
    font-weight: 400;
    font-size: 24px;
    letter-spacing: 0.72px;
    line-height: 0.94;
    color: var(--text);
    text-shadow: 0px 4px 0px rgba(0, 0, 0, 0.11);
    width: 100%;
}

.modal__form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-end;
    flex-shrink: 0;
    width: 440px;
}

.modal__input-field {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 7px;
    align-items: flex-start;
    justify-content: center;
    flex-shrink: 0;
    width: 100%;
}

.modal__input {
    width: 100%;
    height: 55px;
    padding: 16px 20px;
    background: var(--background);
    border: 3px solid var(--text);
    border-radius: 10px;
    font-family: 'Baloo Bhai 2', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}

.modal__input:focus {
    border-color: var(--accent);
}

.modal__input--textarea {
    height: 219px;
    resize: vertical;
    min-height: 100px;
}

.modal__label {
    position: absolute;
    top: -9px;
    left: 27px;
    display: flex;
    height: 16px;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    background: var(--background);
    box-sizing: border-box;
    pointer-events: none;
}

.modal__label span {
    font-family: 'Baloo Bhai 2', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: normal;
    color: var(--text);
    text-align: center;
    white-space: nowrap;
}

.modal__actions {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: flex-end;
    /* Keep button on the right */
    flex-shrink: 0;
    width: 100%;
}

.modal__attach {
    display: none;
    /* Hidden for free Web3Forms plan */
    flex: 1;
    gap: 10px;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 55px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.modal__attach:hover {
    opacity: 0.8;
}

.modal__file-input {
    display: none;
}

.modal__attach-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.modal__attach-text {
    font-family: 'Baloo Bhai', sans-serif;
    font-size: 24px;
    letter-spacing: 0.72px;
    text-transform: uppercase;
    line-height: 1.192;
    color: var(--text);
    white-space: nowrap;
}

.modal__submit {
    display: flex;
    width: 220px;
    /* Fixed width when attach button is hidden */
    gap: 15px;
    align-items: center;
    justify-content: center;
    height: 55px;
    min-height: 55px;
    padding: 16px 0;
    background: var(--main-button);
    border: 6px solid var(--main-button-stroke);
    border-radius: 16px;
    box-sizing: border-box;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.modal__submit:hover {
    transform: scale(1.05);
}

.modal__submit span {
    font-family: 'Baloo Bhai', sans-serif;
    font-size: 24px;
    letter-spacing: 0.72px;
    text-transform: uppercase;
    line-height: 1.192;
    color: var(--text);
    white-space: nowrap;
}

.modal__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.modal__submit:disabled:hover {
    transform: none;
}

/* Form Message Styles */
.modal__message {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 16px;
    border-radius: 8px;
    font-family: 'Baloo Bhai 2', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal__message--success {
    background-color: rgba(7, 190, 184, 0.2);
    border: 2px solid var(--accent);
    color: var(--text);
}

.modal__message--error {
    background-color: rgba(236, 136, 24, 0.2);
    border: 2px solid var(--main-button);
    color: var(--text);
}

/* Disable body scroll when modal is open */
body.modal-open {
    overflow: hidden;
}