* {
    user-select: none;
}

html, body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background-color: #0F0F0F;
    font-family: 'Outfit', Arial, sans-serif;
    /* Hide scrollbar for Firefox */
    scrollbar-width: none;
    /* Hide scrollbar for IE, Edge */
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    overflow-x: hidden !important;
}
html::-webkit-scrollbar, body::-webkit-scrollbar {
    display: none;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.navbar {
    padding: 2rem 0 1rem 0;
    display: flex;
    align-items: center;
    position: relative;
}

.logo {
    height: 35px;
    width: auto;
    position: absolute;
    left: -4.5rem;
}

@media (max-width: 1400px) {
    .logo {
        position: static;
        left: unset;
        margin-right: 1rem;
    }
}

.nav-links {
    display: flex;
    gap: 2rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-button {
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    padding: 0.5rem 1.5rem;
    border-radius: 999px;
    border: 2px solid transparent;
    transition: background-color 0.3s ease, color 0.3s, border-radius 0.3s, background 0.3s, border 0.5s;
    font-family: 'Outfit', Arial, sans-serif;
    position: relative;
    z-index: 1;
}

.nav-button:hover {
    background: linear-gradient(90deg, #e52d27 0%, #b31217 100%);
    border: 2px solid #e52d27;
    color: #fff;
}

.discord-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(90deg, #e52d27 0%, #b31217 100%);
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    margin-left: auto;
    transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
    font-family: 'Outfit', Arial, sans-serif;
}

.discord-btn:hover {
    background: linear-gradient(90deg, #b31217 0%, #7a1619 100%);
    color: #cccccc;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.discord-btn:hover i,
.discord-btn:hover span {
    color: #cccccc;
}

.discord-btn i {
    font-size: 1.3rem;
    line-height: 1;
}

.discord-btn span {
    position: relative;
    top: -1px;
}

/* Hide mobile menu button by default */
.mobile-menu-btn {
    display: none;
}

/* Show nav links/discord by default */
.nav-links, .discord-btn {
    display: flex;
}

/* Mobile navigation menu */
.mobile-nav {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: 340px;
    max-width: 90vw;
    height: 100%;
    background: #141414;
    z-index: 1000;
    opacity: 1;
    visibility: visible;
    transform: translateX(100%);
    transition: transform 0.3s ease, box-shadow 0.3s;
    box-shadow: -4px 0 24px 0 rgba(0,0,0,0.18);
    padding: 2.2rem 1.5rem 1.5rem 1.5rem;
    box-sizing: border-box;
    overflow-x: hidden;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.2rem;
}
.mobile-nav-title {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: 'Outfit', Arial, sans-serif;
    background: linear-gradient(90deg, #e52d27 0%, #b31217 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    letter-spacing: 0.01em;
}
.mobile-nav-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0.2rem 0.5rem;
    margin-right: -0.5rem;
    transition: color 0.2s;
}
.mobile-nav-close:hover {
    color: #e52d27;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.3rem;
    margin-bottom: 2.2rem;
}
.mobile-nav-button {
    color: #fff;
    text-decoration: none;
    font-size: 1.13rem;
    font-weight: 500;
    font-family: 'Outfit', Arial, sans-serif;
    padding: 0;
    border: none;
    background: none;
    transition: color 0.2s;
    letter-spacing: 0.01em;
    display: block;
}
.mobile-nav-button:hover {
    color: #e52d27;
}

.mobile-discord-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(90deg, #e52d27 0%, #b31217 100%);
    color: #fff;
    text-decoration: none;
    font-size: 1.13rem;
    font-weight: 600;
    padding: 0.8rem 0;
    border-radius: 8px;
    width: 100%;
    margin-top: 0.7rem;
    margin-bottom: 0.2rem;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    font-family: 'Outfit', Arial, sans-serif;
    box-shadow: 0 2px 12px 0 rgba(229,45,39,0.08);
    border: none;
}
.mobile-discord-btn i {
    font-size: 1.3rem;
}
.mobile-discord-btn:hover {
    background: linear-gradient(90deg, #b31217 0%, #7a1619 100%);
    color: #fff;
    box-shadow: 0 6px 24px 0 rgba(229,45,39,0.16);
}

/* Media query for mobile navigation */
@media (max-width: 1400px) {
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(90deg, #e52d27 0%, #b31217 100%);
        border: none;
        border-radius: 6px;
        padding: 0.5rem;
        cursor: pointer;
        transition: background 0.2s, transform 0.2s;
        margin-left: auto;
    }

    .mobile-menu-btn:hover {
        background: linear-gradient(90deg, #b31217 0%, #7a1619 100%);
        transform: translateY(-2px);
    }

    .nav-links, .discord-btn {
        display: none;
    }
}

.hero-section {
    flex: 1 1 0%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    width: 100%;
    flex-direction: row;
    min-height: 90vh;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 480px;
    width: 100%;
    gap: 1rem;
    margin-left: 0;
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-width: 0;
    margin-left: 10rem;
    position: relative;
    z-index: 1;
}

.hero-image-wrapper::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(229,45,39,0.18) 0%, rgba(179,18,23,0.08) 70%, transparent 100%);
    filter: blur(64px);
    z-index: -1;
    pointer-events: none;
}

.hero-image {
    max-width: 900px;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    user-select: none;
    pointer-events: none;
    margin-top: -50px;
}

.hero-pill {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    border: 1.5px solid #c4342f81;
    border-radius: 999px;
    padding: 1rem 1.5rem;
    background: linear-gradient(90deg, rgba(229,45,39,0.12) 0%, rgba(179,18,23,0.12) 100%);
    box-shadow: 0 2px 12px 0 rgba(80, 0, 120, 0.04);
}

.hero-pill-icon svg {
    width: 19px;
    height: 19px;
    display: block;
    background: linear-gradient(90deg, #e52d27 0%, #b31217 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-pill-text {
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Outfit', Arial, sans-serif;
    letter-spacing: 0.01em;
    background: linear-gradient(90deg, #e52d27 0%, #b31217 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-text-container {
    margin-top: 0.5rem;
    width: 120%;
}

.hero-title {
    font-size: 4.1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    font-family: 'Outfit', Arial, sans-serif;
    margin: 0;
    text-align: left;
    position: relative;
    z-index: 1;
}

.hero-title::before {
    content: "";
    position: absolute;
    left: 150px;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(229,45,39,0.22) 0%, rgba(179,18,23,0.10) 60%, transparent 100%);
    filter: blur(160px);
    z-index: -1;
    pointer-events: none;
}

.hero-gradient-invert {
    background: linear-gradient(90deg, #b31217 0%, #e52d27 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-subtext {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-top: 1.2rem;
    margin-bottom: 0;
    font-family: 'Outfit', Arial, sans-serif;
    line-height: 1.6;
    max-width: 90%;
    opacity: 0.7;
}

.hero-ticks-row {
    display: flex;
    gap: 2.2rem;
    margin-top: 1.5rem;
    align-items: center;
}

.hero-tick {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: #b0b0b0;
    font-family: 'Outfit', Arial, sans-serif;
    font-weight: 500;
}

.hero-tick i {
    color: #e52d27;
    font-size: 1.4rem;
    margin-right: 0.3rem;
}

.hero-main-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(90deg, #e52d27 0%, #b31217 100%);
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.7rem 2.1rem;
    border-radius: 8px;
    margin-top: 1.8rem;
    transition: background 0.2s, color 0.2s, transform 0.38s cubic-bezier(.4,1.2,.6,1), box-shadow 0.2s;
    font-family: 'Outfit', Arial, sans-serif;
    box-shadow: 0 2px 12px 0 rgba(229,45,39,0.08);
    border: none;
    cursor: pointer;
}
.hero-main-btn:hover {
    background: linear-gradient(90deg, #e52d27 0%, #b31217 100%);
    color: #fff;
    transform: scale(1.031);
    box-shadow: 0 6px 24px 0 rgba(229,45,39,0.16);
}

.hero-pill-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Outfit', Arial, sans-serif;
    letter-spacing: 0.01em;
    border: 1.5px solid #e52d27;
    border-radius: 8px;
    padding: 0.7rem 2.1rem;
    margin-top: 1.1rem;
    margin-left: 8px;
    min-width: 180px;
    min-height: 44px;
    box-sizing: border-box;
    background: linear-gradient(90deg, rgba(229,45,39,0.12) 0%, rgba(179,18,23,0.12) 100%);
    color: transparent;
    background-clip: padding-box;
    -webkit-background-clip: padding-box;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(90deg, #e52d27 0%, #b31217 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: box-shadow 0.2s, border 0.2s, background 0.2s;
    cursor: pointer;
}
.hero-pill-btn:hover {
    box-shadow: 0 4px 16px 0 rgba(229,45,39,0.13);
    border-color: #b31217;
}

.products-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: #0F0F0F;
    position: relative;
    min-height: 75vh;
    margin-top: 8rem;
    scroll-margin-top: 4rem;
    overflow: visible;
    justify-content: center;
}

.products-corner-decoration {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    display: block;
    width: 80px;
    height: 80px;
    pointer-events: none;
    opacity: 0.3;
}

.products-corner-decoration svg {
    width: 100%;
    height: 100%;
    display: block;
}

.products-corner-decoration-bottom {
    top: auto;
    left: auto;
    right: 0;
    bottom: 0;
    transform: translateY(0);
}

.products-pill {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    border: 1.5px solid #c4342f81;
    border-radius: 999px;
    padding: 1rem 1.5rem;
    background: linear-gradient(90deg, rgba(229,45,39,0.12) 0%, rgba(179,18,23,0.12) 100%);
    box-shadow: 0 2px 12px 0 rgba(80, 0, 120, 0.04);
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
}

.products-pill-icon svg {
    width: 19px;
    height: 19px;
    display: block;
}

.products-pill-icon svg path {
    stroke: url(#products-gradient);
}

.products-pill-text {
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Outfit', Arial, sans-serif;
    letter-spacing: 0.01em;
    background: linear-gradient(90deg, #e52d27 0%, #b31217 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.products-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0 0 0 0;
    text-align: center;
    background: linear-gradient(90deg, #e52d27 0%, #b31217 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-family: 'Outfit', Arial, sans-serif;
    letter-spacing: 0.01em;
    position: relative;
    z-index: 1;
}

.products-title::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(229,45,39,0.22) 0%, rgba(179,18,23,0.10) 60%, transparent 100%);
    filter: blur(100px);
    z-index: -1;
    pointer-events: none;
}

.products-subtext {
    color: #b0b0b0;
    font-size: 1.1rem;
    margin-bottom: 0;
    font-family: 'Outfit', Arial, sans-serif;
    line-height: 1.6;
    max-width: 40%;
    opacity: 0.7;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.5rem;
}

.products-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.4rem;
    margin-top: 2.5rem;
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
    margin-bottom: 2rem;
    flex-grow: 0;
}

.product-card {
    box-sizing: border-box;
    background: rgba(229,45,39,0.12);
    border-radius: 8px;
    box-shadow: 0 2px 16px 0 rgba(229,45,39,0.07);
    padding: 1.2rem 1rem 1rem 1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1.5px solid #c4342f81;
    transition: all 0.3s ease;
    margin-left: 0;
    margin-right: 0;
    min-height: 280px;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    overflow: hidden;
    cursor: pointer;
    font-family: 'Outfit', Arial, sans-serif;
    text-align: left;
    /* Reset button styles */
    background: rgba(229,45,39,0.12);
    border: 1.5px solid #c4342f81;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    text-decoration: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.product-card:hover,
.product-card:focus {
    outline: none;
    box-shadow: 0 8px 32px 0 rgba(229,45,39,0.16);
    border-color: #e52d27;
    transform: scale(1.02);
}

.product-card:hover .product-card-overlay,
.product-card:focus .product-card-overlay {
    opacity: 1;
}

.product-card:hover .purchase-text,
.product-card:focus .purchase-text {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover::before,
.product-card:focus::before {
    opacity: 1;
}

.product-card::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(229,45,39,0.15) 0%, rgba(179,18,23,0.08) 60%, transparent 100%);
    filter: blur(60px);
    z-index: -1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: transparent;
}

.product-card:hover .product-card-overlay {
    opacity: 1;
}

.purchase-text {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Outfit', Arial, sans-serif;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    background: linear-gradient(90deg, #e52d27 0%, #b31217 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(229, 45, 39, 0.3);
}

.product-card:hover .purchase-text {
    opacity: 1;
    transform: translateY(0);
}

.product-card-img {
    width: 100%;
    height: 80px;
    object-fit:scale-down;
    border-radius: 10px;
    padding: 0.5rem 0rem 1rem 0rem;
    margin-bottom: 1.2rem;
}
.product-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 95%;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(229,45,39,0.2);
}
.product-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-align: left;
    font-family: 'Outfit', Arial, sans-serif;
}
.product-card-price {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    text-align: right;
    background: linear-gradient(90deg, #e52d27 0%, #b31217 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 8px rgba(229,45,39,0.45), 0 0 16px rgba(179,18,23,0.25);
}
.product-card-description {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin: -0.2rem 0;
    text-align: center;
    line-height: 1.5;
    opacity: 0.85;
    padding: 0 0.9rem;
    font-family: 'Outfit', Arial, sans-serif;
    flex-grow: 1;
}

.features-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #0F0F0F;
    position: relative;
    min-height: auto;
    scroll-margin-top: 4rem;
    margin-top: 8rem;
    z-index: 1;
    min-height: 90vh;
}

.features-section::before,
.features-section::after {
    content: '';
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    filter: blur(190px);
    opacity: 0.45;
    pointer-events: none;
}
.features-section::before {
    width: 580px;
    height: 290px;
    left: -10%;
    top: 30%;
    background: radial-gradient(circle, #ff0808 0%, transparent 100%);
}
.features-section::after {
    width: 780px;
    height: 320px;
    right: -20%;
    bottom: 10%;
    background: radial-gradient(circle, #cf1f1f 0%, transparent 100%);
}

.features-pill {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    border: 1.5px solid #c4342f81;
    border-radius: 999px;
    padding: 1rem 1.5rem;
    background: linear-gradient(90deg, rgba(229,45,39,0.12) 0%, rgba(179,18,23,0.12) 100%);
    box-shadow: 0 2px 12px 0 rgba(80, 0, 120, 0.04);
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
}

.features-pill-icon svg {
    width: 19px;
    height: 19px;
    display: block;
}

.features-pill-icon svg path {
    stroke: url(#features-gradient);
}

.features-pill-text {
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Outfit', Arial, sans-serif;
    letter-spacing: 0.01em;
    background: linear-gradient(90deg, #e52d27 0%, #b31217 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.features-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    margin-top: 2.5rem;
    width: 100%;
}

.feature-card {
    box-sizing: border-box;
    background: rgba(229,45,39,0.1);
    border-radius: 8px;
    box-shadow: 0 2px 16px 0 rgba(229,45,39,0.07);
    padding: 1.7rem 1.7rem 1.7rem 1.7rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1.5px solid #c4342f81;
    transition: all 0.38s cubic-bezier(.4,1.2,.6,1), box-shadow 0.2s, border 0.2s, background 0.2s, transform 0.38s cubic-bezier(.4,1.2,.6,1);
    margin-left: 0;
    margin-right: 0;
    min-height: 180px;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-align: left;
    backdrop-filter: blur(0.5px);
    cursor: default;
}

.feature-card:hover,
.feature-card:focus {
    border: 1.5px solid #e52d27;
    box-shadow: 0 8px 32px 0 rgba(229,45,39,0.16);
    transform: scale(1.015);
}

.feature-card:hover .feature-card-title,
.feature-card:focus .feature-card-title {
    -webkit-text-fill-color: transparent;
    color: transparent;
    opacity: 1;
}

.feature-icon-box {
    width: 57px;
    height: 57px;
    border-radius: 8px;
    background: rgba(229,45,39,0.1);
    border: 1.5px solid #c4342f81;
    box-shadow: 0 2px 16px 0 rgba(229,45,39,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    margin-top: 0.2rem;
}

.feature-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem 0;
    text-align: left;
    font-family: 'Outfit', Arial, sans-serif;
    background: linear-gradient(90deg, #e52d27 0%, #b31217 100%);
    background-clip: text;
    -webkit-background-clip: text;
    transition: color 0.5s cubic-bezier(.4,1.2,.6,1), -webkit-text-fill-color 0.5s cubic-bezier(.4,1.2,.6,1), opacity 0.5s cubic-bezier(.4,1.2,.6,1);
    -webkit-text-fill-color: #fff;
    opacity: 1;
}

.feature-card-description {
    color: #b0b0b0;
    font-size: 0.875rem;
    margin: 0;
    text-align: left;
    line-height: 1.5;
    opacity: 0.85;
    padding: 0 0.9rem 0 0;
    font-family: 'Outfit', Arial, sans-serif;
    flex-grow: 1;
}

.features-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0 0 0 0;
    text-align: center;
    background: linear-gradient(90deg, #e52d27 0%, #b31217 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-family: 'Outfit', Arial, sans-serif;
    letter-spacing: 0.01em;
    position: relative;
    z-index: 1;
    
}

.features-title::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(229,45,39,0.22) 0%, rgba(179,18,23,0.10) 60%, transparent 100%);
    filter: blur(150px);
    z-index: -1;
    pointer-events: none;
}

.features-subtext {
    color: #b0b0b0;
    font-size: 1.1rem;
    margin-bottom: 0;
    font-family: 'Outfit', Arial, sans-serif;
    line-height: 1.6;
    max-width: 40%;
    opacity: 0.7;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    
}

.faq-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    scroll-margin-top: 4rem;
    margin-top: 8rem;
    position: relative;
    min-height: 90vh;
}

.faq-pill {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.6rem;
    border: 1.5px solid #c4342f81;
    border-radius: 999px;
    padding: 1rem 1.5rem;
    background: linear-gradient(90deg, rgba(229,45,39,0.12) 0%, rgba(179,18,23,0.12) 100%);
    box-shadow: 0 2px 12px 0 rgba(80, 0, 120, 0.04);
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
}

.faq-pill-gradient {
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Outfit', Arial, sans-serif;
    letter-spacing: 0.01em;
    background: linear-gradient(90deg, #e52d27 0%, #b31217 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
    margin-left: 0.2rem;
}

.faq-pill-icon svg {
    width: 22px;
    height: 22px;
    display: block;
}

.faq-pill-text {
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Outfit', Arial, sans-serif;
    letter-spacing: 0.01em;
    background: linear-gradient(90deg, #e52d27 0%, #b31217 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.faq-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0 0 0 0;
    text-align: center;
    background: linear-gradient(90deg, #e52d27 0%, #b31217 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-family: 'Outfit', Arial, sans-serif;
    letter-spacing: 0.01em;
    position: relative;
    z-index: 1;
    
}

.faq-title::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(229,45,39,0.22) 0%, rgba(179,18,23,0.10) 60%, transparent 100%);
    filter: blur(150px);
    z-index: -1;
    pointer-events: none;
}

.faq-subtext {
    color: #b0b0b0;
    font-size: 1.1rem;
    margin-bottom: 0;
    font-family: 'Outfit', Arial, sans-serif;
    line-height: 1.6;
    max-width: 40%;
    opacity: 0.7;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    
}

.faq-accordion {
    width: 100%;
    max-width: 90%;
    margin: 2.5rem auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.faq-dropdown {
    background: rgba(229,45,39,0.07);
    border-radius: 10px;
    box-shadow: 0 2px 12px 0 rgba(229,45,39,0.04);
    border: 1.5px solid #c4342f81;
    overflow: hidden;
    transition: box-shadow 0.2s, border 0.2s;
}

.faq-dropdown:hover {
    border: 1.5px solid #e52d27;
    box-shadow: 0 8px 32px 0 rgba(229,45,39,0.16);
}

.faq-dropdown-toggle {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 1.1rem;
    font-family: 'Outfit', Arial, sans-serif;
    font-weight: 600;
    text-align: left;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-chevron {
    display: flex;
    align-items: center;
    margin-left: 1rem;
    transition: transform 0.3s;
}

.faq-chevron svg path {
    stroke: #b0b0b0;
}

.faq-dropdown-toggle.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-dropdown-toggle:hover,
.faq-dropdown-toggle.active {
    background: none;
    background: linear-gradient(90deg, #e52d27 0%, #b31217 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.faq-dropdown.active {
    border: 1.5px solid #e52d27;
    box-shadow: 0 8px 32px 0 rgba(229,45,39,0.16);
}

.faq-dropdown-content {
    background: none;
    color: #b0b0b0;
    font-size: 1rem;
    font-family: 'Outfit', Arial, sans-serif;
    line-height: 1.6;
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(.4,1.2,.6,1), padding 0.2s;
}

.feature-card, .feature-card * {
    user-select: none;
}

.vouches-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #0F0F0F;
    position: relative;
    min-height: 90vh;
    scroll-margin-top: 4rem;
    margin-top: 8rem;
    margin-bottom: 7rem;
    justify-content: center;
}

.vouches-pill {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.6rem;
    border: 1.5px solid #c4342f81;
    border-radius: 999px;
    padding: 1rem 1.5rem;
    background: linear-gradient(90deg, rgba(229,45,39,0.12) 0%, rgba(179,18,23,0.12) 100%);
    box-shadow: 0 2px 12px 0 rgba(80, 0, 120, 0.04);
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
}

.vouches-pill-icon svg {
    width: 22px;
    height: 22px;
    display: block;
}

.vouches-pill-text {
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Outfit', Arial, sans-serif;
    letter-spacing: 0.01em;
    background: linear-gradient(90deg, #e52d27 0%, #b31217 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.vouches-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    text-align: center;
    background: linear-gradient(90deg, #e52d27 0%, #b31217 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-family: 'Outfit', Arial, sans-serif;
    letter-spacing: 0.01em;
    position: relative;
    z-index: 1;
}

.vouches-title::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(229,45,39,0.22) 0%, rgba(179,18,23,0.10) 60%, transparent 100%);
    filter: blur(150px);
    z-index: -1;
    pointer-events: none;
}

.vouches-subtext {
    color: #b0b0b0;
    font-size: 1.1rem;
    margin-bottom: 0;
    font-family: 'Outfit', Arial, sans-serif;
    line-height: 1.6;
    max-width: 40%;
    opacity: 0.7;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.5rem;
}

.vouches-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
    width: 90%;
    margin-bottom: 2rem;
}

.vouch-card {
    box-sizing: border-box;
    background: rgba(229,45,39,0.1);
    border-radius: 8px;
    box-shadow: 0 2px 16px 0 rgba(229,45,39,0.07);
    padding: 1.7rem 1.7rem 1.7rem 1.7rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1.5px solid #c4342f81;
    transition: all 0.38s cubic-bezier(.4,1.2,.6,1), box-shadow 0.2s, border 0.2s, background 0.2s;
    margin-left: 0;
    margin-right: 0;
    min-height: 180px;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-align: left;
    backdrop-filter: blur(0.5px);
    cursor: default;
}

.vouch-card:hover,
.vouch-card:focus,
.vouch-card.active {
    border: 1.5px solid #e52d27;
    box-shadow: 0 8px 32px 0 rgba(229,45,39,0.16);
}

.vouch-card-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.7rem;
}

.vouch-profile-img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #232232;
}

.vouch-username {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Outfit', Arial, sans-serif;
}

.vouch-text {
    color: #b0b0b0;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-family: 'Outfit', Arial, sans-serif;
    opacity: 0.85;
}

.vouch-stars {
    margin-bottom: 0;
}

.vouch-star {
    color: #FFD600;
    font-size: 1.15rem;
    margin-right: 2px;
    letter-spacing: 1px;
}

.vouch-date {
    color: #b0b0b0;
    font-size: 0.85rem;
    opacity: 0.7;
    font-family: 'Outfit', Arial, sans-serif;
}

.vouch-card-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    margin-top: auto;
    gap: 1rem;
}

.vouch-card.hidden-vouch {
    display: none;
}

.show-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #e52d27 0%, #b31217 100%);
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.7rem 2.1rem;
    border-radius: 8px;
    margin-top: 2rem;
    transition: background 0.2s, color 0.2s, transform 0.38s cubic-bezier(.4,1.2,.6,1), box-shadow 0.2s;
    font-family: 'Outfit', Arial, sans-serif;
    box-shadow: 0 2px 12px 0 rgba(229,45,39,0.08);
    border: none;
    cursor: pointer;
}

.show-more-btn:hover {
    background: linear-gradient(90deg, #e52d27 0%, #b31217 100%);
    color: #fff;
    transform: scale(1.031);
    box-shadow: 0 6px 24px 0 rgba(229,45,39,0.16);
}

.vouches-stats-bar {
    width: 100%;
    margin: 2.5rem auto 2rem auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: rgba(20, 20, 20, 0.85);
    border-radius: 18px;
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.12);
    padding: 2.5rem 0rem;
    gap: 2rem;
}
.vouches-stat {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 120px;
}
.vouches-stat-number {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Outfit', Arial, sans-serif;
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}
.vouches-stat-label {
    color: #e0e0e0;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Outfit', Arial, sans-serif;
    opacity: 0.85;
    text-align: center;
}
@media (max-width: 900px) {
    .vouches-stats-bar {
        display: none !important;
    }
    .vouches-stat {
        min-width: 0;
        flex: 1 1 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .vouches-stat-number {
        font-size: clamp(1rem, 4vw, 2rem);
    }
    .vouches-stat-label {
        font-size: clamp(0.7rem, 2vw, 1rem);
    }
}
@media (max-width: 600px) {
    .vouches-stats-bar {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 0.7rem 0.1rem;
    }
    .vouches-stat {
        flex: 0 0 50%;
        max-width: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .vouches-stat-number {
        font-size: clamp(0.8rem, 6vw, 1.3rem);
    }
    .vouches-stat-label {
        font-size: clamp(0.6rem, 3vw, 0.95rem);
    }
}

.stats-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #0F0F0F;
    padding: 2.5rem 0 2.5rem 0;
    min-height: auto;
    margin-top: 0;
}

.footer-section {
    width: 100%;
    background: #0F0F0F;
    padding: 0px 0px 8px 0px;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2.5rem 0rem 1.5rem 0rem;
    
    margin: 0 auto;
    gap: 2rem;
}
.footer-left {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
}
.footer-logo {
    width: 200px;
    height: auto;
    
}
.footer-site-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-left: 0.7rem;
    background: linear-gradient(90deg, #e52d27 0%, #b31217 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-family: 'Outfit', Arial, sans-serif;
    display: inline-block;
    vertical-align: middle;
}
.footer-description {
    color: #e0e0e0;
    font-size: 1.05rem;
    
    font-family: 'Outfit', Arial, sans-serif;
    opacity: 0.5;
    max-width: 500px;
}
.footer-disclaimer {
    font-size: 0.98rem;
    margin: 0.5rem 0 0 0;
    font-family: 'Outfit', Arial, sans-serif;
    opacity: 0.85;
    background: linear-gradient(90deg, #e52d27 0%, #b31217 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.footer-socials {
    display: flex;
    gap: 0.7rem;
    margin-top: 0.7rem;
}
.footer-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #181818;
    border-radius: 8px;
    color: #fff;
    font-size: 1.3rem;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    text-decoration: none;
    border: 1.5px solid #232232;
}
.footer-social-btn:hover {
    background: linear-gradient(90deg, #e52d27 0%, #b31217 100%);
    color: #fff;
    box-shadow: 0 2px 12px 0 rgba(229,45,39,0.13);
}
.footer-right, .footer-policies {
    margin-left: auto;
    max-width: 100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
}

.footer-policies {
    max-width: 120px !important;
}
.footer-links-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.7rem;
    font-family: 'Outfit', Arial, sans-serif;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.footer-links li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1.05rem;
    font-family: 'Outfit', Arial, sans-serif;
    transition: color 0.2s;
}
.footer-links li a:hover {
    color: #e52d27;
}
.footer-bottom {
    width: 100%;
    text-align: left;
    color: #b0b0b0;
    font-size: 1rem;
    border-top: 1px solid #232232;
    padding: 1.2rem 0rem 0.5rem 0rem;
    margin-top: 1.2rem;
    font-family: 'Outfit', Arial, sans-serif;
}
@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 2.5rem;
        padding: 2.5rem 1rem 1.5rem 1rem;
    }
    .footer-left, .footer-right {
        align-items: flex-start;
        min-width: 0;
        margin-left: 0;
    }
    .footer-bottom {
        padding: 1.2rem 1rem 0.5rem 1rem;
    }
    .footer-right {
        display: none !important;
    }
    .footer-policies {
        display: none !important;
    }
}

@media (max-width: 1200px) {
    .hero-image-wrapper {
        display: none;
    }
    .hero-section {
        justify-content: flex-start;
        align-items: center;
        flex-direction: column;
        text-align: center;
        margin-top: 8rem;
        
        min-height: 90vh;
    }
    .hero-content {
        align-items: center;
        margin-left: 0;
        max-width: var(--hero-content-max-width, 600px);
        width: 100%;
    }
    .hero-text-container {
        width: 100%;
        max-width: var(--hero-text-max-width, 600px);
        margin: 0 auto;
    }
    .hero-title {
        max-width: var(--hero-title-max-width, 700px);
        margin: 0 auto;
        text-align: center;
    }
    .hero-subtext {
        max-width: var(--hero-subtext-max-width, 600px);
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
    .hero-ticks-row {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 645px) {
    .hero-title {
        font-size: 2.87rem; /* 70% of 4.1rem */
    }
    .hero-subtext {
        font-size: 1rem; /* 70% of 1.1rem */
    }
}

@media (max-width: 475px) {
    .hero-title {
        font-size: clamp(2.3rem, 7vw, 2.87rem);
    }
    .hero-subtext {
        font-size: clamp(1rem, 3vw, 1rem);
    }
    .logo {
        height: clamp(20px, 7vw, 28px);
    }
    .hero-pill {
        padding: clamp(0.7rem, 2vw, 1rem) clamp(1.2rem, 4vw, 1.5rem);
    }
    .hero-pill-text {
        font-size: clamp(0.9rem, 3vw, 1rem);
    }
    .hero-main-btn,
    .hero-pill-btn {
        display: none !important;
    }
    .hero-section {
        min-height: 90vh;
    }
    .vouches-section {
        margin-top: 7.5rem;
    }
}

@media (max-width: 1250px) {
    .products-cards {
        grid-template-columns: 1fr 1fr;
        justify-items: center;
        width: auto;
        margin-left: auto;
        margin-right: auto;
    }
    .product-card {
        max-width: 420px;
        width: 100%;
    }
    .center-card {
        grid-column: span 2;
        justify-self: center;
    }
    .products-subtext {
        max-width: 75%;
    }
    .features-subtext{
        max-width: 75%;
    }
    .vouches-subtext{
        max-width: 75%;
    }
    .vouches-cards{
        grid-template-columns: 1fr 1fr;
    }
    .faq-subtext{
        max-width: 75%;
        grid-template-columns: 1fr 1fr;
    }
    .showcase-subtext {
        max-width: 75% !important;
    }
}
@media (max-width: 800px) {
    .hero-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 90vh;
        margin-top: 0;
        margin-bottom: 0;
    }
    .products-cards {
        grid-template-columns: 1fr;
        
    }
    .center-card {
        grid-column: auto !important;
    }
    .features-cards{
        grid-template-columns: 1fr;
    }
    .vouches-cards{
        grid-template-columns: 1fr;
    }
    .products-corner-decoration,
    .products-corner-decoration-bottom {
        display: none !important;
    }
}

/* Legal pages gradient background and container */
.legal-gradient-bg {
    min-height: 100vh;
    width: 100%;
    
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 3.5rem 0 3rem 0;
}
.legal-content-container {
    
    border-radius: 22px;
    
    padding: 2.7rem 2.5rem 2.5rem 2.5rem;
    max-width: 900px;
    width: 100%;
    color: #fff;
    margin: 0 1rem;
    display: flex;
    flex-direction: column;
    font-family: 'Outfit', Arial, sans-serif;
}
.legal-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.legal-title {
    font-size: 3.1rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
    letter-spacing: 0.01em;
}
.legal-last-updated {
    font-size: 1.1rem;
    color: #e0e0e0;
    opacity: 0.7;
    font-weight: 500;
    margin-bottom: 0.3rem;
}
.legal-divider {
    border: none;
    border-top: 2px solid #333;
    margin: 1.2rem 0 1.7rem 0;
}
.legal-intro {
    color: #b0b0b0;
    font-size: 1.13rem;
    margin-bottom: 2.1rem;
    margin-top: 0;
    line-height: 1.6;
}
.legal-section-title {
    font-size: 1.45rem;
    font-weight: 700;
    margin: 2.1rem 0 1.1rem 0;
    color: #fff;
    letter-spacing: 0.01em;
}
.legal-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.7rem 0;
}
.legal-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    color: #e0e0e0;
    font-size: 1.08rem;
    
    line-height: 1.6;
    position: relative;
}
.legal-dot {
    display: inline-block;
    width: 0.7em;
    height: 0.7em;
    margin-top: 0.55em;
    border-radius: 50%;
    background: linear-gradient(90deg, #e52d27 0%, #b31217 100%);
    flex-shrink: 0;
}
@media (max-width: 600px) {
    .legal-content-container {
        padding: 1.2rem 0.7rem 1.2rem 0.7rem;
    }
    .legal-title {
        font-size: 2.1rem;
    }
    .legal-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Showcase Section Styles */
.showcase-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-height: 90vh;
    margin-top: 8rem;
    scroll-margin-top: 4rem;
    overflow: visible;
    justify-content: center;
}

.showcase-pill {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    border: 1.5px solid #c4342f81;
    border-radius: 999px;
    padding: 1rem 1.5rem;
    background: linear-gradient(90deg, rgba(229, 45, 39, 0.12) 0%, rgba(179, 18, 23, 0.12) 100%);
    box-shadow: 0 2px 12px 0 rgba(80, 0, 120, 0.04);
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
}

.showcase-pill-text{
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Outfit', Arial, sans-serif;
    letter-spacing: 0.01em;
    background: linear-gradient(90deg, #e52d27 0%, #b31217 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.showcase-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0 0 0 0;
    text-align: center;
    background: linear-gradient(90deg, #e52d27 0%, #b31217 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-family: 'Outfit', Arial, sans-serif;
    letter-spacing: 0.01em;
    position: relative;
    z-index: 1;
}

.showcase-title::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -70%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(229, 45, 39, 0.22) 0%, rgba(179, 18, 23, 0.10) 60%, transparent 100%);
    filter: blur(100px);
    z-index: -1;
    pointer-events: none;
}

.showcase-subtext {
    color: #b0b0b0;
    font-size: 1.1rem;
    margin-bottom: 0;
    font-family: 'Outfit', Arial, sans-serif;
    line-height: 1.6;
    max-width: 40%;
    opacity: 0.7;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.5rem;
}

.showcase-video-container {
    width: 100%;
    max-width: 900px;
    margin: 2.5rem auto 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    background: #141414;
    position: relative;
}

.showcase-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    aspect-ratio: 16/9;
    object-fit: cover;
    z-index: 1000;
}

/* --- Purchase Notification Styles --- */
.purchase-notification {
  position: fixed;
  left: 32px;
  min-width: 270px;
  max-width: 340px;
  background: #181818ee;
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.18);
  padding: 1.1rem 1.5rem 1.1rem 1.1rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  font-size: 1.08rem;
  font-family: 'Outfit', Arial, sans-serif;
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(.4,1.2,.6,1), opacity 0.6s cubic-bezier(.4,1.2,.6,1);
}
.purchase-notification.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.purchase-notification.hide-left {
  opacity: 0;
  transform: translate(-120%, 0) scale(0.95);
}
.notif-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  margin-right: 13px;
  flex-shrink: 0;
  box-shadow: 0 0 8px 2px rgba(229,45,39,0.18);
}
.notif-text {
  flex: 1;
  line-height: 1.4;
  word-break: break-word;
}
@media (max-width: 600px) {
  .purchase-notification {
    left: 8px;
    min-width: 180px;
    max-width: 90vw;
    font-size: 0.98rem;
    padding: 0.7rem 1rem 0.7rem 0.8rem;
  }
}




