* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #111111;
    min-height: 100vh;
    color: #fff;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: #000000 url('../assets/1070077_7063.svg?v=4') repeat;
}



.invite-btn {
    position: absolute;
    bottom: 100px;
    right: 200px;
    background: #5865F2;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 20px 33px;
    text-decoration: none;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    border-radius: 7px;
    white-space: nowrap;
}

.invite-discord-icon {
    width: 33px;
    height: 24px;
    flex-shrink: 0;
}


.ticker-bar {
    background: #ffb533;
    overflow: hidden;
    white-space: nowrap;
    height: 44px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 6;
}

.ticker-inner {
    display: inline-flex;
    align-items: center;
    gap: 0;
    animation: ticker-scroll 25s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #111;
    padding: 0 40px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ticker-separator {
    color: #111;
    font-size: 12px;
    opacity: 0.5;
}

@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Slider */
.slider-wrapper {
    position: relative;
    z-index: 5;
}

.slider-container {
    position: relative;
    height: calc(100vh - 80px - 60px);
    overflow: hidden;
}

.slider-slide {
    display: none;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    animation: fadeIn 0.4s ease;
    position: relative;
}

.slider-slide.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-slide > *:not(.invite-btn):not(.slider-dots) {
    width: 100%;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: transparent;
    border: none;
    color: #ffb533;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.slider-arrow-left {
    left: 15px;
}

.slider-arrow-right {
    right: 15px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 12px 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

@media (max-width: 1024px) {
    .slider-container {
        height: auto;
        min-height: calc(100vh - 80px - 60px);
    }

    .slider-slide {
        overflow-y: visible;
    }
}

@media (max-width: 768px) {
    .slider-arrow {
        width: 32px;
        height: 32px;
        font-size: 18px;
        top: 30vh;
        transform: none;
    }

    .slider-arrow svg {
        width: 32px;
        height: auto;
    }

    .slider-arrow-left {
        left: 4px;
    }

    .slider-arrow-right {
        right: 4px;
    }

    .slider-container {
        min-height: auto;
        height: auto;
    }

    .slider-slide.active {
        min-height: 60vh;
    }

    .slider-dots {
        margin-top: 20px;
        padding: 16px 0 20px;
        position: relative;
    }
}

@media (max-width: 480px) {
    .slider-arrow {
        width: 26px;
        height: 26px;
    }

    .slider-arrow svg {
        width: 26px;
    }
}

/* Hero Section */
.hero {
    display: flex;
    min-height: auto;
    padding: 60px 60px;
    position: relative;
}

.hero-content {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 80px;
    padding-left: 60px;
    position: relative;
    max-width: none;
}

h1 {
    font-size: clamp(28px, 6vw, 90px);
    line-height: 1.1;
    margin-bottom: 5px;
}

.hero-logo-svg {
    width: 100%;
    max-width: 480px;
    height: auto;
    display: block;
}

h1 .stay {
    color: #fff;
    font-weight: 300;
    font-style: italic;
}

h1 .strong {
    color: #ffb533;
    font-weight: 700;
    font-style: italic;
}

.subtitle {
    font-size: clamp(18px, 3.5vw, 42px);
    font-style: italic;
    color: #fff;
    margin-bottom: 30px;
}

.description {
    font-size: 18px;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 1300px;
}

.desc-break {
    display: block;
    height: 0.8em;
}

.desc-highlight {
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
}

/* CTA Button */
.cta-button {
    position: relative;
    background: transparent;
    border: 2px solid #ffb533;
    color: #ffb533;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    width: fit-content;
    transition: all 0.3s ease;
    margin-left: 20px;
}

.cta-button::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 100%;
    background: #ffb533;
    clip-path: polygon(100% 0, 100% 100%, 0 50%);
}

.cta-button:hover {
    background: #ffb533;
    color: #1a1a1a;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    gap: 10px;
    margin-top: 60px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #444;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #fff;
}



/* Mobile-only inline hero image (shown on small screens, hidden on desktop). */
.mobile-hero-image {
    display: none;
}

/* Hero Image */
.hero-image {
    flex: 1.2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    padding-right: 60px;
}

.image-shape {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 500px;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%, 0 20%);
    overflow: hidden;
}

.image-shape img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}





/* Responsive */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        padding: 40px 30px 120px;
    }

    .hero-content {
        max-width: 100%;
        padding-right: 0;
        padding-left: 0;
        margin-bottom: 40px;
    }

    .image-shape {
        height: 400px;
    }

    .invite-btn {
        right: 30px;
        bottom: 40px;
        font-size: 20px;
        padding: 16px 26px;
    }
}

@media (max-width: 768px) {
    .slider-slide.active {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
    }

    /* Keep the inline cover background as the hero backdrop on mobile.
       Hide the separate mobile <img> so the image sits BEHIND the text. */
    .mobile-hero-image {
        display: none;
    }

    /* Show the background image smaller and shifted slightly to the left,
       instead of the full-bleed `cover` set by the inline style. */
    .slider-slide[data-slide="0"] {
        background-size: 200% auto !important;
        background-position: 30% center !important;
        background-repeat: no-repeat !important;
        background-color: #0c0c0c !important;
    }

    /* Dark overlay so text remains readable over the image. */
    .slider-slide[data-slide="0"]::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.55) 0%,
            rgba(0, 0, 0, 0.7) 60%,
            rgba(0, 0, 0, 0.85) 100%
        );
        z-index: 0;
        pointer-events: none;
    }

    .slider-slide[data-slide="0"] > * {
        position: relative;
        z-index: 1;
    }

    /* Extra horizontal padding so text never sits under the slider arrows. */
    .hero {
        padding: 32px 52px 24px;
        flex-direction: column;
    }

    .hero-content {
        padding-right: 0;
        padding-left: 0;
        margin-bottom: 16px;
    }

    .hero-logo-svg {
        max-width: 240px;
    }

    .subtitle {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .description {
        font-size: 13px;
        margin-bottom: 20px;
        line-height: 1.65;
    }

    .desc-break {
        height: 0.5em;
    }

    .invite-btn {
        position: relative;
        bottom: auto;
        right: auto;
        font-size: 16px;
        padding: 14px 22px;
        margin: 16px auto 0;
        display: flex;
        justify-content: center;
        align-self: stretch;
        width: 100%;
        max-width: 360px;
    }

    /* Stack: "Featured" label on top, slider/carousel below. */
    .featured-leagues-small {
        flex-direction: column;
        align-items: stretch;
    }

    .featured-leagues-label {
        padding: 10px 12px 6px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-bottom: 1px solid rgba(255, 181, 51, 0.35);
    }

    .featured-leagues-label img {
        height: 14px;
    }

    .featured-leagues-carousel {
        width: 100%;
    }

    .featured-leagues-small .carousel-slide img {
        height: 36px;
    }

    .featured-fade-left {
        width: 40px;
    }

    .carousel-inner,
    .carousel-set {
        gap: 40px;
    }

    .discord-widget {
        padding: 30px 16px;
        width: 100%;
        box-sizing: border-box;
    }

    .discord-widget iframe {
        width: 100%;
        max-width: 350px;
        height: 70vh;
        max-height: 500px;
        min-height: 380px;
    }

    .ticker-item {
        font-size: 12px;
        padding: 0 24px;
    }

    .ticker-bar {
        height: 36px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 26px 44px 20px;
    }

    .hero-content {
        margin-bottom: 12px;
    }

    .description {
        font-size: 12px;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .subtitle {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .hero-logo-svg {
        max-width: 200px;
    }

    .invite-btn {
        font-size: 14px;
        padding: 12px 18px;
        gap: 10px;
    }

    .invite-discord-icon {
        width: 22px;
        height: 18px;
    }

    .featured-leagues-small .carousel-slide img {
        height: 30px;
    }

    .featured-leagues-label img {
        height: 12px;
    }

    .featured-leagues-label {
        padding: 8px 10px 8px 12px;
    }

    .ticker-item {
        font-size: 11px;
        padding: 0 18px;
    }
}

/* Featured Leagues (small, below slider) */
.featured-leagues-small {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    border-top: 2px solid #ffb533;
    overflow: hidden;
    margin-top: 0;
}

.featured-leagues-label {
    flex-shrink: 0;
    padding: 15px 30px 15px 60px;
    position: relative;
    z-index: 3;
    background: transparent;
}

.featured-leagues-label img {
    height: 18px;
    width: auto;
    filter: invert(1);
    display: block;
}

.featured-leagues-carousel {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-width: 0;
}

.featured-fade-left {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 80px;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.featured-leagues-small .logo-carousel {
    padding: 10px 0;
}

.featured-leagues-small .carousel-slide img {
    height: 50px;
}

/* Featured Leagues Header (default) */
.featured-leagues-header {
    background: transparent;
    padding: 40px 60px 20px;
    position: relative;
    z-index: 5;
}

.featured-leagues-header img {
    height: 40px;
    width: auto;
    filter: invert(1);
}

/* Section Divider */
.section-divider {
    width: 100%;
    height: 3px;
    background: #ffb533;
    position: relative;
    z-index: 5;
}

/* Logo Carousel */
.logo-carousel {
    background: transparent;
    padding: 40px 0;
    overflow: hidden;
    position: relative;
    z-index: 5;
    width: 100%;
    display: flex;
}

.carousel-inner {
    display: flex;
    gap: 80px;
    will-change: transform;
}

.carousel-set {
    display: flex;
    gap: 80px;
    flex-shrink: 0;
}

.carousel-slide {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide img {
    height: 200px;
    width: auto;
    opacity: 1;
}

.carousel-slide img:hover {
    opacity: 1;
}

/* Discord Widget */
.discord-widget {
    display: flex;
    justify-content: center;
    padding: 60px 0;
    position: relative;
    z-index: 5;
}

.discord-widget iframe {
    border-radius: 8px;
}

/* Pricing Page */
.pricing-main {
    padding: 100px 60px 80px;
    position: relative;
    z-index: 5;
}

.pricing-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffb533;
    text-align: center;
    margin-bottom: 20px;
    font-style: italic;
}

.pricing-title-img {
    display: block;
    width: 120%;
    max-width: 1200px;
    margin: 0 0 40px 0;
    filter: invert(75%) sepia(83%) saturate(1200%) hue-rotate(3deg);
}

.pricing-subtitle {
    font-size: 20px;
    color: #ccc;
    text-align: center;
    margin-bottom: 60px;
}

.patreon-info {
    background: linear-gradient(135deg, rgba(255, 181, 51, 0.08) 0%, rgba(0, 0, 0, 0.4) 100%);
    border: 2px solid rgba(255, 181, 51, 0.5);
    border-radius: 12px;
    padding: 40px 50px;
    margin: 0 0 60px 0;
    position: relative;
    overflow: hidden;
}

.patreon-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #ffb533;
}

.patreon-info-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.patreon-info-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffb533;
    margin: 0;
    font-family: 'Titillium Web', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.patreon-info-text {
    font-size: 16px;
    line-height: 1.7;
    color: #d4d4d4;
    margin: 0;
    max-width: 100%;
}

.patreon-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #f96854;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(249, 104, 84, 0.35);
    margin-top: 8px;
}

.patreon-cta-btn:hover {
    background: #ff7a68;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 104, 84, 0.5);
}

.patreon-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.pricing-table-container {
    overflow-x: auto;
    max-width: 100%;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: #161616;
    border-radius: 0;
    overflow: hidden;
    min-width: 800px;
}

.pricing-table th,
.pricing-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 181, 51, 0.5);
}

.pricing-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #fff;
    width: 480px;
    min-width: 200px;
}

.pricing-table th {
    background: #000000;
    color: #ffb533;
    font-weight: 600;
    font-size: 24px;
    text-align: center;
    border-top: 2px solid #ffb533;
    border-bottom: 2px solid #ffb533;
}

.pricing-table th:first-child {
    border-left: 2px solid #ffb533;
}

.pricing-table th:last-child {
    border-right: 2px solid #ffb533;
}

.pricing-table td {
    color: #ccc;
    font-size: 20px;
}

.pricing-table td:nth-child(n+2) {
    text-align: center;
}

.pricing-table th:nth-child(4) {
    background: #ffb533 !important;
    color: #000000 !important;
    border-top-color: #333333 !important;
}



.pricing-table td:nth-child(4) {
    background: #ffb533 !important;
    color: #000000 !important;
    border-bottom-color: #333333 !important;
    font-weight: bold !important;
}

.pricing-table tr:hover {
    background: rgba(255, 255, 255, 0.08);
}

.pricing-table .price-row {
    background: #000000;
    border-top: 2px solid #ffb533;
    border-bottom: 2px solid #ffb533;
}

.pricing-table .price-row td {
    font-weight: 600;
    color: #ffb533;
    font-size: 20px;
    background: #000000;
}

.pricing-table .price-row td:first-child {
    font-weight: 700;
    border-left: 2px solid #ffb533;
}

.pricing-table .price-row td:last-child {
    border-right: 2px solid #ffb533;
}

.pricing-table span {
    font-weight: bold;
    font-size: 1.2em;
}

@media (max-width: 1024px) {
    .pricing-main {
        padding: 60px 30px 60px;
    }

    .pricing-title-img {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .pricing-main {
        padding: 40px 16px 40px;
    }

    .pricing-title-img {
        width: 100%;
        max-width: 100%;
        margin-bottom: 24px;
    }

    .pricing-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .pricing-table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .pricing-table th {
        font-size: 16px;
        padding: 10px 12px;
    }

    .pricing-table td {
        font-size: 14px;
        padding: 10px 12px;
    }

    .pricing-table td:first-child {
        width: 160px;
        min-width: 120px;
        font-size: 13px;
        padding-left: 12px;
    }

    .pricing-table .price-row td {
        font-size: 15px;
    }

    .pricing-table span {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .pricing-main {
        padding: 32px 12px 32px;
    }

    .pricing-table th {
        font-size: 13px;
        padding: 8px 8px;
    }

    .pricing-table td {
        font-size: 12px;
        padding: 8px 8px;
    }

    .pricing-table td:first-child {
        width: 130px;
        min-width: 100px;
        font-size: 11px;
    }
}

