/* ===== CSS Variables ===== */
:root {
    --fbr-purple-deep: #2d0a3e;
    --fbr-purple-mid: #4a1259;
    --fbr-black: #0a0a0f;
    --fbr-dark-bg: #120a1a;
    --fbr-blue-electric: #0066ff;
    --fbr-cyan-neon: #00d4ff;
    --fbr-cyan-glow: #00ffff;
    --fbr-text-primary: #ffffff;
    --fbr-text-secondary: #b8b8d4;
    --fbr-gradient-main: linear-gradient(135deg, var(--fbr-purple-deep) 0%, var(--fbr-black) 50%, var(--fbr-purple-mid) 100%);
    --fbr-gradient-glow: linear-gradient(135deg, var(--fbr-cyan-neon), var(--fbr-blue-electric));
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Arsenal', sans-serif;
    background: var(--fbr-gradient-main);
    color: var(--fbr-text-primary);
    min-height: 100vh;
    line-height: 1.6;
}
/* Headings Font */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Andika', sans-serif;
}


body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(77, 18, 89, 0.3) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.fbr-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Header ===== */
.fbr-header {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 212, 255, 0.1);
}

.fbr-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.fbr-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.fbr-logo-wrapper:hover {
    transform: scale(1.05);
}

.fbr-logo-icon {
    width: 32px;
    height: 32px;
    background-image: url('images/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 0 10px var(--fbr-cyan-neon));
}

.fbr-logo-text {
    font-size: 24px;
    font-weight: 700;
    background: var(--fbr-gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fbr-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.fbr-nav-link {
    color: var(--fbr-text-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.fbr-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--fbr-gradient-glow);
    transition: width 0.3s ease;
}

.fbr-nav-link:hover::after {
    width: 100%;
}

.fbr-nav-link:hover {
    color: var(--fbr-cyan-neon);
    text-shadow: 0 0 10px var(--fbr-cyan-neon);
}

.fbr-nav-btn-game {
    background: var(--fbr-gradient-glow);
    color: var(--fbr-black);
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.fbr-nav-btn-game:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
}

/* ===== Burger Menu ===== */
.fbr-burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.fbr-burger-line {
    width: 100%;
    height: 3px;
    background: var(--fbr-cyan-neon);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.fbr-burger.active .fbr-burger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.fbr-burger.active .fbr-burger-line:nth-child(2) {
    opacity: 0;
}

.fbr-burger.active .fbr-burger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* ===== Hero Section ===== */
.fbr-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.fbr-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(45, 10, 62, 0.7) 0%, rgba(10, 10, 15, 0.8) 50%, rgba(74, 18, 89, 0.7) 100%),
        url('images/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.fbr-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
}

.fbr-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.fbr-hero-title {
    font-size: 64px;
    font-weight: 800;
    background: var(--fbr-gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.3);
}

.fbr-hero-subtitle {
    font-size: 22px;
    color: var(--fbr-text-secondary);
    margin-bottom: 40px;
}

.fbr-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.fbr-btn-primary {
    background: var(--fbr-gradient-glow);
    color: var(--fbr-black);
    padding: 16px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.4);
}

.fbr-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
}

.fbr-btn-secondary {
    background: transparent;
    color: var(--fbr-cyan-neon);
    padding: 16px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border: 2px solid var(--fbr-cyan-neon);
    transition: all 0.3s ease;
    display: inline-block;
}

.fbr-btn-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.3);
}

/* ===== Unified Showcase Section ===== */
.fbr-showcase {
    padding: 100px 0;
    background: rgba(18, 10, 26, 0.6);
    position: relative;
}

.fbr-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(0, 102, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(0, 212, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

/* Showcase Grid */
.fbr-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
    align-items: start;
}

/* Left Column */
.fbr-showcase-left {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.fbr-showcase-title {
    font-size: 52px;
    font-weight: 700;
    margin: 0;
    background: var(--fbr-gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

/* Stats in Showcase - Vertical Stack */
.fbr-showcase-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fbr-showcase-stat {
    text-align: center;
    padding: 0px 30px;
    background: rgba(74, 18, 89, 0.25);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 16px;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.fbr-showcase-stat:hover {
    transform: translateX(8px);
    border-color: var(--fbr-cyan-neon);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.25);
    background: rgba(74, 18, 89, 0.4);
}

.fbr-showcase-stat-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--fbr-gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.5));
    min-width: 100px;
}

.fbr-showcase-stat-label {
    font-size: 15px;
    color: var(--fbr-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Right Column */
.fbr-showcase-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.fbr-showcase-text {
    font-size: 18px;
    color: var(--fbr-text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* Features in Showcase - 2x2 Grid */
.fbr-showcase-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.fbr-showcase-feature {
    display: flex;
    align-items: center;
    text-align: center;
    gap: 15px;
    padding: 20px 15px;
    background: rgba(74, 18, 89, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.fbr-showcase-feature:hover {
    transform: translateY(-5px);
    border-color: var(--fbr-cyan-neon);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
    background: rgba(74, 18, 89, 0.35);
}

.fbr-showcase-feature-content {
    flex: 1;
}

.fbr-showcase-feature-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: var(--fbr-cyan-neon);
}

.fbr-showcase-feature-text {
    display: none;
}

/* ===== Section Titles ===== */
.fbr-section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    background: var(--fbr-gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Games Section ===== */
.fbr-games {
    padding: 80px 0;
    background: rgba(18, 10, 26, 0.5);
}

.fbr-game-card {
    display: flex;
    gap: 40px;
    align-items: center;
    background: rgba(74, 18, 89, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
}

.fbr-game-card:hover {
    border-color: var(--fbr-cyan-neon);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.2);
}

.fbr-game-image {
    flex-shrink: 0;
    width: 300px;
    height: 300px;
}

.fbr-game-placeholder {
    width: 100%;
    height: 100%;
    background-image: url('images/game-image.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
}

.fbr-game-info {
    flex: 1;
}

.fbr-game-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--fbr-cyan-neon);
}

.fbr-game-description {
    color: var(--fbr-text-secondary);
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.fbr-btn-game {
    background: var(--fbr-gradient-glow);
    color: var(--fbr-black);
    padding: 14px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.fbr-btn-game:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

/* ===== CTA Section ===== */
.fbr-cta {
    padding: 100px 0;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(45, 10, 62, 0.8) 0%, rgba(10, 10, 15, 0.9) 100%);
}

.fbr-cta-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--fbr-gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fbr-cta-text {
    font-size: 20px;
    color: var(--fbr-text-secondary);
    margin-bottom: 40px;
}

.fbr-btn-cta {
    background: var(--fbr-gradient-glow);
    color: var(--fbr-black);
    padding: 18px 50px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}

.fbr-btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.6);
}

/* ===== Footer ===== */
.fbr-footer {
    background: rgba(10, 10, 15, 0.98);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding: 40px 0 20px;
}

.fbr-disclaimer-banner {
    background: rgba(255, 0, 0, 0.2);
    border: 2px solid rgba(255, 0, 0, 0.5);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
    font-size: 16px;
    color: #ff6b6b;
}

.fbr-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.fbr-footer-links a {
    color: var(--fbr-text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.fbr-footer-links a:hover {
    color: var(--fbr-cyan-neon);
}

.fbr-footer-bottom {
    text-align: center;
    color: var(--fbr-text-secondary);
    font-size: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

/* ===== Cookie Popup ===== */
.fbr-cookie-hidden {
    display: none !important;
}

#fbrCookiePopup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.98);
    border-top: 2px solid var(--fbr-cyan-neon);
    z-index: 9999;
    padding: 20px;
    box-shadow: 0 -10px 40px rgba(0, 212, 255, 0.3);
}

.fbr-cookie-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.fbr-cookie-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--fbr-cyan-neon);
    margin-bottom: 15px;
}

.fbr-cookie-text {
    color: var(--fbr-text-secondary);
    margin-bottom: 20px;
    font-size: 16px;
}

.fbr-cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.fbr-cookie-btn-accept {
    background: var(--fbr-gradient-glow);
    color: var(--fbr-black);
    padding: 12px 30px;
    border-radius: 8px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.fbr-cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.fbr-cookie-btn-learn {
    background: transparent;
    color: var(--fbr-cyan-neon);
    padding: 12px 30px;
    border-radius: 8px;
    border: 2px solid var(--fbr-cyan-neon);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.fbr-cookie-btn-learn:hover {
    background: rgba(0, 212, 255, 0.1);
}

/* ===== Game Page Styles ===== */
.fbr-game-page {
    min-height: 100vh;
    padding: 40px 0;
}

.fbr-iframe-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.2);
}

.fbr-iframe-container iframe {
    width: 100%;
    height: 700px;
    display: block;
}

/* ===== Contact Page Styles ===== */
.fbr-contact {
    padding: 60px 0;
}

.fbr-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.fbr-contact-info-card {
    background: rgba(74, 18, 89, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.fbr-contact-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--fbr-cyan-neon);
}

.fbr-contact-text {
    color: var(--fbr-text-secondary);
    font-size: 16px;
}

.fbr-contact-form-wrapper {
    background: rgba(74, 18, 89, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.fbr-form-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--fbr-cyan-neon);
}

.fbr-form-group {
    margin-bottom: 20px;
}

.fbr-form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--fbr-text-primary);
    font-weight: 500;
}

.fbr-form-input,
.fbr-form-textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    color: var(--fbr-text-primary);
    font-size: 16px;
    transition: all 0.3s ease;
}

.fbr-form-input:focus,
.fbr-form-textarea:focus {
    outline: none;
    border-color: var(--fbr-cyan-neon);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

.fbr-form-textarea {
    min-height: 150px;
    resize: vertical;
}

.fbr-form-btn {
    width: 100%;
    background: var(--fbr-gradient-glow);
    color: var(--fbr-black);
    padding: 16px;
    border-radius: 8px;
    border: none;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fbr-form-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.4);
}

/* ===== Legal Pages ===== */
.fbr-legal {
    padding: 60px 0;
    max-width: 900px;
    margin: 0 auto;
}

.fbr-legal-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    background: var(--fbr-gradient-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fbr-legal-content {
    background: rgba(74, 18, 89, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    padding: 40px;
}

.fbr-legal-content h2 {
    font-size: 26px;
    color: var(--fbr-cyan-neon);
    margin-top: 30px;
    margin-bottom: 15px;
}

.fbr-legal-content h2:first-child {
    margin-top: 0;
}

.fbr-legal-content h3 {
    font-size: 20px;
    color: var(--fbr-blue-electric);
    margin-top: 20px;
    margin-bottom: 10px;
}

.fbr-legal-content p,
.fbr-legal-content ul {
    color: var(--fbr-text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.fbr-legal-content ul {
    padding-left: 25px;
}

.fbr-legal-content li {
    margin-bottom: 10px;
}

.fbr-legal-content a {
    color: var(--fbr-cyan-neon);
    text-decoration: none;
    transition: color 0.3s ease;
}

.fbr-legal-content a:hover {
    text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    /* Burger Menu Styles */
    .fbr-burger {
        display: flex;
    }

    .fbr-header-inner {
        flex-wrap: wrap;
    }

    .fbr-logo-wrapper {
        order: 1;
    }

    .fbr-burger {
        order: 2;
    }

    .fbr-nav {
        order: 3;
        width: 100%;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: rgba(10, 10, 15, 0.98);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        border-top: 1px solid rgba(0, 212, 255, 0.2);
    }

    .fbr-nav.active {
        max-height: 400px;
        padding: 20px 0;
    }

    .fbr-nav-link,
    .fbr-nav-btn-game {
        width: 100%;
        text-align: center;
        padding: 15px;
        border-radius: 0;
    }

    .fbr-nav-btn-game {
        margin-top: 10px;
    }

    .fbr-nav-link::after {
        display: none;
    }

    /* Other responsive styles */
    .fbr-hero-title {
        font-size: 42px;
    }

    .fbr-hero-subtitle {
        font-size: 18px;
    }

    /* Showcase responsive styles */
    .fbr-showcase-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .fbr-showcase-title {
        font-size: 42px;
    }

    .fbr-showcase-stats {
        gap: 15px;
    }

    .fbr-showcase-stat {
        padding: 20px 25px;
    }

    .fbr-showcase-stat-number {
        font-size: 40px;
        min-width: 80px;
    }

    .fbr-showcase-text {
        font-size: 16px;
    }

    .fbr-showcase-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .fbr-showcase-feature {
        padding: 18px 20px;
    }

    .fbr-showcase-feature-title {
        font-size: 15px;
    }

    .fbr-section-title {
        font-size: 32px;
    }

    .fbr-game-card {
        flex-direction: column;
        text-align: center;
    }

    .fbr-game-image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .fbr-cta-title {
        font-size: 32px;
    }

    .fbr-iframe-container iframe {
        height: 500px;
    }

    .fbr-header {
        position: relative;
    }
}

/* Form Success Message */
.fbr-form-success {
    display: none;
    background: rgba(45, 10, 62, 0.95);
    border: 2px solid var(--fbr-cyan-neon);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.3);
    animation: fbrSuccessFadeIn 0.5s ease;
}

@keyframes fbrSuccessFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fbr-form-success.show {
    display: block;
}

.fbr-form-success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--fbr-cyan-neon), var(--fbr-electric-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--fbr-bg-dark);
    font-weight: bold;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.fbr-form-success-title {
    font-size: 28px;
    color: var(--fbr-cyan-neon);
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.fbr-form-success-text {
    font-size: 16px;
    color: var(--fbr-text-light);
}

.fbr-legal-effective {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--fbr-cyan-neon);
}
