:root {
    --primary-red: #EC1C24;
    --primary-green: #0FA635;
    --text-white: #ffffff;
    --text-dark: #020205;
    --text-muted: #6c757d;
    --bg-dark: #020205;
    --bg-light: #f8f9fa;
}

body,
html {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
}

.hero-section {
    height: 100vh;
    background: linear-gradient(to right, rgba(2, 2, 5, 0.9) 20%, rgba(2, 2, 5, 0.4) 50%, rgba(2, 2, 5, 0) 100%),
        url('../assets/img/hero_at.jpg');
    background-size: cover;
    background-position: center right;
    display: flex;
    align-items: center;
}

/* Logo Styling */
.logo {
    font-size: 3.2rem;
    font-weight: 700;
}

.logo-at {
    color: var(--primary-red);
}

.logo-text {
    color: var(--text-white);
}

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

.d-flex.gap-3.mt-5.ss {
    margin-top: 20vh !important;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
}

.hero-content {
    color: #fff;
}

.btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
}

a.btn.btn-danger.w-100.py-3.d-flex.align-items-center.justify-content-center.gap-2 {
    background: #EC1C24;
}

.btn-register {
    background-color: var(--text-white);
    color: var(--bg-dark);
    padding: 15px 45px;
    border-radius: 8px;
    border: none;
    transition: transform 0.2s;
}

/* Winners Section */
.winners-section {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.winners-logo {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: -5px;
}

.winners-title {
    font-weight: 800;
    font-size: 2rem;
    text-transform: lowercase;
}

.vertical-divider {
    width: 1px;
    height: 100px;
    background-color: #dee2e6;
    margin: 0 auto;
}

.ticker-container {
    height: 420px;
    /* Increased for massive text visibility */
    position: relative;
    overflow: hidden;
}

.ticker-container::before,
.ticker-container::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 100px;
    z-index: 10;
    pointer-events: none;
}

.ticker-container::before {
    top: 0;
    background: linear-gradient(to bottom, #f8f9fa 20%, rgba(248, 249, 250, 0) 100%);
}

.ticker-container::after {
    bottom: 0;
    background: linear-gradient(to top, #f8f9fa 20%, rgba(248, 249, 250, 0) 100%);
}

.ticker-list {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.ticker-item.active {

    font-weight: 700;
}

.ticker-item {
    height: 140px;
    /* Increased height for 60px text */
    /* color: #ced4da; */
    color: #0d6efd;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    /* More space for the icon with larger text */
    font-family: 'Montserrat', sans-serif;
    font-size: 60px;
    /* Massive text as requested */

    line-height: 100%;
    letter-spacing: -0.02em;
}

span.t-info b {
    font-weight: 700;
}

.t-info,
.t-result {
    display: block;
    white-space: nowrap;
    line-height: 1.2;
}

.t-info {
    font-size: 25px;
    margin-bottom: 2px;
}

.t-result {
    font-size: 25px;
}

.ticker-item.active {
	color : #0d6efd
    /* color: var(--primary-green); */
}

.ticker-item.active::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background-image: url('/assets/img/reward.png');
    background-size: contain;
    background-repeat: no-repeat;
}

/* Brand Line Section */
.brand-line-section {
    position: relative;
    padding: 100px 0;
    background-color: var(--bg-light);
    overflow: hidden;
}

.brand-line-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 400px;
    transform: translate(-50%, -50%) rotate(-3deg);
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.brand-line-section .container {
    z-index: 2;
}

.brand-horse-img {
    max-width: 140%;
    position: relative;
    left: -40%;
    z-index: 3;
    pointer-events: none;
}

.brand-text-col {
    color: var(--text-white);
    padding-left: 100px;
}

.brand-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.brand-cta {
    font-size: 1.1rem;
}


/* Pricing Section */
.pricing-section {
    background-color: #F1F4F9;
    /* Matching the light bg from screenshot */
    color: var(--text-dark);
}

.pricing-main-title {
    font-size: 2rem;
    font-weight: 700;
}

.pricing-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    border: none;
}

.pricing-card.premium {
    box-shadow: 0 0 50px rgba(255, 60, 60, 0.15);
    /* Red glow from screenshot */
}

.card-content {
    flex-grow: 1;
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4F4F4F;
    margin-bottom: 10px;
}

.plan-desc {
    color: #4F4F4F;
    font-size: 15px;
    margin-bottom: 0px;
    min-height: 40px;
    text-align: left;
}

.divider {
    height: 1px;
    background-color: #ccc;
    width: 100%;
    margin-bottom: 20px;
}

.plan-features {
    text-align: left;
}

.plan-features li {
    margin-bottom: 15px;
    font-size: 15px;
    color: #4F4F4F;
    display: flex;
    align-items: center;
    font-weight: 400;
}

.plan-features i {
    font-size: 1.1rem;
    margin-right: 12px;
}

.card-footer-btn {
    padding-top: 30px;
}

span.text-dangerr.fw-bold {
    color: #EC1C24 !important;
}

.btn-outline-free {
    width: 100%;
    border: 1px solid #ff3c3c;
    color: #ff3c3c;
    padding: 15px;
    border-radius: 8px;
    background: transparent;
    transition: all 0.3s;
}

.btn-outline-free:hover {
    background-color: #ff3c3c;
    color: #fff;
}

.btn-solid-premium {
    width: 100%;
    background-color: #ff3c3c;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.btn-solid-premium:hover {
    transform: translateY(-2px);
    color: #fff;
}

.brightness-0 {
    filter: brightness(0);
}

.invert {
    filter: invert(1);
}


.ticker-item.active {
    padding-left: 55px;
}

@media (max-width: 991px) {
    .ticker-item.active {
        padding-left: 0;
    }

    a.btn.btn-footer-outline {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    a.btn.btn-footer-premium.d-flex.align-items-center.gap-2 {
        padding-left: 25px;
        padding-right: 20px;
    }

    .winners-logo {
        margin-top: 30px;
    }

    .atmbl {
        position: absolute;
        left: 0;
        width: 91%;
        bottom: -42px;
    }

    .hero-mobile-horse.d-lg-none.mt-4 {
        position: relative;
        min-height: 280px;
    }

    .pricing-main-title {
        font-size: 22px;
    }

    /* Winners Section Mobile */
    .winners-section {
        text-align: center;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .winners-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .vertical-divider {
        width: 200px;
        height: 1px;
        margin: 9px auto 16px auto;
        background-color: #000;
    }

    .ticker-container {
        height: 240px;
        /* Reduced for mobile */
    }

    .ticker-item {
        height: 90px;
        font-size: 20px;
        padding-left: 0;
        text-align: center;
    }

    .ticker-item.active .t-info {
        position: relative;
        display: block;
        padding-left: 0;
    }

    .ticker-item.active .t-info::before {
        display: none;
    }

    .ticker-item.active::before {
        display: none;
        /* Hide the broken old one */
    }

    .t-info,
    .t-result {
        font-size: 18px;
        /* Slightly larger for mobile */
        white-space: nowrap;
        line-height: 1.3;
    }

    .hero-section {
        background-image: url('../assets/img/hero_mobile_bg.jpg') !important;
        background-position: center bottom;
        background-size: cover;
        text-align: center;
        height: 100vh;
        padding-top: 40px;
        padding-bottom: 40px;
        display: flex;
        align-items: flex-start;
        /* Push content to top, badges will be at bottom */
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 100%;
        width: 100%;
    }

    .logo {
        margin-bottom: 0 !important;
        font-size: 1.6rem;
        margin-top: 10vh;
    }

    .logo img {
        height: 35px;
    }

    .hero-title {
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.5rem !important;
        opacity: 0.8;
    }

    .btn-register {
        width: auto;
        padding: 10px 40px;
        font-size: 1.1rem;
    }

    .d-flex.gap-3.mt-5.ss {
        margin-top: 0px;
        /* Push badges to the very bottom */
        margin-bottom: 20px;
        justify-content: center;
        width: 100%;
    }

    .d-flex.gap-3.mt-5.ss .app-badge img {
        height: 45px;
    }

    .d-flex.gap-3.mt-5.ss {
        margin-top: 30vh !important;
    }

    /* Brand Section Mobile Re-fix */
    .brand-line-section {
        padding: 80px 0 0 0;
        /* Padding for top text */
        text-align: center;
        background-color: #020205;
        position: relative;
        min-height: 80vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .brand-line-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../assets/img/mobil_at.png') !important;
        background-size: cover;
        background-position: center bottom;
        z-index: 1;
        transform: none;
    }

    .brand-line-section .container {
        z-index: 5;
    }

    .brand-text-col {
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .brand-description {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .brand-cta {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .brand-line-section .d-flex {
        justify-content: center;
        width: 100%;
    }

    .brand-horse-img {
        display: none !important;
        /* Integrated in bg */
    }
}

/* Footer Section */
.footer-section {
    background-color: #010B1F;
    /* Deep navy from screenshot */
    color: var(--text-white);
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
}

.footer-divider {
    height: 1px;
    background-color: rgb(255 255 255);
    width: 100%;
}

.btn-footer-outline {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--text-white);
    padding: 10px 40px;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-footer-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
}

.btn-footer-premium {
    border: 1px solid var(--primary-red);
    color: var(--text-white);
    padding: 10px 40px;
    border-radius: 6px;
    background: rgba(255, 60, 60, 0.05);
    transition: all 0.3s;
}

.btn-footer-premium:hover {
    background: var(--primary-red);
    color: var(--text-white);
}

.btn-footer-premium i {
    color: var(--primary-red);
    transition: color 0.3s;
}

.btn-footer-premium:hover i {
    color: white;
}
