@font-face {
    font-family: 'SCHABO';
    src: url('../SCHABO-Condensed.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'RedHatDisplay';
    src: url('../RedHatDisplay-Variable.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

:root {
    --kiba-black: #000000;
    --kiba-purple: #871dfd;
    --kiba-neon: #d5f12c;
}

.titulo {
    font-family: 'SCHABO', sans-serif;
}

.subtitulo {
    font-family: 'RedHatDisplay', sans-serif;
}

.btn {
    border-radius: 5px !important;
}

/* Replicated styles from resources/css/custom.css to ensure consistency */
html,
body {
    overflow-x: hidden;
    width: 100%;
    background-attachment: fixed;
    min-height: 100vh;
}

[data-bs-theme="dark"] body {
    background: linear-gradient(135deg, #000000 0%, #2a0952 100%);
}

.container-520 {
    max-width: 520px;
}

[data-bs-theme="dark"] .card {
    background-color: rgba(20, 0, 30, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(135, 29, 253, 0.3);
}

[data-bs-theme="dark"] .navbar {
    /* background-color: #000000 !important; Removed to allow purple */
    /* background-image: none !important; */
    opacity: 1 !important;
    border-bottom: 1px solid rgba(135, 29, 253, 0.3);
}


.btn-primary {
    --bs-btn-bg: #871dfd;
    --bs-btn-border-color: #871dfd;
    --bs-btn-hover-bg: #6a16c7;
    --bs-btn-hover-border-color: #6a16c7;
    color: white;

}

[data-bs-theme="dark"] .plus-badge {
    background-color: var(--kiba-neon);
    color: var(--kiba-black);
    font-weight: 900;
    padding: 5px 15px;
    text-transform: uppercase;
    font-size: 1.8rem;
    display: inline-block;
    transform: skew(-10deg);
    vertical-align: middle;
}

/* Additional utility if needed */
.text-kiba-purple {
    color: var(--kiba-purple);
}


/* Ticker/Marquee Styles */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.ticker {
    display: flex;
    white-space: nowrap;
    width: max-content;
    /* Ensure it takes full width of content */
    animation: ticker 15s linear infinite;
}

.ticker-item {
    flex: 0 0 auto;
    padding: 10px 0;
    /* Vertical padding */
    width: 25vw;
    /* Each item 1/4 of viewport width for standard 4-item look, or just auto */
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--bs-black);
    /* Default text color, overridden by classes */
    text-transform: uppercase;
}

/* Background helper classes for the ticker items from the image */
.bg-prop-1 {
    background-color: #871dfd;
    color: white;
}

/* Purple */
.bg-prop-2 {
    background-color: #a45bfd;
    color: white;
}

/* Lighter Purple */
.bg-prop-3 {
    background-color: #c089fe;
    color: white;
}

/* Even Lighter Purple */
.bg-prop-4 {
    background-color: #d5f12c;
    color: black;
}

/* Neon */
.ls-custom {
    letter-spacing: 0.05em !important;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Move half way (assuming 2 sets of items) */
}

/* Styles moved from welcome.blade.php */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-btn {
    font-size: 0.8rem !important;
    padding: 0.4rem 0.8rem !important;
}

.hero-title {
    font-size: 5.4rem !important;
}

@media (max-width: 991.98px) {
    .hero-section {
        min-height: 88vh;
        display: block;
        padding-top: 2rem;
        padding-bottom: 2rem;
        background-image: url('/img/banner-home-movil.jpg');
        background-size: cover;
        background-position: center bottom;
    }

    .content-title {
        font-size: 3.5rem !important;
    }
}

@media (min-width: 991.98px) {
    .content-title {
        font-size: 5rem !important;
    }

    .hero-btn {
        font-size: 1.25rem !important;
        padding: 0.5rem 2rem !important;
    }

    .academy-plus-title {
        font-size: 3rem !important;
        line-height: 1.2;
    }

    .plus-price-text {
        font-size: 1.5rem !important;
        line-height: 1;
    }

    .plus-subscribe-btn {
        font-size: 1rem !important;
        padding: 0.6rem 1.2rem !important;
        background-color: var(--kiba-neon) !important;
        color: black !important;
        box-shadow: 0 0 15px rgba(213, 241, 44, 0.8) !important;
        border-radius: 8px !important;
        font-weight: bold !important;
    }

    .plus-original-price {
        font-size: 1.2rem !important;
        text-decoration: line-through !important;
        text-decoration-color: red !important;
    }

    .plus-annual-price {
        font-size: 1rem !important;
    }
}

@media (max-width: 991.98px) {
    .academy-plus-title {
        font-size: 2rem !important;
    }

    .plus-price-text {
        font-size: 1.2rem !important;
    }

    .plus-original-price {
        font-size: 0.9rem !important;
    }

    .plus-annual-price {
        font-size: 0.8rem !important;
    }

    .plus-subscribe-btn {
        font-size: 0.8rem !important;
        padding: 0.4rem 0.8rem !important;
    }
}

@media (max-width: 520px) {
    .hero-title {
        font-size: 3.8rem !important;
    }

    .ticker-item {
        font-size: 0.8rem;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 3rem !important;
    }
}

@media (max-width: 768px) {
    .ticker-item {
        width: 33.33vw;
    }
}