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

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    background: linear-gradient(to bottom,
            #000428 0%,
            #004e92 50%,
            #1a0033 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    position: relative;
    font-family: 'Cinzel', serif;
    color: #f4e4c1;

    animation: fadeIn 2s ease-in-out;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(10, 10, 30, 0.8) 0%,
            rgba(15, 15, 40, 0.6) 50%,
            rgba(10, 10, 20, 0.9) 100%);
    z-index: 1;
}

body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px),
        repeating-linear-gradient(90deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px);
    opacity: 0.3;
    z-index: 2;
    pointer-events: none;
}

.mountains {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    z-index: 3;
    pointer-events: none;
}

.mountain {
    position: absolute;
    bottom: 0;
}

.mountain-1 {
    left: 0;
    width: 0;
    height: 0;
    border-left: 180px solid transparent;
    border-right: 180px solid transparent;
    border-bottom: 200px solid rgba(45, 60, 45, 0.9);
    filter: drop-shadow(-5px 0 15px rgba(0, 0, 0, 0.4));
}

.mountain-2 {
    left: 15%;
    width: 0;
    height: 0;
    border-left: 220px solid transparent;
    border-right: 220px solid transparent;
    border-bottom: 250px solid rgba(35, 50, 35, 0.95);
    filter: drop-shadow(-8px 0 18px rgba(0, 0, 0, 0.5));
}

.mountain-3 {
    left: 35%;
    width: 0;
    height: 0;
    border-left: 150px solid transparent;
    border-right: 150px solid transparent;
    border-bottom: 170px solid rgba(50, 65, 50, 0.85);
    filter: drop-shadow(-4px 0 12px rgba(0, 0, 0, 0.4));
}

.mountain-4 {
    right: 30%;
    width: 0;
    height: 0;
    border-left: 140px solid transparent;
    border-right: 140px solid transparent;
    border-bottom: 160px solid rgba(55, 70, 55, 0.88);
    filter: drop-shadow(-4px 0 12px rgba(0, 0, 0, 0.4));
}

.mountain-5 {
    right: 15%;
    width: 0;
    height: 0;
    border-left: 190px solid transparent;
    border-right: 190px solid transparent;
    border-bottom: 220px solid rgba(40, 55, 40, 0.92);
    filter: drop-shadow(-6px 0 15px rgba(0, 0, 0, 0.45));
}

.mountain-6 {
    right: 0;
    width: 0;
    height: 0;
    border-left: 160px solid transparent;
    border-right: 160px solid transparent;
    border-bottom: 180px solid rgba(48, 63, 48, 0.9);
    filter: drop-shadow(-5px 0 13px rgba(0, 0, 0, 0.4));
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    z-index: 3;
    pointer-events: none;
}

.star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
    animation: twinkle 3s ease-in-out infinite;
}

.star:nth-child(1) {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.star:nth-child(2) {
    top: 20%;
    left: 35%;
    animation-delay: 0.5s;
}

.star:nth-child(3) {
    top: 15%;
    left: 55%;
    animation-delay: 1s;
}

.star:nth-child(4) {
    top: 25%;
    left: 75%;
    animation-delay: 1.5s;
}

.star:nth-child(5) {
    top: 8%;
    left: 85%;
    animation-delay: 2s;
}

.star:nth-child(6) {
    top: 30%;
    left: 25%;
    animation-delay: 2.5s;
}

.star:nth-child(7) {
    top: 18%;
    left: 65%;
    animation-delay: 0.8s;
}

.star:nth-child(8) {
    top: 12%;
    left: 45%;
    animation-delay: 1.8s;
}

.container {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 80px;
}

.banner {
    position: absolute;
    top: 0;
    width: 120px;
    height: 600px;
    z-index: 5;
}

.banner-left {
    left: calc(50% - 450px);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;

    animation: waveBanner 4s ease-in-out infinite;
    transform-origin: top center;
}

.banner-right {
    right: calc(50% - 450px);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;

    animation: waveBanner 4s ease-in-out infinite;
    animation-delay: 2s;
    transform-origin: top center;
}

.banner::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 215, 0, 0.9);
    border-radius: 50%;
    top: 50px;
    left: 50%;
    box-shadow:
        0 60px 0 0 rgba(255, 215, 0, 0.85),
        0 120px 0 0 rgba(218, 165, 32, 0.9),
        0 180px 0 0 rgba(255, 215, 0, 0.8),
        0 240px 0 0 rgba(218, 165, 32, 0.85),
        0 300px 0 0 rgba(255, 215, 0, 0.9),
        0 360px 0 0 rgba(218, 165, 32, 0.8),
        -15px 90px 0 0 rgba(218, 165, 32, 0.7),
        -15px 150px 0 0 rgba(255, 215, 0, 0.75),
        -15px 210px 0 0 rgba(218, 165, 32, 0.8),
        -15px 270px 0 0 rgba(255, 215, 0, 0.7),
        -15px 330px 0 0 rgba(218, 165, 32, 0.75),
        15px 90px 0 0 rgba(218, 165, 32, 0.7),
        15px 150px 0 0 rgba(255, 215, 0, 0.75),
        15px 210px 0 0 rgba(218, 165, 32, 0.8),
        15px 270px 0 0 rgba(255, 215, 0, 0.7),
        15px 330px 0 0 rgba(218, 165, 32, 0.75),
        0 0 8px rgba(255, 215, 0, 0.6);
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    background: linear-gradient(to bottom,
            #8b1a1a 0%,
            #a52a2a 30%,
            #8b1a1a 70%,
            #5c0e0e 100%);
    clip-path: polygon(20% 0%, 80% 0%,
            80% 70%, 50% 85%, 20% 70%);
    box-shadow:
        inset 0 0 20px rgba(0, 0, 0, 0.5),
        0 10px 30px rgba(0, 0, 0, 0.7);
    border: 2px solid #4a0e0e;
}

.crown-container {
    text-align: center;
    z-index: 15;
}

.crown {
    width: 285px;
    height: 285px;
    margin: 0 auto 40px;
    position: relative;

    background-image: url('assets/crown.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;

    animation: crownPulse 3s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(218, 165, 32, 0.8));
}

.pax-description{
    all: unset
}

.title {
    font-family: 'Cinzel', serif;
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: 0.3rem;
    color: #d4af37;
    text-shadow:
        0 0 20px rgba(212, 175, 55, 0.6),
        0 0 40px rgba(212, 175, 55, 0.4),
        2px 2px 10px rgba(0, 0, 0, 0.8);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.motto {
    font-family: 'Uncial Antiqua', cursive;
    margin-top: 100px;
    font-size: 1.8rem;
    font-style: italic;
    letter-spacing: 0.15rem;
    color: #f4e4c1;
    text-shadow:
        0 0 15px rgba(244, 228, 193, 0.5),
        1px 1px 5px rgba(0, 0, 0, 0.9);
    opacity: 0.9;
}

.motto-2 {
    font-family: 'Uncial Antiqua', cursive;
    font-size: 1.8rem;
    font-style: italic;
    letter-spacing: 0.15rem;
    color: #f4e4c1;
    text-shadow:
        0 0 15px rgba(244, 228, 193, 0.5),
        1px 1px 5px rgba(0, 0, 0, 0.9);
    opacity: 0.9;
}

.contact-card {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 20;
    padding: 15px 25px;
    background: linear-gradient(135deg,
            rgba(218, 165, 32, 0.95) 0%,
            rgba(255, 215, 0, 0.95) 50%,
            rgba(218, 165, 32, 0.95) 100%);
    border: 2px solid rgba(255, 215, 0, 0.8);
    border-radius: 8px;
    box-shadow:
        0 0 20px rgba(218, 165, 32, 0.8),
        0 0 40px rgba(218, 165, 32, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    color: #1a0a00;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow:
        0 0 30px rgba(218, 165, 32, 1),
        0 0 60px rgba(218, 165, 32, 0.6),
        inset 0 0 25px rgba(255, 255, 255, 0.3);
}

.contact-card a {
    color: #1a0a00;
    text-decoration: none;
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

.description {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    max-width: 600px;
    padding: 12px 30px;
    background: rgba(15, 15, 40, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 6px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: #f4e4c1;
    text-align: center;
    line-height: 1.5;
    opacity: 0.9;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes crownPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.3;
        transform: scale(0.8);
    }
}

@keyframes waveBanner {

    0%,
    100% {
        transform: rotate(0deg) scaleX(1);
    }

    25% {
        transform: rotate(1deg) scaleX(0.98);
    }

    75% {
        transform: rotate(-1deg) scaleX(1.02);
    }
}

@media (max-width: 1024px) {
    .banner {
        width: 90px;
        height: 480px;
    }

    .banner-left {
        left: calc(50% - 350px);
    }

    .banner-right {
        right: calc(50% - 350px);
    }

    .banner::after {
        width: 3px;
        height: 3px;
        top: 40px;
        box-shadow:
            0 48px 0 0 rgba(255, 215, 0, 0.85),
            0 96px 0 0 rgba(218, 165, 32, 0.9),
            0 144px 0 0 rgba(255, 215, 0, 0.8),
            0 192px 0 0 rgba(218, 165, 32, 0.85),
            0 240px 0 0 rgba(255, 215, 0, 0.9),
            0 288px 0 0 rgba(218, 165, 32, 0.8),
            -12px 72px 0 0 rgba(218, 165, 32, 0.7),
            -12px 120px 0 0 rgba(255, 215, 0, 0.75),
            -12px 168px 0 0 rgba(218, 165, 32, 0.8),
            -12px 216px 0 0 rgba(255, 215, 0, 0.7),
            -12px 264px 0 0 rgba(218, 165, 32, 0.75),
            12px 72px 0 0 rgba(218, 165, 32, 0.7),
            12px 120px 0 0 rgba(255, 215, 0, 0.75),
            12px 168px 0 0 rgba(218, 165, 32, 0.8),
            12px 216px 0 0 rgba(255, 215, 0, 0.7),
            12px 264px 0 0 rgba(218, 165, 32, 0.75),
            0 0 6px rgba(255, 215, 0, 0.6);
    }

    .crown {
        width: 180px;
        height: 180px;
    }

    .crown::before {
        font-size: 90px;
    }

    .title {
        font-size: 3.5rem;
        letter-spacing: 0.2rem;
    }

    .motto {
        font-size: 1.4rem;
    }

    .motto-2 {
        font-size: 1.4rem;
    }

    .mountain-1 {
        border-left-width: 140px;
        border-right-width: 140px;
        border-bottom-width: 160px;
    }

    .mountain-2 {
        border-left-width: 170px;
        border-right-width: 170px;
        border-bottom-width: 200px;
    }

    .mountain-3 {
        border-left-width: 120px;
        border-right-width: 120px;
        border-bottom-width: 140px;
    }

    .mountain-4 {
        border-left-width: 110px;
        border-right-width: 110px;
        border-bottom-width: 130px;
    }

    .mountain-5 {
        border-left-width: 150px;
        border-right-width: 150px;
        border-bottom-width: 180px;
    }

    .mountain-6 {
        border-left-width: 125px;
        border-right-width: 125px;
        border-bottom-width: 145px;
    }

    .description {
        bottom: 90px;
        max-width: 80%;
        font-size: 0.75rem;
        padding: 10px 20px;
    }
}

@media (max-width: 768px) {
    .banner {
        width: 60px;
        height: 360px;
    }

    .banner-left {
        left: calc(50% - 250px);
    }

    .banner-right {
        right: calc(50% - 250px);
    }

    .banner::after {
        width: 2.5px;
        height: 2.5px;
        top: 30px;
        box-shadow:
            0 36px 0 0 rgba(255, 215, 0, 0.85),
            0 72px 0 0 rgba(218, 165, 32, 0.9),
            0 108px 0 0 rgba(255, 215, 0, 0.8),
            0 144px 0 0 rgba(218, 165, 32, 0.85),
            0 180px 0 0 rgba(255, 215, 0, 0.9),
            0 216px 0 0 rgba(218, 165, 32, 0.8),
            -9px 54px 0 0 rgba(218, 165, 32, 0.7),
            -9px 90px 0 0 rgba(255, 215, 0, 0.75),
            -9px 126px 0 0 rgba(218, 165, 32, 0.8),
            -9px 162px 0 0 rgba(255, 215, 0, 0.7),
            -9px 198px 0 0 rgba(218, 165, 32, 0.75),
            9px 54px 0 0 rgba(218, 165, 32, 0.7),
            9px 90px 0 0 rgba(255, 215, 0, 0.75),
            9px 126px 0 0 rgba(218, 165, 32, 0.8),
            9px 162px 0 0 rgba(255, 215, 0, 0.7),
            9px 198px 0 0 rgba(218, 165, 32, 0.75),
            0 0 5px rgba(255, 215, 0, 0.6);
    }

    .crown {
        width: 160px;
        height: 160px;
        margin-bottom: 30px;
    }

    .crown::before {
        font-size: 70px;
    }

    .title {
        font-size: 2.5rem;
        letter-spacing: 0.15rem;
    }

    .motto {
        font-size: 1.1rem;
        letter-spacing: 0.1rem;
    }

    .motto-2 {
        font-size: 1.1rem;
        letter-spacing: 0.1rem;
    }

    .mountain-1 {
        border-left-width: 110px;
        border-right-width: 110px;
        border-bottom-width: 130px;
    }

    .mountain-2 {
        border-left-width: 140px;
        border-right-width: 140px;
        border-bottom-width: 160px;
    }

    .mountain-3 {
        border-left-width: 95px;
        border-right-width: 95px;
        border-bottom-width: 110px;
    }

    .mountain-4 {
        border-left-width: 90px;
        border-right-width: 90px;
        border-bottom-width: 105px;
    }

    .mountain-5 {
        border-left-width: 120px;
        border-right-width: 120px;
        border-bottom-width: 145px;
    }

    .mountain-6 {
        border-left-width: 100px;
        border-right-width: 100px;
        border-bottom-width: 120px;
    }

    .contact-card {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 0.8rem;
    }

    .description {
        bottom: 80px;
        max-width: 80%;
        font-size: 0.75rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding-top: 60px;
    }

    .banner {
        display: none;
    }

    .crown {
        width: 130px;
        height: 130px;
        margin-bottom: 25px;
    }

    .crown::before {
        font-size: 60px;
    }

    .title {
        font-size: 2rem;
        letter-spacing: 0.1rem;
    }

    .motto {
        font-size: 0.95rem;
    }

    .motto-2 {
        font-size: 0.95rem;
    }

    .mountain-1 {
        border-left-width: 90px;
        border-right-width: 90px;
        border-bottom-width: 110px;
    }

    .mountain-2 {
        border-left-width: 115px;
        border-right-width: 115px;
        border-bottom-width: 135px;
    }

    .mountain-3 {
        border-left-width: 75px;
        border-right-width: 75px;
        border-bottom-width: 90px;
    }

    .mountain-4 {
        border-left-width: 70px;
        border-right-width: 70px;
        border-bottom-width: 85px;
    }

    .mountain-5 {
        border-left-width: 95px;
        border-right-width: 95px;
        border-bottom-width: 115px;
    }

    .mountain-6 {
        border-left-width: 80px;
        border-right-width: 80px;
        border-bottom-width: 100px;
    }

    .star {
        width: 2px;
        height: 2px;
    }

    .contact-card {
        bottom: 15px;
        right: 15px;
        padding: 10px 15px;
        font-size: 0.7rem;
    }

    .description {
        bottom: 70px;
        max-width: 90%;
        font-size: 0.6rem;
        padding: 8px 15px;
    }
}
