/* 
  FootballClubCoins - Premium Gaming Currency Store
  Archetype: High-Tech Gamer / Fluid Noir
*/

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700;900&family=Exo+2:wght@400;600;800&display=swap');

:root {
    --primary: #10B981;
    /* Emerald Green */
    --primary-glow: rgba(16, 185, 129, 0.6);
    --accent: #F59E0B;
    /* Gold */
    --accent-glow: rgba(245, 158, 11, 0.6);
    --bg-dark: #020617;
    /* Slate 950 */
    --surface: rgba(15, 23, 42, 0.6);
    /* Glass Slate 900 */
    --surface-light: rgba(30, 41, 59, 0.8);
    /* Glass Slate 800 */
    --text-main: #F8FAFC;
    --text-muted: #ffffff;

    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Exo 2', sans-serif;

    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

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

body {
    background-color: var(--bg-dark);
    background-image:
        radial-gradient(circle at 15% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(245, 158, 11, 0.05) 0%, transparent 25%);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.btn {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
}

/* HUD Header */
.site-header {
    height: 80px;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-shadow: 0 0 20px var(--primary-glow);
}

.nav-menu ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-menu a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--primary);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: white;
}

.nav-menu a:hover::after {
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, #059669 100%);
    color: #fff;
    font-weight: 800;
    border: none;
    cursor: pointer;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px var(--primary-glow);
}

.btn:hover::before {
    left: 100%;
}

.btn-gold {
    background: linear-gradient(135deg, var(--accent) 0%, #D97706 100%);
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-gold:hover {
    box-shadow: 0 0 30px var(--accent-glow);
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(to right, #fff 0%, var(--primary) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.3));
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 600px;
    border-left: 3px solid var(--accent);
    padding-left: 1.5rem;
}

/* Blog Cards */
.blog-card {
    background: var(--surface);
    padding: 2rem;
    border: var(--glass-border);
    border-radius: 16px;
    border-bottom: 2px solid var(--primary);
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--accent);
}

.blog-card h3 {
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.blog-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Feature Box (Calculator) */
.feature-box {
    background: rgba(30, 41, 59, 0.5);
    padding: 2.5rem;
    border: var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: var(--glass-shadow);
    transition: 0.3s;
}

.feature-box:hover {
    border-color: var(--primary);
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.15);
}

/* Product Cards */
.coin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.coin-card {
    background: var(--surface);
    border: var(--glass-border);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 20px;
    overflow: hidden;
}

.coin-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.coin-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: 0.3s;
}

.coin-card:hover::after {
    opacity: 1;
}

.price-tag {
    font-size: 3rem;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    margin: 1.5rem 0;
    text-shadow: 0 0 20px var(--primary-glow);
}

/* Footer */
.footer {
    border-top: var(--glass-border);
    padding: 6rem 0;
    background: linear-gradient(to top, #000 0%, var(--bg-dark) 100%);
    color: var(--text-muted);
}

/* Mobile */
@media(max-width: 1024px) {
    #mobile-toggle {
        display: block !important;
    }

    /* Force show hamburger */

    .site-header .container {
        justify-content: space-between;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(2, 6, 23, 0.95);
        padding: 2rem;
        border-bottom: 1px solid var(--primary);
        backdrop-filter: blur(20px);
    }

    .nav-menu.active {
        display: block;
        animation: slideDown 0.3s ease;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .hero {
        text-align: center;
        flex-direction: column-reverse;
        padding-top: 4rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero p {
        margin: 0 auto 2rem;
        border-left: none;
        border-bottom: 3px solid var(--accent);
        padding-bottom: 1rem;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Status Dot Pulse */
.status-dot {
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    border-radius: 50%;
    display: inline-block;
}

.status-dot.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Process Steps */
.step-icon {
    width: 60px;
    height: 60px;
    background: var(--surface);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.process-step h3 {
    margin-bottom: 0.5rem;
    color: white;
}

.process-step p {
    color: var(--text-muted);
}

/* Purchase Toast */
.purchase-toast {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(15, 23, 42, 0.95);
    border-left: 4px solid var(--accent);
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 999;
    animation: slideInLeft 0.5s ease;
    backdrop-filter: blur(10px);
}

.purchase-toast img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* --- Article System (Added for Blog Quality) --- */
.article-content {
    background: transparent;
    max-width: 800px;
    margin: 0 auto;
}

.article-content h2 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary);
    padding-left: 1rem;
}

.article-content h3 {
    color: white;
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-content p {
    color: #CBD5E1;
    /* Slate 300 */
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    color: #CBD5E1;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content strong {
    color: var(--accent);
}

/* Data Tables */
.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: rgba(30, 41, 59, 0.5);
    /* Surface Light */
    border-radius: 8px;
    overflow: hidden;
}

.article-content th {
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
    padding: 1rem;
    text-align: left;
    font-weight: 700;
}

.article-content td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #E2E8F0;
}

/* Info Box / Callout */
.info-box {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid var(--primary);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.info-box h3 {
    margin-top: 0;
    color: var(--primary);
}

/* Breadcrumbs */
.breadcrumbs {
    color: #64748B;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.breadcrumbs a {
    color: #94A3B8;
}

.breadcrumbs a:hover {
    color: var(--primary);
}

/* Hero Visualization Container */
.hero-viz {
    width: 100%;
    margin: 2rem 0 3rem;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(2, 6, 23, 0.5);
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.5);
}

/* Search Bar */
.search-wrapper {
    margin: 0 auto;
    max-width: 500px;
    position: relative;
    z-index: 10;
}

.search-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(30, 41, 59, 0.5);
    border-radius: 8px;
    font-size: 1rem;
    color: white;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(30, 41, 59, 0.8);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}