@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@900&display=swap');

html,
body {
    min-height: 100vh;
} 

body {
    background-color: #051425;
    background-image: url(background-image.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    
    overflow: hidden;
}

.composition-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
    margin-top: -47vh;
}

.curved-wrapper {
    width: 1200px;
    height: 342px;
    z-index: 2;
}

.curved-wrapper svg {
    display: block;
}

.curved-text {
    font-size: 44px;
    font-weight: 900;
    margin-top: -160px;
    
    letter-spacing: 1px;
    text-shadow: 1px 1px 1px #000,1px 1px 1px #000,1px 1px 1px #000;
    filter: drop-shadow(0px 10px 6px rgba(0,0,0,.95));
    text-transform: uppercase;
}

.white-part { 
    fill: #ffffff; 
}

.gold-part { 
    fill: #F6E671; 
}

.middle-text {
    font-size: 46px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 2px 2px 6px #000;
    z-index: 3;
    margin-top: -35px;
}

.main-numbers {
    font-size: 142px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -3px;
    position: relative;
    z-index: 4;
    display: flex;
    align-items: baseline;
    gap: 15px;
    letter-spacing: 6px;
    padding-top: 85px;
}

.filter-left {
    background: linear-gradient(to bottom,
        #ffffff 0%,
        #e0e0e0 45%,
        #a0a0a0 55%,
        #ffffff 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; 
    padding-right: 8px;
    
    filter: drop-shadow(0px 1px 0px #b8860b)
            drop-shadow(1px -2px 0px #CEB84F)
            drop-shadow(2px 4px 0px #996900)
            drop-shadow(1px 1px 0px #8b7c34)
            drop-shadow(12px 12px 2px rgba(0,0,0,0.3));
}

.filter-right {
    background: linear-gradient(to bottom,
        #ffffff 0%,
        #e0e0e0 45%,
        #a0a0a0 55%,
        #ffffff 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; 
    padding-left: 8px;
    
    filter: drop-shadow(0px 1px 0px #b8860b)
            drop-shadow(-1px -2px 0px #CEB84F)
            drop-shadow(-2px 4px 0px #996900)
            drop-shadow(-1px 1px 0px #8b7c34)
            drop-shadow(12px 12px 2px rgba(0,0,0,0.3)); 
}

.x-icon {
    position: absolute;
    top: 35%;
    width: 600px;
    height: 600px;
    border: 12px solid rgba(255, 229, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

/* ring middle */
.x-icon:before {
    content: '';
    position: absolute;
    top: 18px;
    left: 18px;
    right: 18px;
    bottom: 18px;
    border: 12px solid rgba(255, 229, 0, 0.6);
    border-radius: 50%;
}

/* ring inner */
.x-icon:after {
    content: '';
    position: absolute;
    top: 44px;
    left: 44px;
    right: 44px;
    bottom: 44px;
    border: 12px solid #ffe500;
    border-radius: 50%;
}

.x-icon img {
    display: block;
    width: 100%;
    height: auto;
}



/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(168, 139, 250, 0.3);
    padding: 20px 40px;
    z-index: 1000;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
    display: none;
    animation: slideUp 0.5s ease-out;
}

.cookie-consent.show {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(100%);
    }
}

.cookie-text {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 28px;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.cookie-accept {
    background: linear-gradient(180deg, #003594 0%, #003594 60%, #1F6BFF 100%);
    color: #ffffff;
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(88, 66, 255, 0.4);
}

.cookie-decline {
    background: transparent;
    color: #cbd5e1;
    border: 1px solid rgba(168, 139, 250, 0.3);
}

.cookie-decline:hover {
    border-color: rgba(168, 139, 250, 0.6);
    color: #ffffff;
}

/* CTA Button */
.cta-button {
    position: absolute;
    bottom: -200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 18px 48px;
    font-size: 28px;
    font-weight: 700;
    font-family: inherit;
    color: #fff;
    text-decoration: none;

    background: linear-gradient(180deg, #003594 0%, #003594 60%, #1F6BFF 100%);
    border-radius: 50px;

    border: 4px solid #F3D27A;

    box-shadow:
            0 3px 0 #A8742A,                  
            0 0 12px rgba(255, 200, 90, 0.45), 
            0 8px 16px rgba(0, 0, 0, 0.45),    

            inset 0 3px 6px rgba(255, 255, 255, 0.35), 
            inset 0 -4px 10px rgba(0, 0, 0, 0.45),     
            inset 0 0 8px rgba(255, 220, 150, 0.25);   
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}


@media (max-width: 1280px){
    .composition-container {
        margin-top: -40vh;
    }

    .curved-wrapper {
        width: 900px;
        height: 257px;
    }
    .curved-text {
        font-size: 44px;
    }

    .middle-text {
        font-size: 36px;
        margin-top: -20px;
    }

    .main-numbers {
        font-size: 106px;
        letter-spacing: -2px;
        gap: 12px;
        letter-spacing: 6px;
        padding-top: 60px;
    }

    .filter-left {
        padding-right: 4px;
    }

    .filter-right {
        padding-left: 4px;
    }

    .x-icon {
        width: 460px;
        height: 460px;
        border: 10px solid rgba(255, 229, 0, 0.2);
    }

    /* ring middle */
    .x-icon:before {
        top: 16px;
        left: 16px;
        right: 16px;
        bottom: 16px;
        border: 10px solid rgba(255, 229, 0, 0.6);
    }

    /* ring inner */
    .x-icon:after {
        top: 40px;
        left: 40px;
        right: 40px;
        bottom: 40px;
        border: 10px solid #ffe500;
    }

}

@media (max-width: 1024px){
    .composition-container {
        margin-top: -33vh;
    }

    .curved-wrapper {
        width: 700px;
        height: 199px;
    }
    .curved-text {
        font-size: 38px;
    }

    .middle-text {
        font-size: 32px;
        margin-top: -15px;
    }

    .main-numbers {
        font-size: 72px;
        gap: 6px;
        letter-spacing: 4px;
        padding-top: 60px;
    }

    .filter-left {
        padding-right: 3px;
    }

    .filter-right {
        padding-left: 3px;
    }

    .x-icon {
        width: 380px;
        height: 380px;
        border: 7px solid rgba(255, 229, 0, 0.2);
    }

    /* ring middle */
    .x-icon:before {
        top: 11px;
        left: 11px;
        right: 11px;
        bottom: 11px;
        border: 7px solid rgba(255, 229, 0, 0.6);
    }

    /* ring inner */
    .x-icon:after {
        top: 27px;
        left: 27px;
        right: 27px;
        bottom: 27px;
        border: 7px solid #ffe500;
        border-radius: 50%;
    }

     .cookie-consent {
        padding: 15px 20px;
    }

    .cookie-consent.show {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .cookie-text {
        font-size: 0.85rem;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .cta-button {
        bottom: -160px;
        padding: 14px 42px;
        font-size: 22px;
        border: 3px solid #F3D27A;
    }
}

@media (max-width: 700px){
    .composition-container {
        margin-top: -28vh;
    }

    .curved-wrapper {
        width: 580px;
        height: 165px;
    }
    .curved-text {
        font-size: 36px;
    }

    .middle-text {
        font-size: 20px;
        margin-top: -30px;
    }

    .main-numbers {
        font-size: 60px;
        gap: 6px;
        letter-spacing: 0px;
        padding-top: 40px;
    }

    .filter-left {
        padding-right: 4px;
    }

    .filter-right {
        padding-left: 4px;
    }

    .x-icon {
        width: 265px;
        height: 265px;
        border: 5px solid rgba(255, 229, 0, 0.2);
    }

    /* ring middle */
    .x-icon:before {
        top: 8px;
        left: 8px;
        right: 8px;
        bottom: 8px;
        border: 5px solid rgba(255, 229, 0, 0.6);
    }

    /* ring inner */
    .x-icon:after {
        top: 20px;
        left: 20px;
        right: 20px;
        bottom: 20px;
        border: 5px solid #ffe500;
        border-radius: 50%;
    }

    .cta-button {
        bottom: -100px;
        padding: 8px 25px;
        font-size: 18px;
        border: 2px solid #F3D27A;
    }
}

@media (max-width: 500px){
    .composition-container {
        margin-top: -26vh;
    }

    .curved-wrapper {
        width: 460px;
        height: 131px;
    }
    .curved-text {
        font-size: 36px;
    }

    .middle-text {
        font-size: 20px;
        margin-top: -20px;
    }

    .main-numbers {
        font-size: 54px;
        gap: 6px;
        padding-top: 35px;
    }

    .x-icon {
        top: 29%;
    } 

    .cookie-consent {
        padding: 12px 15px;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }

    .cta-button {
        bottom: -115px;
    }
}

@media (max-width: 400px){
    .composition-container {
        margin-top: -26vh;
    }
}
