﻿.bg-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/main-wallpaper.jpg') no-repeat center center / cover;
    z-index: 0;
}

.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(112.32deg, rgba(38, 51, 84, 0.55) 1.51%, rgba(52, 70, 100, 0.5) 25.57%, rgba(46, 46, 46, 0.55) 95.94%);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-block: 1rem;
    padding-bottom: 80px;
}



.content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 1rem;
}

.main-header {
    font-weight: 700;
    font-family: 'gov_bold';
    font-size: 58px;
    line-height: 100%;
    text-align: center;
    text-shadow: 2px 2px 12px rgba(0,0,0,0.6);
    max-width: 100%;
    margin: 0px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 16px;
}

.main-header2 {
    font-weight: 400;
    font-size: 36px;
    line-height: 100%;
    color: #FFCEA0;
    text-align: center;
    max-width: 100%;
    margin: 0px;
    width: 100%;
}

.cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}


.card {
    position: relative;
    width: 480px;
    height: 240px;
    gap: 6px;
    border-radius: 20px;
    border-width: 1px;
    padding: 20px;
    border: 1px solid #FFFFFF4D;
    box-shadow: 0px 8px 18px 0px #00000033;
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all .5s
}

    .card a {
        height: 100% !important;
        z-index: 9999 !important;
    }

    .card:hover {
        transform: scale(1.01)
    }

    .card.rojava {
        background: #B8B8B814 url('/images/rojava.jpg') no-repeat center/cover;
    }

    .card.chamchamal {
        background: #B8B8B814 url('/images/chamchamal.jpg') no-repeat center/cover;
    }

    .card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 20px;
    }

    .card-text {
        position: absolute;
        bottom: -1px;
        left: 0;
        right: 0;
        width: 100%;
        padding: 12px 20px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(14px);
        border-bottom-right-radius: 16px;
        border-bottom-left-radius: 20px;
        color: #fff;
        font-size: 20px;
        font-weight: 500;
        align-items: end;
        text-align: right;
        line-height: 1.8rem
    }

        .card-text .show-campaign {
            font-weight: 400;
            font-size: 16px;
            line-height: 100%;
            text-align: center;
            color: #FFCEA0
        }

        .card-text .campaign-type {
            font-size: 26px;
            font-weight: 700;
        }


    .footer-ticker {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50px;
        z-index: 5;
        padding: 10px 16px;
        background: linear-gradient(90deg, rgba(235, 37, 37, 0.2) 0%, rgba(186, 131, 48, 0.2) 100%);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-top: 1px solid rgba(255,255,255,0.25);
        display: flex;
        flex-direction: column;
        gap: 6px;
    }


    .clipboard-box {
        width: 280px;
        background: #8263351A;
        color: #FFE2C6;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        height: 50px;
        font-size: 16px;
        border-radius: 80px;
        border-width: 1px;
        padding: 18px 20px;
        text-align: center;
        backdrop-filter: blur(24px);
        border: 1px solid #DDA58A99;
        transition: .8s;
    }

        .clipboard-box:hover {
            background: #DDA58A99;
            cursor: pointer;
            color: #ffffff;
        }

.toast {
    position: fixed;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #eb252533, #ba833033);
    color: #fff;
    padding: 14px 22px;
    padding-bottom: 10px;
    width: 260px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: opacity 0.4s ease, transform 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 9999;
}

        .toast.show {
            opacity: 1;
            transform: translateX(0);
        }

    @media (max-width: 768px) {
        .content-wrapper {
            width: 100%;
        }

        .content {
            gap: 1rem;
            padding-bottom: 60px;
        }

        .main-header {
            font-size: 44px;
            text-align: center;
            display: flex;
            justify-content: center;
            gap: 10px;
        }

        .main-header2 {
            font-size: 28px;
        }

        .cards {
            width: 100%;
            flex-direction: column;
            gap: 1rem;
            margin-top: 0rem;
        }


        .card {
            width: 85%;
        }

        .card-text {
            font-size: 16px;
            line-height: 1.4rem;
        }

            .card-text .campaign-type {
                font-size: 20px;
            }

        .footer-ticker {
            height: 36px;
            padding: 6px 10px;
            font-size: 12px;
        }
    }