/*
 * DESIGN SYSTEM
 * Inspired by the provided Battlefield 6 promotional images.
*/
:root {
    --color-background-fallback: #08080a;
    --color-surface: #141416;
    --color-text-primary: #ffffff;
    --color-text-secondary: #a0a0a0;
    --color-accent: #ff4500; /* Vibrant orange-red from reference */
    --color-border: #2a2a2e;
    --color-warning: #ffd700;
    --font-family-heading: 'Teko', sans-serif;
    --font-family-body: 'Inter', sans-serif;
}
/*
 * BASE & RESET
*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html, body {
    background-color: var(--color-background-fallback); /* Fallback color */
    background-image: url('https://www.ea.com/_next/static/media/BF6_BaseBG.3b6ebe76.png');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--color-text-primary);
    font-family: var(--font-family-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}
h1, h2, h3, h4 {
    font-family: var(--font-family-heading);
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 1.5px;
}
/*
 * HERO SECTION
*/
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 60vh;
    padding: 4rem 1.5rem;
    overflow: hidden;
    background-image: url('https://shared.fastly.steamstatic.com/store_item_assets/steam/apps/2807960/library_hero.jpg');
    background-size: cover;
    background-position: center;
}
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 8, 10, 1) 5%, rgba(8, 8, 10, 0.8) 50%, rgba(8, 8, 10, 0.4) 100%);
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.hero-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}
.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
}
.hero p {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 600px;
}
/*
 * MAIN CONTENT & LAYOUT
*/
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}
.section {
    margin-bottom: 4rem;
}
.section--guarantee {
    background: linear-gradient(120deg, rgba(255, 69, 0, 0.18) 0%, rgba(8, 8, 10, 0.92) 100%);
    border: 1px solid rgba(255, 69, 0, 0.36);
    border-radius: 16px;
    margin: -2rem auto 2.5rem;
    padding: 2.5rem 0;
    text-align: center;
    max-width: 1100px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.guarantee-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.section--guarantee h2 {
    font-size: clamp(2.25rem, 5vw, 3rem);
    margin: 0;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}

.section--guarantee p {
    color: var(--color-text-secondary);
    font-size: 1.125rem;
    margin: 0 auto;
    max-width: 780px;
    line-height: 1.7;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(8, 8, 10, 0.75);
    border: 1px solid rgba(255, 69, 0, 0.4);
    padding: 0.5rem 1.5rem;
    border-radius: 999px;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.4);
}

.guarantee-flag {
    font-size: 1.75rem;
    line-height: 1;
}

.badge-text {
    font-weight: 700;
    color: var(--color-text-primary);
}
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-header h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}
.section-header::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--color-accent);
    margin: 0.5rem auto 0;
}
.section-header p {
    color: var(--color-text-secondary);
    max-width: 640px;
    margin: 0.75rem auto 0;
    font-size: 1.05rem;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
/*
 * CARD STYLING (For Features & Pricing)
*/
.card {
    background: linear-gradient(160deg, rgba(20, 20, 22, 0.95) 0%, rgba(8, 8, 10, 0.85) 100%);
    border: 1px solid rgba(255, 69, 0, 0.25);
    border-radius: 14px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.45);
    transition: transform 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 69, 0, 0.3);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.45);
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.card:hover {
    transform: translateY(-6px);
    border-color: var(--color-accent);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.55);
}
.card-header h3 {
    font-size: 2rem;
    color: var(--color-accent);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--color-border);
}
.card-body {
    color: var(--color-text-secondary);
    flex-grow: 1;
}
.card-price {
    font-family: var(--font-family-heading);
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin: 1.5rem 0;
    color: var(--color-text-primary);
}
/*
 * FULL FEATURE LIST SECTION
*/
.feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    align-items: start;
}
.feature-category-card {
    background: linear-gradient(160deg, rgba(20, 20, 22, 0.9) 0%, rgba(8, 8, 10, 0.8) 100%);
    border: 1px solid rgba(255, 69, 0, 0.2);
    border-radius: 14px;
    padding: 2rem;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
}
.feature-category-card h3 {
    font-size: 2rem;
    color: var(--color-accent);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.feature-category-card h3 .material-icons {
    font-size: 2.2rem;
}
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.feature-list .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    cursor: help;
    padding: 0.35rem 0.5rem;
    border-radius: 6px;
    position: relative;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}
.feature-list .feature-item .material-icons {
    color: var(--color-accent);
    font-size: 1.25rem;
}
.feature-item .feature-label {
    flex: 1;
}
.feature-item:hover,
.feature-item:focus-visible {
    color: var(--color-text-primary);
    background: rgba(255, 69, 0, 0.12);
    transform: translateX(4px);
}
.feature-item:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}
.feature-subtext {
    font-size: 0.85rem;
    color: #888;
    margin-left: 0.5rem;
    font-style: italic;
}
.feature-tooltip {
    position: fixed;
    max-width: 260px;
    padding: 0.75rem 1rem;
    background: rgba(20, 20, 22, 0.95);
    border: 1px solid rgba(255, 69, 0, 0.35);
    border-radius: 10px;
    color: var(--color-text-primary);
    font-size: 0.9rem;
    line-height: 1.4;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
    z-index: 9999;
    pointer-events: none;
    transform-origin: top left;
    animation: tooltip-fade 0.15s ease-out;
}
.feature-tooltip::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: inherit;
    border-left: 1px solid rgba(255, 69, 0, 0.35);
    border-top: 1px solid rgba(255, 69, 0, 0.35);
    transform: rotate(45deg);
    left: 18px;
    top: -5px;
}
@keyframes tooltip-fade {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
/*
 * BUTTON
*/
.btn {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-text-primary);
    font-family: var(--font-family-heading);
    font-weight: 500;
    font-size: 1.25rem;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    padding: 0.75rem 2rem;
    text-align: center;
    border: 2px solid transparent;
    transition: background-color 0.2s ease, color 0.2s ease;
    margin-top: 1rem;
    cursor: pointer;
}
.btn:hover {
    background-color: transparent;
    border-color: var(--color-accent);
    color: var(--color-accent);
}
.btn-discord, .btn-telegram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0.5rem;
}
.btn-discord {
    background-color: #5865F2;
}
.btn-telegram {
    background-color: #0088cc;
}
.btn-discord:hover, .btn-telegram:hover {
    background-color: transparent;
    color: var(--color-text-primary);
}
/*
 * DISCLAIMER / ALERT
*/
.alert {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: rgba(255, 69, 0, 0.05);
    border-left: 4px solid var(--color-accent);
}
.alert-icon {
    flex-shrink: 0;
    color: var(--color-accent);
}
.alert-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-accent);
}
.alert-content p {
    color: var(--color-text-secondary);
}
.alert-content p strong {
     color: var(--color-text-primary);
     font-weight: 400;
}
/*
 * FOOTER
*/
.footer {
    text-align: center;
    padding: 3rem 1.5rem;
    background-color: var(--color-surface);
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    border-top: 1px solid var(--color-border);
}
.footer p {
    margin-bottom: 0.5rem;
}
.social-buttons {
    margin-top: 1rem;
}

/* 
 * SPOTLIGHT SECTION
 */
.spotlight-section {
    background: radial-gradient(circle at center, rgba(255,69,0,0.2) 0%, transparent 70%);
    border: 2px solid rgba(255, 69, 0, 0.45);
    border-radius: 18px;
    padding: 2.5rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.55);
}
.spotlight-section::before {
    content: "WARNING";
    position: absolute;
    top: -10px;
    left: -30px;
    font-family: var(--font-family-heading);
    font-size: 6.5rem;
    color: rgba(255,69,0,0.06);
    transform: rotate(-28deg);
    z-index: 0;
    pointer-events: none;
}
.spotlight-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.spotlight-header .material-icons {
    font-size: 3rem;
    color: var(--color-warning);
}
.spotlight-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .spotlight-content {
        grid-template-columns: 1fr;
    }
}
.spotlight-card {
    background: linear-gradient(150deg, rgba(20, 20, 22, 0.92) 0%, rgba(8, 8, 10, 0.8) 100%);
    border: 1px solid rgba(255, 69, 0, 0.25);
    border-radius: 14px;
    padding: 1.75rem;
    box-shadow: inset 0 0 0 1px rgba(255, 69, 0, 0.05), 0 18px 32px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
}
.spotlight-card h3 {
    color: var(--color-warning);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.spotlight-card p {
    color: var(--color-text-secondary);
}
.spotlight-card ul {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.35rem;
}
.spotlight-card li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
}
.spotlight-card li .material-icons {
    font-size: 1.1rem;
    color: var(--color-accent);
}
.spotlight-card .material-icons {
    font-size: 1.8rem;
}

/* 
 * ICON ENHANCEMENTS
 */
.feature-icon {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
    display: block;
}
.card-header .material-icons {
    vertical-align: middle;
    margin-right: 0.5rem;
}
		.feature-icon {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
    display: block;
}
.card-header .material-icons {
    vertical-align: middle;
    margin-right: 0.5rem;
}

/*
 * PAYMENT INFO STYLING
*/
.payment-info {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}
.payment-title {
    font-family: var(--font-family-heading);
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}
.crypto-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}
.crypto-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-secondary);
    transition: color 0.2s ease;
}
.crypto-option:hover {
    color: var(--color-text-primary);
}
.crypto-option .material-icons {
    font-size: 2.5rem;
}
.crypto-option span:last-child {
    font-size: 0.8rem;
    text-transform: uppercase;
}
.manual-payments {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--color-text-secondary);
    background-color: rgba(20, 20, 22, 0.5);
    padding: 1rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
}
.manual-payments strong {
    color: var(--color-text-primary);
}
.manual-payments a {
    color: var(--color-accent);
    text-decoration: underline;
    font-weight: 700;
}
.manual-payments a:hover {
    text-decoration: none;
}
.crypto-option {
    display: flex;
    align-items: center; /* Vertically aligns the icon and text */
    gap: 8px; /* Adds space between the icon and text */
}

.crypto-option svg,
.crypto-option .payment-icon {
    width: 40px;
    height: 40px;
}
/* Container for a row of payment icons */
.crypto-options {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 15px; /* Space between icons */
margin: 20px 0;
}

/* Styles for each individual payment option (works for both <div> and <a>) */
.crypto-option {
display: flex;
flex-direction: column;
align-items: center;
gap: 8px; /* Space between icon and text */
width: 90px; /* Ensures all options have the same width */
padding: 10px;
border-radius: 8px;
transition: background-color 0.2s ease-in-out;
text-decoration: none; /* Removes underline from links */
color: inherit; /* Makes link text use the parent's color */
text-align: center;
}

/* Add a hover effect for clickable options */
a.crypto-option:hover {
background-color: #f0f0f0; /* Or your theme's hover color */
cursor: pointer;
}

/* --- THIS IS THE KEY FIX --- */
/* Set a fixed size for all SVG icons within a payment option */
.crypto-option svg,
.crypto-option .payment-icon {
width: 40px;
height: 40px;
}

.payment-icon {
display: block;
}

.crypto-option span {
font-size: 14px;
}

/* Optional: Styles for the payment section titles */
.payment-info {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.payment-title {
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.manual-payments p:last-of-type {
    text-align: center;
    font-size: 0.9em;
    padding: 0 15px;
    line-height: 1.5;
}
