.gradient-text {
    background: linear-gradient(90deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.dark-glass {
    background: rgba(15, 23, 42, 0.8) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

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

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    padding: 5% 4%;
    position: relative;
    box-sizing: border-box;
}

.percent80 {
    width: 80%;
    max-width: 1200px;
    height: auto;
    text-align: center;
}

.issues-each {
    margin: 1.5rem 0;
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--color-text);
    width: 440px;
    padding: 1rem;
    display: flex;
    gap: 1rem;
    border-radius: 8px;
    height: 165px;
    background-color: var(--color-bg-dark);
    align-items: center;
}

.issues-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.issues-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    flex: 1;
    min-width: 250px;
    max-width: 400px;
}

.row-gap-20 {
    display: flex;
    gap: 20px 20px;
}

.column-gap-20 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.white-bg {
    margin-top: 10px;
    padding: 0;
    width: 100%;
    background: var(--color-bg-light);
    color: var(--color-text-dark) !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.color-text-dark {
    color: var(--color-text-dark) !important;
}

.row-flex {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.column-flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.center-box {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cta-button-gold {
    padding: 0.8rem 1.5rem !important;
    border-radius: 60px  !important;
    background: var(--color-strong)  !important;
    color: var(--color-bg-dark) !important;
    font-weight: 600 !important;
    font-size: clamp(0.9rem, 2.5vw, 1.2rem) !important;
    animation: fadeInUp 2s ease forwards !important;
    animation-delay: 0.7s !important;
    text-align: center !important;
    cursor: pointer !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
}

.cta-button-dark {
    padding: 0.8rem 1.5rem !important;
    border-radius: 60px !important;
    background: var(--color-bg-dark) !important;
    color: var(--color-text-light) !important;
    font-weight: 600 !important;
    font-size: clamp(0.9rem, 2.5vw, 1.2rem) !important;
    animation: fadeInUp 2s ease forwards !important;
    animation-delay: 0.7s !important;
    text-align: center !important;
    cursor: pointer !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    margin-bottom: 10px !important;
}

.cta-button-gold:hover {
    background: #ffd633;
}

.font-heading {
    font-family: "Oswald", sans-serif;
}

.font-body {
    font-family: "Plus Jakarta Sans", sans-serif;
}

.font-cta {
    font-family: "Rowdies", sans-serif;
}

.text-center {
    text-align: center;
}

a:-webkit-any-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

p {
    font-size: 1.2rem;
    color: #e0e0e0;
    line-height: 1.6;
    margin: 15px 0 25px;
    opacity: 0;
    animation: fadeInUp 2s ease forwards;
    animation-delay: 0.7s;
}

strong {
    color: var(--color-strong);
    font-weight: 700;
}

@keyframes slideDown {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }

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

@keyframes fadeInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

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

/* Tablet adjustments */
@media (max-width: 768px) {
    .header {
        gap: 1.5rem;
        padding: 8% 5%;
    }

    .percent80 {
        width: 90%;
    }

    .cta-button-gold {
        padding: 0.7rem 1.2rem;
        border-radius: 40px;
    }

    p {
        font-size: 1rem;
    }

    .row-flex {
        flex-direction: column;
    }
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .header {
        gap: 1rem;
        padding: 10% 6%;
    }

    .percent80 {
        width: 100%;
    }

    .percent90 {
        width: 90%;
        display: flex;
        justify-content: center !important;
    }

    .cta-button-gold {
        padding: 0.6rem 1rem !important;
        border-radius: 30px !important;
        font-size: 1.3rem !important;
    }

    .cta-button-dark {
        padding: 0.6rem 1rem !important;
        border-radius: 30px !important;
        font-size: 1.3rem !important;
    }

    .issues-row {
        flex-direction: column;
    }

    .issues-each {
        font-size: 1rem;
        width: 380px;
        padding: 0.8rem;
        gap: 0.4rem;
        border-radius: 8px;
        height: 130px;
        background-color: var(--color-bg-dark);
        justify-content: center;
    }
}
