:root {
    --gfc-primary: #6C5CE7;
    --gfc-primary-dark: #5541D9;
    --gfc-primary-light: #A29BFE;
    --gfc-secondary: #00CEC9;
    --gfc-secondary-dark: #00B5B1;
    --gfc-secondary-light: #55EFC4;
    --gfc-accent: #FD79A8;
    --gfc-accent-dark: #E84393;
    --gfc-dark: #2D3436;
    --gfc-darker: #1E272E;
    --gfc-darkest: #0F1419;
    --gfc-light: #F8F9FA;
    --gfc-lighter: #FFFFFF;
    --gfc-gray-100: #F1F3F5;
    --gfc-gray-200: #E9ECEF;
    --gfc-gray-300: #DEE2E6;
    --gfc-gray-400: #CED4DA;
    --gfc-gray-500: #ADB5BD;
    --gfc-gray-600: #6C757D;
    --gfc-gray-700: #495057;
    --gfc-gray-800: #343A40;
    --gfc-success: #00B894;
    --gfc-warning: #FDCB6E;
    --gfc-error: #D63031;
    --gfc-gradient-primary: linear-gradient(135deg, #6C5CE7 0%, #A29BFE 100%);
    --gfc-gradient-secondary: linear-gradient(135deg, #00CEC9 0%, #55EFC4 100%);
    --gfc-gradient-hero: linear-gradient(135deg, #1E272E 0%, #2D3436 50%, #6C5CE7 100%);
    --gfc-gradient-dark: linear-gradient(180deg, #1E272E 0%, #0F1419 100%);
    --gfc-gradient-accent: linear-gradient(135deg, #FD79A8 0%, #E84393 100%);
    --gfc-gradient-glow: linear-gradient(135deg, rgba(108, 92, 231, 0.2) 0%, rgba(0, 206, 201, 0.2) 100%);
    --gfc-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --gfc-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    --gfc-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
    --gfc-shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.24);
    --gfc-shadow-glow: 0 0 40px rgba(108, 92, 231, 0.3);
    --gfc-shadow-glow-secondary: 0 0 40px rgba(0, 206, 201, 0.3);
    --gfc-radius-sm: 8px;
    --gfc-radius: 12px;
    --gfc-radius-lg: 16px;
    --gfc-radius-xl: 24px;
    --gfc-radius-full: 9999px;
    --gfc-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --gfc-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gfc-transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    font-size: 16px;
    scroll-behavior: smooth;
}
body {
    font-family: var(--gfc-font);
    line-height: 1.7;
    color: var(--gfc-gray-700);
    background: var(--gfc-light);
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--gfc-dark);
    letter-spacing: -0.02em;
}
h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
p {
    margin-bottom: 1rem;
    color: var(--gfc-gray-600);
}
a {
    color: var(--gfc-primary);
    text-decoration: none;
    transition: var(--gfc-transition-fast);
}
a:hover {
    color: var(--gfc-primary-dark);
}
ul {
    list-style: none;
}
.gfc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.gfc-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--gfc-transition);
    border-bottom: 1px solid var(--gfc-gray-200);
}
.gfc-navbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}
.gfc-navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gfc-dark);
    letter-spacing: -0.02em;
}
.gfc-navbar-brand:hover {
    color: var(--gfc-primary);
}
.gfc-navbar-logo {
    height: 42px;
    width: auto;
}
.gfc-navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: var(--gfc-gradient-primary);
    border: none;
    border-radius: var(--gfc-radius-sm);
    cursor: pointer;
    padding: 12px 14px;
    transition: var(--gfc-transition-fast);
}
.gfc-navbar-toggle:hover {
    transform: scale(1.05);
    box-shadow: var(--gfc-shadow-glow);
}
.gfc-toggle-line {
    width: 24px;
    height: 2px;
    background: var(--gfc-lighter);
    border-radius: 2px;
    transition: var(--gfc-transition);
}
.gfc-navbar-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.gfc-navbar-link {
    color: var(--gfc-gray-700);
    font-weight: 600;
    padding: 0.6rem 1.1rem;
    border-radius: var(--gfc-radius-full);
    transition: var(--gfc-transition);
    font-size: 0.95rem;
}
.gfc-navbar-link:hover {
    background: var(--gfc-gray-100);
    color: var(--gfc-primary);
}
.gfc-navbar-link.active {
    background: var(--gfc-gradient-primary);
    color: var(--gfc-lighter);
}
.gfc-navbar-cta {
    background: var(--gfc-gradient-secondary);
    color: var(--gfc-darker);
    padding: 0.6rem 1.4rem;
    border-radius: var(--gfc-radius-full);
    font-weight: 700;
    transition: var(--gfc-transition);
    font-size: 0.95rem;
}
.gfc-navbar-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--gfc-shadow-glow-secondary);
    color: var(--gfc-darker);
}
@media (max-width: 768px) {
    .gfc-navbar-toggle {
        display: flex;
    }
    .gfc-navbar-menu {
        position: fixed;
        top: 74px;
        left: 0;
        right: 0;
        background: var(--gfc-lighter);
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: var(--gfc-shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: var(--gfc-transition);
        gap: 0.75rem;
        border-radius: 0 0 var(--gfc-radius-lg) var(--gfc-radius-lg);
    }
    .gfc-navbar-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .gfc-navbar-menu li {
        width: 100%;
    }
    .gfc-navbar-link {
        display: block;
        width: 100%;
        padding: 1rem;
        text-align: center;
        font-size: 1rem;
        border-radius: var(--gfc-radius);
    }
    .gfc-navbar-cta {
        display: block;
        text-align: center;
        padding: 1rem;
        margin-top: 0.5rem;
    }
    .gfc-navbar-toggle.active .gfc-toggle-line:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .gfc-navbar-toggle.active .gfc-toggle-line:nth-child(2) {
        opacity: 0;
    }
    .gfc-navbar-toggle.active .gfc-toggle-line:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}
.gfc-main {
    margin-top: 74px;
}
.gfc-hero {
    background: var(--gfc-gradient-hero);
    color: var(--gfc-lighter);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}
.gfc-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(108, 92, 231, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 206, 201, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(253, 121, 168, 0.2) 0%, transparent 40%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}
.gfc-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.gfc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.25rem;
    border-radius: var(--gfc-radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.gfc-hero-badge .gfc-icon {
    width: 18px;
    height: 18px;
    fill: var(--gfc-warning);
}
.gfc-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--gfc-lighter);
    line-height: 1.1;
    letter-spacing: -0.03em;
}
.gfc-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.gfc-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gfc-gradient-secondary);
    color: var(--gfc-darker);
    padding: 1.1rem 2.5rem;
    border-radius: var(--gfc-radius-full);
    font-size: 1.1rem;
    font-weight: 700;
    transition: var(--gfc-transition);
    box-shadow: var(--gfc-shadow-lg);
}
.gfc-hero-cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--gfc-shadow-glow-secondary);
    color: var(--gfc-darker);
}
.gfc-hero-cta .gfc-icon {
    width: 22px;
    height: 22px;
}
.gfc-section {
    padding: 6rem 0;
}
.gfc-section-dark {
    background: var(--gfc-gradient-dark);
    color: var(--gfc-lighter);
}
.gfc-section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.gfc-section-header-light h2,
.gfc-section-header-light p {
    color: var(--gfc-lighter);
}
.gfc-section-header-light p {
    opacity: 0.8;
}
.gfc-section-tag {
    display: inline-block;
    background: var(--gfc-gradient-primary);
    color: var(--gfc-lighter);
    padding: 0.4rem 1rem;
    border-radius: var(--gfc-radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}
.gfc-section-header h2 {
    margin-bottom: 0.75rem;
}
.gfc-section-header p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}
.gfc-section-footer {
    text-align: center;
    margin-top: 3.5rem;
}
.gfc-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.gfc-feature-card {
    background: var(--gfc-lighter);
    padding: 2rem;
    border-radius: var(--gfc-radius-lg);
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    transition: var(--gfc-transition);
    border: 1px solid var(--gfc-gray-200);
    position: relative;
    overflow: hidden;
}
.gfc-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gfc-gradient-primary);
    transform: scaleX(0);
    transition: var(--gfc-transition);
}
.gfc-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--gfc-shadow-lg);
    border-color: transparent;
}
.gfc-feature-card:hover::before {
    transform: scaleX(1);
}
.gfc-feature-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: var(--gfc-gradient-glow);
    border-radius: var(--gfc-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--gfc-transition);
}
.gfc-feature-card:hover .gfc-feature-icon {
    background: var(--gfc-gradient-primary);
}
.gfc-feature-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--gfc-primary);
    transition: var(--gfc-transition);
}
.gfc-feature-card:hover .gfc-feature-icon svg {
    fill: var(--gfc-lighter);
}
.gfc-feature-content {
    flex: 1;
}
.gfc-feature-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.gfc-feature-desc {
    color: var(--gfc-gray-600);
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.6;
}
.gfc-games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.gfc-game-card {
    background: var(--gfc-darker);
    border-radius: var(--gfc-radius-lg);
    overflow: hidden;
    transition: var(--gfc-transition);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.gfc-game-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--gfc-shadow-glow);
    border-color: var(--gfc-primary);
}
.gfc-game-card.featured {
    border: 2px solid var(--gfc-secondary);
    box-shadow: var(--gfc-shadow-glow-secondary);
}
.gfc-game-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gfc-gradient-accent);
    color: var(--gfc-lighter);
    padding: 0.35rem 0.9rem;
    border-radius: var(--gfc-radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.gfc-game-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.gfc-game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--gfc-transition);
}
.gfc-game-card:hover .gfc-game-image img {
    transform: scale(1.1);
}
.gfc-game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 20, 25, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--gfc-transition);
}
.gfc-game-card:hover .gfc-game-overlay {
    opacity: 1;
}
.gfc-game-play-btn {
    width: 70px;
    height: 70px;
    background: var(--gfc-gradient-secondary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--gfc-transition);
    transform: scale(0.8);
}
.gfc-game-card:hover .gfc-game-play-btn {
    transform: scale(1);
}
.gfc-game-play-btn:hover {
    transform: scale(1.15);
    box-shadow: var(--gfc-shadow-glow-secondary);
}
.gfc-game-play-btn svg {
    width: 28px;
    height: 28px;
    fill: var(--gfc-darker);
    margin-left: 4px;
}
.gfc-game-content {
    padding: 1.5rem;
}
.gfc-game-title {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--gfc-lighter);
    font-weight: 700;
}
.gfc-game-desc {
    color: var(--gfc-gray-500);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.gfc-game-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.gfc-game-stat,
.gfc-game-rating {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--gfc-gray-500);
}
.gfc-game-stat svg,
.gfc-game-rating svg {
    width: 16px;
    height: 16px;
}
.gfc-game-stat svg {
    fill: var(--gfc-secondary);
}
.gfc-game-rating svg {
    fill: var(--gfc-warning);
}
.gfc-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.8rem;
    border-radius: var(--gfc-radius-full);
    font-weight: 700;
    transition: var(--gfc-transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
}
.gfc-btn svg {
    width: 20px;
    height: 20px;
}
.gfc-btn-primary {
    background: var(--gfc-gradient-primary);
    color: var(--gfc-lighter);
}
.gfc-btn-primary svg {
    fill: var(--gfc-lighter);
}
.gfc-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--gfc-shadow-glow);
    color: var(--gfc-lighter);
}
.gfc-btn-light {
    background: var(--gfc-lighter);
    color: var(--gfc-dark);
}
.gfc-btn-light svg {
    fill: var(--gfc-primary);
}
.gfc-btn-light:hover {
    transform: translateY(-3px);
    box-shadow: var(--gfc-shadow-lg);
    color: var(--gfc-dark);
}
.gfc-btn-outline {
    background: transparent;
    color: var(--gfc-primary);
    border: 2px solid var(--gfc-primary);
}
.gfc-btn-outline svg {
    fill: var(--gfc-primary);
}
.gfc-btn-outline:hover {
    background: var(--gfc-primary);
    color: var(--gfc-lighter);
    transform: translateY(-3px);
}
.gfc-btn-outline:hover svg {
    fill: var(--gfc-lighter);
}
.gfc-cta-section {
    background: var(--gfc-gradient-glow);
}
.gfc-cta-box {
    background: var(--gfc-lighter);
    border-radius: var(--gfc-radius-xl);
    padding: 4rem;
    text-align: center;
    box-shadow: var(--gfc-shadow-lg);
    position: relative;
    overflow: hidden;
}
.gfc-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gfc-gradient-primary);
}
.gfc-cta-content h2 {
    margin-bottom: 0.75rem;
}
.gfc-cta-content p {
    max-width: 500px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}
.gfc-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.gfc-disclaimer-section {
    background: var(--gfc-gray-100);
}
.gfc-disclaimer-box {
    background: var(--gfc-lighter);
    border-radius: var(--gfc-radius-xl);
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    box-shadow: var(--gfc-shadow);
    border-left: 4px solid var(--gfc-primary);
}
.gfc-disclaimer-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--gfc-gradient-primary);
    border-radius: var(--gfc-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}
.gfc-disclaimer-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--gfc-lighter);
}
.gfc-disclaimer-content h3 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}
.gfc-disclaimer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.gfc-disclaimer-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.gfc-disclaimer-item strong {
    color: var(--gfc-dark);
    font-weight: 700;
    font-size: 0.95rem;
}
.gfc-disclaimer-item span {
    color: var(--gfc-gray-600);
    font-size: 0.9rem;
}
.gfc-footer {
    background: var(--gfc-darkest);
    color: var(--gfc-gray-400);
    padding: 4rem 0 0;
}
.gfc-footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.gfc-footer-brand {
    max-width: 320px;
}
.gfc-footer-logo {
    height: 48px;
    width: auto;
    margin-bottom: 1rem;
}
.gfc-footer-brand h3 {
    color: var(--gfc-lighter);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.gfc-footer-brand p {
    color: var(--gfc-gray-500);
    font-size: 0.95rem;
    line-height: 1.7;
}
.gfc-footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.gfc-footer-col h4 {
    color: var(--gfc-lighter);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}
.gfc-footer-col a,
.gfc-footer-col p {
    display: block;
    color: var(--gfc-gray-500);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    transition: var(--gfc-transition-fast);
}
.gfc-footer-col a:hover {
    color: var(--gfc-secondary);
    padding-left: 4px;
}
.gfc-footer-notice {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.gfc-footer-notice p {
    color: var(--gfc-gray-500);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.gfc-footer-notice p:last-child {
    margin-bottom: 0;
}
.gfc-footer-notice strong {
    color: var(--gfc-warning);
}
.gfc-footer-notice a {
    color: var(--gfc-secondary);
}
.gfc-footer-bottom {
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.gfc-footer-bottom p {
    color: var(--gfc-gray-600);
    font-size: 0.85rem;
    margin-bottom: 0;
}
.gfc-footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}
.gfc-footer-bottom-links a {
    color: var(--gfc-gray-600);
    font-size: 0.85rem;
}
.gfc-footer-bottom-links a:hover {
    color: var(--gfc-secondary);
}
.gfc-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gfc-darker);
    padding: 1.25rem 1.5rem;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    opacity: 0;
    transition: var(--gfc-transition);
    border-top: 1px solid rgba(108, 92, 231, 0.3);
}
.gfc-cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}
.gfc-cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.gfc-cookie-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--gfc-gradient-secondary);
    border-radius: var(--gfc-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}
.gfc-cookie-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--gfc-darker);
}
.gfc-cookie-text {
    flex: 1;
    color: var(--gfc-gray-400);
    font-size: 0.9rem;
    line-height: 1.5;
}
.gfc-cookie-text a {
    color: var(--gfc-secondary);
    text-decoration: underline;
}
.gfc-cookie-btn {
    background: var(--gfc-gradient-primary);
    color: var(--gfc-lighter);
    padding: 0.75rem 2rem;
    border-radius: var(--gfc-radius-full);
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--gfc-transition);
    font-size: 0.9rem;
    font-family: inherit;
    white-space: nowrap;
}
.gfc-cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--gfc-shadow-glow);
}
.gfc-game-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 20, 25, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}
.gfc-game-modal.active {
    display: flex;
}
.gfc-game-modal-content {
    background: var(--gfc-darker);
    border-radius: var(--gfc-radius-xl);
    width: 100%;
    max-width: 1100px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: var(--gfc-shadow-xl), var(--gfc-shadow-glow);
    border: 1px solid rgba(108, 92, 231, 0.3);
}
.gfc-game-modal-header {
    background: var(--gfc-darkest);
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.gfc-game-modal-title {
    font-size: 1.1rem;
    margin: 0;
    color: var(--gfc-lighter);
    font-weight: 700;
}
.gfc-game-modal-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--gfc-lighter);
    width: 40px;
    height: 40px;
    border-radius: var(--gfc-radius);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--gfc-transition-fast);
}
.gfc-game-modal-close svg {
    width: 22px;
    height: 22px;
    fill: var(--gfc-lighter);
}
.gfc-game-modal-close:hover {
    background: var(--gfc-error);
}
.gfc-game-modal-body {
    height: calc(90vh - 80px);
}
.gfc-game-modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.gfc-form-group {
    margin-bottom: 1.5rem;
}
.gfc-form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gfc-dark);
    font-weight: 600;
    font-size: 0.95rem;
}
.gfc-form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--gfc-gray-300);
    border-radius: var(--gfc-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--gfc-transition);
    background: var(--gfc-lighter);
    color: var(--gfc-dark);
}
.gfc-form-control:focus {
    outline: none;
    border-color: var(--gfc-primary);
    box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.1);
}
.gfc-form-control::placeholder {
    color: var(--gfc-gray-500);
}
textarea.gfc-form-control {
    resize: vertical;
    min-height: 150px;
}
.gfc-alert-success {
    background: rgba(0, 184, 148, 0.1);
    color: var(--gfc-success);
    padding: 1rem 1.25rem;
    border-radius: var(--gfc-radius);
    margin-bottom: 1.5rem;
    border: 1px solid var(--gfc-success);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}
.gfc-alert-error {
    background: rgba(214, 48, 49, 0.1);
    color: var(--gfc-error);
    padding: 1rem 1.25rem;
    border-radius: var(--gfc-radius);
    margin-bottom: 1.5rem;
    border: 1px solid var(--gfc-error);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}
.gfc-legal-content {
    background: var(--gfc-lighter);
    padding: 3rem;
    border-radius: var(--gfc-radius-xl);
    box-shadow: var(--gfc-shadow);
    line-height: 1.8;
}
.gfc-legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gfc-primary);
    font-size: 1.5rem;
}
.gfc-legal-content h2:first-child {
    margin-top: 0;
}
.gfc-legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--gfc-dark);
    font-size: 1.2rem;
}
.gfc-legal-content p {
    margin-bottom: 1.25rem;
}
.gfc-legal-content ul,
.gfc-legal-content ol {
    margin-bottom: 1.25rem;
    padding-left: 2rem;
    list-style: disc;
}
.gfc-legal-content li {
    margin-bottom: 0.5rem;
    color: var(--gfc-gray-700);
}
.gfc-about-intro {
    background: var(--gfc-lighter);
    padding: 3rem;
    border-radius: var(--gfc-radius-xl);
    box-shadow: var(--gfc-shadow);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}
.gfc-about-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gfc-gradient-primary);
}
.gfc-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.gfc-value-card {
    background: var(--gfc-lighter);
    padding: 2rem;
    border-radius: var(--gfc-radius-lg);
    box-shadow: var(--gfc-shadow);
    transition: var(--gfc-transition);
    border: 1px solid var(--gfc-gray-200);
}
.gfc-value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--gfc-shadow-lg);
    border-color: var(--gfc-primary);
}
.gfc-contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}
.gfc-contact-intro {
    margin-bottom: 2rem;
}
.gfc-btn-full-width {
    width: 100%;
    justify-content: center;
}
.gfc-contact-info {
    background: var(--gfc-lighter);
    padding: 2.5rem;
    border-radius: var(--gfc-radius-xl);
    box-shadow: var(--gfc-shadow);
    border: 1px solid var(--gfc-gray-200);
}
.gfc-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.75rem;
}
.gfc-contact-item:last-child {
    margin-bottom: 0;
}
.gfc-contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--gfc-gradient-primary);
    border-radius: var(--gfc-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}
.gfc-contact-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--gfc-lighter);
}
.gfc-contact-details h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--gfc-dark);
    font-weight: 700;
}
.gfc-contact-details p {
    margin-bottom: 0;
    color: var(--gfc-gray-600);
    font-size: 0.95rem;
}
.gfc-faq-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}
.gfc-faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.gfc-faq-card {
    background: var(--gfc-lighter);
    padding: 2rem;
    border-radius: var(--gfc-radius-lg);
    box-shadow: var(--gfc-shadow);
    margin-bottom: 1.25rem;
    transition: var(--gfc-transition);
    border-left: 4px solid transparent;
}
.gfc-faq-card:hover {
    border-left-color: var(--gfc-primary);
    box-shadow: var(--gfc-shadow-lg);
}
.gfc-faq-card:last-child {
    margin-bottom: 0;
}
.gfc-faq-title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--gfc-dark);
    font-weight: 700;
}
.gfc-faq-answer {
    margin-bottom: 0;
    color: var(--gfc-gray-600);
    line-height: 1.7;
}
@media (max-width: 1024px) {
    .gfc-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gfc-games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gfc-footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .gfc-footer-brand {
        max-width: none;
    }
}
@media (max-width: 768px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
    .gfc-container {
        padding: 0 1rem;
    }
    .gfc-section {
        padding: 4rem 0;
    }
    .gfc-hero {
        padding: 4rem 0;
        min-height: auto;
    }
    .gfc-hero-title {
        font-size: 2.25rem;
    }
    .gfc-hero-subtitle {
        font-size: 1.1rem;
    }
    .gfc-features-grid {
        grid-template-columns: 1fr;
    }
    .gfc-feature-card {
        flex-direction: column;
        text-align: center;
    }
    .gfc-games-grid {
        grid-template-columns: 1fr;
    }
    .gfc-cta-box {
        padding: 2.5rem 1.5rem;
    }
    .gfc-cta-actions {
        flex-direction: column;
    }
    .gfc-cta-actions .gfc-btn {
        width: 100%;
        justify-content: center;
    }
    .gfc-disclaimer-box {
        flex-direction: column;
        text-align: center;
    }
    .gfc-disclaimer-grid {
        grid-template-columns: 1fr;
    }
    .gfc-footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .gfc-footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .gfc-cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .gfc-contact-grid {
        grid-template-columns: 1fr;
    }
    .gfc-legal-content {
        padding: 2rem;
    }
    .gfc-about-intro {
        padding: 2rem;
    }
}
@media (max-width: 480px) {
    .gfc-navbar-brand span {
        display: none;
    }
    .gfc-hero-title {
        font-size: 1.85rem;
    }
    .gfc-hero-cta {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    .gfc-game-image {
        height: 180px;
    }
    .gfc-btn {
        padding: 0.8rem 1.4rem;
        font-size: 0.95rem;
    }
}
.gfc-page-hero {
    background: var(--gfc-gradient-hero);
    color: var(--gfc-lighter);
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.gfc-page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(108, 92, 231, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(0, 206, 201, 0.3) 0%, transparent 50%);
}
.gfc-page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}
.gfc-page-hero h1 {
    font-size: 2.75rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--gfc-lighter);
}
.gfc-page-hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}
.gfc-about-intro {
    display: flex;
    gap: 2.5rem;
    background: var(--gfc-lighter);
    border-radius: var(--gfc-radius-xl);
    padding: 3rem;
    box-shadow: var(--gfc-shadow-lg);
    align-items: flex-start;
}
.gfc-about-intro-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: var(--gfc-gradient-primary);
    border-radius: var(--gfc-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}
.gfc-about-intro-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--gfc-lighter);
}
.gfc-about-intro-content h2 {
    margin-bottom: 1.25rem;
}
.gfc-about-intro-content p:last-child {
    margin-bottom: 0;
}
.gfc-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.gfc-value-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--gfc-radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--gfc-transition);
}
.gfc-value-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gfc-primary);
    transform: translateY(-8px);
}
.gfc-value-icon {
    width: 64px;
    height: 64px;
    background: var(--gfc-gradient-primary);
    border-radius: var(--gfc-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}
.gfc-value-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--gfc-lighter);
}
.gfc-value-card h3 {
    color: var(--gfc-lighter);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}
.gfc-value-card p {
    color: var(--gfc-gray-400);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}
.gfc-games-grid-full {
    grid-template-columns: repeat(3, 1fr);
}
.gfc-contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: start;
}
.gfc-contact-form-wrapper {
    background: var(--gfc-lighter);
    border-radius: var(--gfc-radius-xl);
    padding: 2.5rem;
    box-shadow: var(--gfc-shadow-lg);
}
.gfc-contact-form-header {
    margin-bottom: 2rem;
}
.gfc-contact-form-header h2 {
    margin-bottom: 0.5rem;
}
.gfc-contact-form-header p {
    margin-bottom: 0;
}
.gfc-contact-sidebar {
    position: sticky;
    top: 100px;
}
.gfc-contact-info {
    background: var(--gfc-darker);
    border-radius: var(--gfc-radius-xl);
    padding: 2.5rem;
    border: 1px solid rgba(108, 92, 231, 0.3);
}
.gfc-contact-info h3 {
    color: var(--gfc-lighter);
    margin-bottom: 0.5rem;
}
.gfc-contact-info > p {
    color: var(--gfc-gray-500);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}
.gfc-contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.gfc-contact-item:last-child {
    margin-bottom: 0;
}
.gfc-contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--gfc-gradient-primary);
    border-radius: var(--gfc-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}
.gfc-contact-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--gfc-lighter);
}
.gfc-contact-details h4 {
    color: var(--gfc-lighter);
    font-size: 1rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
}
.gfc-contact-details p {
    color: var(--gfc-gray-400);
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.6;
}
.gfc-contact-details a {
    color: var(--gfc-secondary);
}
.gfc-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}
.gfc-faq-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--gfc-radius-lg);
    padding: 2rem;
    display: flex;
    gap: 1.25rem;
    transition: var(--gfc-transition);
}
.gfc-faq-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gfc-secondary);
    transform: translateY(-4px);
}
.gfc-faq-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--gfc-gradient-secondary);
    border-radius: var(--gfc-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}
.gfc-faq-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--gfc-darker);
}
.gfc-faq-content h3 {
    color: var(--gfc-lighter);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.gfc-faq-content p {
    color: var(--gfc-gray-400);
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.6;
}
@media (max-width: 1024px) {
    .gfc-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gfc-games-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }
    .gfc-faq-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .gfc-page-hero {
        padding: 6rem 0 3rem;
    }
    .gfc-page-hero h1 {
        font-size: 2rem;
    }
    .gfc-about-intro {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    .gfc-about-intro-icon {
        margin: 0 auto;
    }
    .gfc-values-grid {
        grid-template-columns: 1fr;
    }
    .gfc-games-grid-full {
        grid-template-columns: 1fr;
    }
    .gfc-contact-grid {
        grid-template-columns: 1fr;
    }
    .gfc-contact-sidebar {
        position: static;
    }
    .gfc-contact-form-wrapper {
        padding: 1.75rem;
    }
    .gfc-contact-info {
        padding: 1.75rem;
    }
    .gfc-faq-card {
        flex-direction: column;
        text-align: center;
    }
    .gfc-faq-icon {
        margin: 0 auto;
    }
}
.gfc-page-hero-compact {
    padding: 6rem 0 3rem;
    min-height: auto;
}
.gfc-legal-content {
    background: var(--gfc-lighter);
    padding: 3rem;
    border-radius: var(--gfc-radius-xl);
    box-shadow: var(--gfc-shadow-lg);
    line-height: 1.85;
}
.gfc-legal-intro {
    font-size: 1.1rem;
    color: var(--gfc-gray-700);
    border-left: 4px solid var(--gfc-primary);
    padding-left: 1.5rem;
    margin-bottom: 2.5rem;
    background: var(--gfc-gray-100);
    padding: 1.5rem;
    border-radius: 0 var(--gfc-radius) var(--gfc-radius) 0;
}
.gfc-legal-content h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--gfc-dark);
    font-size: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gfc-gray-200);
}
.gfc-legal-content h2:first-of-type {
    margin-top: 0;
}
.gfc-legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--gfc-gray-800);
    font-size: 1.15rem;
    font-weight: 700;
}
.gfc-legal-content p {
    margin-bottom: 1.25rem;
    color: var(--gfc-gray-700);
}
.gfc-legal-content ul,
.gfc-legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}
.gfc-legal-content ul {
    list-style: none;
}
.gfc-legal-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    color: var(--gfc-gray-700);
}
.gfc-legal-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background: var(--gfc-gradient-primary);
    border-radius: 50%;
}
.gfc-legal-content ol {
    list-style: decimal;
}
.gfc-legal-content ol li {
    margin-bottom: 0.6rem;
    color: var(--gfc-gray-700);
    padding-left: 0.5rem;
}
.gfc-legal-content a {
    color: var(--gfc-primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.gfc-legal-content a:hover {
    color: var(--gfc-primary-dark);
}
.gfc-legal-content strong {
    color: var(--gfc-dark);
    font-weight: 700;
}
.gfc-table-wrapper {
    overflow-x: auto;
    margin: 1.5rem 0;
    border-radius: var(--gfc-radius);
    border: 1px solid var(--gfc-gray-200);
}
.gfc-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}
.gfc-table th,
.gfc-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--gfc-gray-200);
}
.gfc-table th {
    background: var(--gfc-gradient-primary);
    color: var(--gfc-lighter);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.gfc-table tbody tr:last-child td {
    border-bottom: none;
}
.gfc-table tbody tr:hover {
    background: var(--gfc-gray-100);
}
.gfc-table td {
    color: var(--gfc-gray-700);
}
.gfc-table td:first-child {
    font-weight: 600;
    color: var(--gfc-dark);
    font-family: monospace;
    font-size: 0.9rem;
}
@media (max-width: 768px) {
    .gfc-legal-content {
        padding: 2rem 1.5rem;
    }
    .gfc-legal-content h2 {
        font-size: 1.3rem;
    }
    .gfc-legal-content h3 {
        font-size: 1.1rem;
    }
    .gfc-legal-intro {
        font-size: 1rem;
        padding: 1.25rem;
    }
    .gfc-table th,
    .gfc-table td {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}