:root {
    --mfstk-primary: #D4AF37; /* Champagne Gold */
    --mfstk-primary-hover: #F3E5AB;
    --mfstk-bg-dark: #0B132B; /* Midnight Blue */
    --mfstk-bg-darker: #050A17;
    --mfstk-bg-card: #152243;
    --mfstk-text-light: #FFFFF0; /* Ivory */
    --mfstk-text-muted: #A8B2C1;
    --mfstk-border: rgba(212, 175, 55, 0.2);
    
    --mfstk-font-heading: 'Playfair Display', serif;
    --mfstk-font-body: 'Lato', sans-serif;
}

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

body {
    background-color: var(--mfstk-bg-dark);
    color: var(--mfstk-text-light);
    font-family: var(--mfstk-font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
.mfstk-top-nav {
    background-color: rgba(5, 10, 23, 0.95);
    border-bottom: 1px solid var(--mfstk-border);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
    backdrop-filter: blur(10px);
}

.mfstk-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mfstk-logo-area {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mfstk-abbr {
    font-family: var(--mfstk-font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--mfstk-primary);
    border: 2px solid var(--mfstk-primary);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    line-height: 1;
}

.mfstk-brand-text {
    display: flex;
    flex-direction: column;
}

.mfstk-brand-name {
    font-family: var(--mfstk-font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.mfstk-brand-sub {
    font-size: 0.8rem;
    color: var(--mfstk-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mfstk-nav-badge {
    background-color: var(--mfstk-primary);
    color: var(--mfstk-bg-darker);
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Section */
.mfstk-hero-sec {
    padding: 6rem 2rem;
    text-align: center;
    background: radial-gradient(circle at center, var(--mfstk-bg-card) 0%, var(--mfstk-bg-dark) 100%);
    border-bottom: 1px solid var(--mfstk-border);
    position: relative;
    overflow: hidden;
}

.mfstk-hero-sec::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(212, 175, 55, 0.02) 10px,
        rgba(212, 175, 55, 0.02) 20px
    );
    pointer-events: none;
}

.mfstk-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.mfstk-hero-kicker {
    display: inline-block;
    color: var(--mfstk-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--mfstk-primary);
    padding-bottom: 0.25rem;
}

.mfstk-hero-title {
    font-family: var(--mfstk-font-heading);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.mfstk-hero-desc {
    font-size: 1.1rem;
    color: var(--mfstk-text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.mfstk-hero-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.mfstk-hero-card {
    background: rgba(21, 34, 67, 0.6);
    border: 1px solid var(--mfstk-border);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    min-width: 180px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.mfstk-hero-card:hover {
    transform: translateY(-5px);
    border-color: var(--mfstk-primary);
}

.mfstk-hc-title {
    font-family: var(--mfstk-font-heading);
    color: var(--mfstk-primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.mfstk-hc-desc {
    font-size: 0.9rem;
    color: var(--mfstk-text-light);
}

/* Sections General */
.mfstk-resp-sec, .mfstk-game-sec {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mfstk-game-sec {
    background-color: var(--mfstk-bg-darker);
    border-radius: 20px;
    padding: 6rem 4rem;
    margin-bottom: 4rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.mfstk-sec-head {
    text-align: center;
    margin-bottom: 4rem;
}

.mfstk-sec-title {
    font-family: var(--mfstk-font-heading);
    font-size: 2.5rem;
    color: var(--mfstk-primary);
    margin-bottom: 1rem;
}

.mfstk-sec-intro {
    color: var(--mfstk-text-muted);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.mfstk-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mfstk-feature-card {
    background-color: var(--mfstk-bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 2.5rem;
    border-radius: 12px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mfstk-feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background-color: var(--mfstk-primary);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.mfstk-feature-card:hover {
    background-color: #1a2a52;
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.mfstk-feature-card:hover::before {
    transform: scaleY(1);
}

.mfstk-fc-kicker {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--mfstk-text-muted);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.5rem;
}

.mfstk-fc-title {
    font-family: var(--mfstk-font-heading);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #fff;
}

.mfstk-fc-text {
    color: var(--mfstk-text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.mfstk-fc-list {
    list-style: none;
}

.mfstk-fc-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--mfstk-text-light);
}

.mfstk-fc-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--mfstk-primary);
    font-size: 0.8rem;
    top: 2px;
}

/* Compliance Block */
.mfstk-compliance-zone {
    max-width: 1000px;
    margin: 0 auto 4rem;
    padding: 3rem 2rem;
    background-color: var(--mfstk-bg-card);
    border: 1px solid var(--mfstk-primary);
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.mfstk-cz-badge {
    width: 44px;
    height: 44px;
    border: 2px solid var(--mfstk-primary);
    color: var(--mfstk-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.mfstk-cz-text {
    color: var(--mfstk-text-light);
    font-size: 1rem;
    max-width: 800px;
    line-height: 1.5;
}

.mfstk-cz-strong {
    color: var(--mfstk-primary);
}

.mfstk-cz-logos {
    display: flex;
    gap: 56px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.mfstk-cz-logos img {
    height: 36px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.mfstk-cz-logos a:hover img {
    opacity: 1;
}

/* Footer */
.mfstk-site-foot {
    background-color: var(--mfstk-bg-darker);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 4rem 2rem 2rem;
}

.mfstk-foot-top {
    text-align: center;
    margin-bottom: 4rem;
}

.mfstk-foot-slogan {
    font-family: var(--mfstk-font-heading);
    color: var(--mfstk-primary);
    font-size: 2rem;
    font-style: italic;
}

.mfstk-foot-mid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.mfstk-foot-title {
    font-family: var(--mfstk-font-heading);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
    border-bottom: 1px solid var(--mfstk-border);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.mfstk-foot-text {
    color: var(--mfstk-text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.mfstk-foot-contact .mfstk-foot-text {
    color: var(--mfstk-text-light);
}

.mfstk-foot-nav {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.mfstk-fn-link {
    color: var(--mfstk-primary);
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.mfstk-fn-link:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .mfstk-hero-title {
        font-size: 3rem;
    }
    .mfstk-foot-mid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .mfstk-nav-inner {
        flex-direction: column;
        gap: 1rem;
    }
    .mfstk-game-sec {
        padding: 4rem 2rem;
    }
    .mfstk-cz-logos {
        gap: 2rem;
    }
    .mfstk-foot-mid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.mfstk-foot-disclosure {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.mfstk-foot-disclosure strong {
    color: var(--mfstk-text-light);
}

/* Cookie Banner */
.mfstk-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(11, 19, 43, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--mfstk-primary);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
    gap: 2rem;
}

.mfstk-cb-text {
    font-size: 0.9rem;
    color: var(--mfstk-text-light);
    max-width: 800px;
}

.mfstk-cb-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.mfstk-cb-btn {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--mfstk-font-body);
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.mfstk-cb-accept {
    background-color: var(--mfstk-primary);
    color: var(--mfstk-bg-darker);
}

.mfstk-cb-accept:hover {
    background-color: var(--mfstk-primary-hover);
}

.mfstk-cb-decline {
    background-color: transparent;
    color: var(--mfstk-text-light);
    border: 1px solid var(--mfstk-text-muted);
}

.mfstk-cb-decline:hover {
    background-color: rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .mfstk-cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
}
