:root {
    --primary: #6366f1;
    --secondary: #8b5cf6;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --dark: #0f172a;
    --light: #ffffff;
    --gray: #64748b;
    --gray-light: #e2e8f0;
    --gradient-primary: linear-gradient(135deg, #6366f1, #8b5cf6);
    --gradient-success: linear-gradient(135deg, #10b981, #34d399);
    --gradient-bg: linear-gradient(180deg, #0f172a, #1e293b);
    --gradient-accent: linear-gradient(135deg, #f59e0b, #fbbf24);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --border-radius-lg: 20px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    background: var(--dark);
    color: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--light);
}
.logo-img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.3));
    transition: all 0.3s ease;
}
.nav-logo:hover .logo-img {
    transform: scale(1.1) rotate(-5deg);
    filter: drop-shadow(0 0 15px rgba(99, 102, 241, 0.5));
}
.footer-logo {
    height: 50px;
    filter: drop-shadow(0 0 15px rgba(99, 102, 241, 0.4));
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}
.nav-link {
    color: var(--gray);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}
.nav-link:hover {
    color: var(--primary);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}
.nav-actions {
    display: flex;
    gap: 1rem;
}
.btn-login {
    background: transparent;
    border: 1px solid var(--gray);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    color: var(--light);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-login:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.btn-signup {
    background: var(--gradient-primary);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    color: var(--light);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}
.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}
.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--light);
    transition: 0.3s;
}
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: float 20s ease-in-out infinite;
}
.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}
.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--warning);
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}
.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--secondary);
    bottom: 10%;
    left: 30%;
    animation-delay: 10s;
}
.shape-4 {
    width: 150px;
    height: 150px;
    background: var(--success);
    top: 30%;
    right: 30%;
    animation-delay: 15s;
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
    }
    50% {
        transform: translateY(0) rotate(180deg);
    }
    75% {
        transform: translateY(20px) rotate(270deg);
    }
}
.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-bg);
    opacity: 0.8;
}
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-block;
    background: var(--gradient-accent);
    color: var(--light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: slideInLeft 0.8s ease;
}
.hero-title {
    font-family: 'Fredoka', cursive;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.title-line {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInLeft 0.8s ease forwards;
    opacity: 0;
    transform: translateX(-50px);
}
.title-line:nth-child(1) {
    animation-delay: 0.1s;
}
.title-line:nth-child(2) {
    animation-delay: 0.2s;
}
.title-line:nth-child(3) {
    animation-delay: 0.3s;
}
@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.hero-description {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 2rem;
    animation: slideInLeft 0.8s ease 0.4s forwards;
    opacity: 0;
    transform: translateX(-50px);
}
.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
    animation: slideInLeft 0.8s ease 0.5s forwards;
    opacity: 0;
    transform: translateX(-50px);
}
.stat-item {
    text-align: center;
}
.stat-number {
    display: block;
    font-family: 'Fredoka', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}
.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray);
    margin-top: 0.5rem;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    animation: slideInLeft 0.8s ease 0.6s forwards;
    opacity: 0;
    transform: translateX(-50px);
}
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    color: var(--light);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.4);
}
.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-secondary:hover {
    background: var(--primary);
    color: var(--light);
    transform: translateY(-3px);
}
.btn-danger {
    background: rgba(239, 68, 68, 0.1);
    border-color: var(--danger);
    color: var(--danger);
}
.hero-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
    animation: slideInRight 0.8s ease forwards;
    opacity: 0;
    transform: translateX(50px);
}
.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    transition: transform 0.3s ease;
}
.hero-image:hover img {
    transform: scale(1.05);
}
@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.section-title {
    font-family: 'Fredoka', cursive;
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}
.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 2rem;
}
.games {
    padding: 6rem 0;
    background: var(--gradient-bg);
}
.game-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}
.filter-btn {
    background: transparent;
    border: 1px solid var(--gray);
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    color: var(--gray);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--light);
}
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}
.game-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}
.game-card .game-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.game-card .game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.game-card:hover .game-overlay {
    opacity: 1;
}
.player-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light);
    font-size: 0.875rem;
}
.play-btn {
    background: var(--gradient-primary);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    color: var(--light);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}
.play-btn:hover {
    transform: scale(1.05);
}
.play-btn a {
    color: inherit;
    text-decoration: none;
}
.game-card .game-info {
    padding: 1.5rem;
}
.game-card .game-info h3 {
    font-family: 'Fredoka', cursive;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.game-card .game-info h3 a {
    color: inherit;
    text-decoration: none;
}
.game-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.tag {
    background: rgba(99, 102, 241, 0.2);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}
.game-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.stars {
    display: flex;
    gap: 0.25rem;
}
.stars i {
    color: var(--warning);
    font-size: 0.875rem;
}
.rating-text {
    color: var(--gray);
    font-size: 0.875rem;
}
.about {
    padding: 6rem 0;
    background: var(--gradient-bg);
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 2rem;
    color: var(--light);
}
.overlay-text h3 {
    font-family: 'Fredoka', cursive;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.overlay-text p {
    color: var(--gray);
    font-size: 0.875rem;
}
.about-right h3 {
    font-family: 'Fredoka', cursive;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}
.about-right p {
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}
.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}
.about-stat {
    text-align: center;
}
.about-stat .stat-number {
    display: block;
    font-family: 'Fredoka', cursive;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}
.about-stat .stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray);
    margin-top: 0.5rem;
}
.fun-banner {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--success), #059669);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.fun-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url("https://www.briarwynnee.com/wp-content/themes/briarwynnee-com/%23grid")"/></svg>');
    opacity: 0.3;
}
.banner-content {
    position: relative;
    z-index: 1;
}
.banner-content h2 {
    font-family: 'Fredoka', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.banner-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}
.how-it-works {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--dark), #1e293b);
    position: relative;
}
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}
.step-item {
    text-align: center;
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}
.step-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}
.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--light);
}
.step-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--light);
}
.step-item h3 {
    font-family: 'Fredoka', cursive;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--light);
}
.step-item p {
    color: var(--gray);
    line-height: 1.6;
}
.why-us {
    padding: 6rem 0;
    background: linear-gradient(180deg, #1e293b, var(--dark));
    position: relative;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.feature-card:hover::before {
    transform: scaleX(1);
}
.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.15);
}
.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: var(--light);
    transition: all 0.3s ease;
}
.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}
.feature-card h3 {
    font-family: 'Fredoka', cursive;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--light);
}
.feature-card p {
    color: var(--gray);
    line-height: 1.6;
}
.contact {
    padding: 6rem 0;
    background: var(--gradient-bg);
}
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}
.contact-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2);
}
.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--light);
    flex-shrink: 0;
}
.contact-details h3 {
    font-family: 'Fredoka', cursive;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--light);
}
.contact-details p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0.25rem;
}
.contact-details span {
    font-size: 0.875rem;
    color: var(--gray);
}
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    color: var(--light);
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 1rem;
    color: var(--light);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
}
.form-group select {
    cursor: pointer;
}
.form-group select option {
    background: var(--dark);
    color: var(--light);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.disclaimer {
    padding: 4rem 0;
    background: rgba(239, 68, 68, 0.1);
    border-top: 2px solid var(--danger);
    border-bottom: 2px solid var(--danger);
}
.disclaimer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.disclaimer-icon {
    font-size: 3rem;
    color: var(--danger);
    margin-bottom: 1.5rem;
}
.disclaimer-content h3 {
    font-family: 'Fredoka', cursive;
    font-size: 2rem;
    font-weight: 600;
    color: var(--danger);
    margin-bottom: 1.5rem;
}
.disclaimer-content > p {
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
}
.disclaimer-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.disclaimer-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--gray);
}
.disclaimer-point i {
    color: var(--success);
    font-size: 1.2rem;
}
.disclaimer-btn {
    background: var(--gradient-primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    color: var(--light);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.disclaimer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}
.footer {
    background: rgba(15, 23, 42, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 1rem;
}
.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
    width: fit-content;
}
.footer-logo-wrapper:hover {
    transform: translateX(10px);
}
.footer-brand .logo-text {
    font-family: 'Fredoka', cursive;
    font-size: 2.25rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.footer-brand p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 320px;
    margin-top: 0.5rem;
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.link-group h4 {
    color: var(--light);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    text-transform: uppercase;
}
.link-group a {
    display: block;
    color: var(--gray);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
    font-size: 0.875rem;
}
.link-group a:hover {
    color: var(--primary);
}
.footer-social h4 {
    color: var(--light);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    text-transform: uppercase;
}
.social-links {
    display: flex;
    gap: 1rem;
}
.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-link:hover {
    background: var(--gradient-primary);
    color: var(--light);
    transform: translateY(-3px);
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
    font-size: 0.875rem;
}
.footer-bottom p {
    margin: 0.5rem 0;
}
.footer-disclaimer {
    color: var(--warning);
    font-weight: 600;
}
.game-main {
    padding: 6rem 0 4rem;
    min-height: 100vh;
}
.game-container {
    display: flex;
    flex-direction: column;
    background: var(--gradient-bg);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}
.game-header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}
.game-title {
    font-family: 'Fredoka', cursive;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.back-btn {
    background: var(--gradient-primary);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    color: var(--light);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}
.game-container .game-info {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0;
}
.game-container .game-info h3 {
    font-family: 'Fredoka', cursive;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}
.game-container .game-info p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.game-container .game-tags {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.game-container .tag {
    background: rgba(99, 102, 241, 0.2);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 500;
}
.game-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 1.5rem;
}
.game-stats .stat {
    text-align: center;
}
.game-stats .stat-number {
    display: block;
    font-family: 'Fredoka', cursive;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}
.game-stats .stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray);
    margin-top: 0.5rem;
}
.game-frame {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
}
.game-frame iframe {
    width: 100%;
    height: 70vh;
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
    background: #000;
}
.policy-main {
    padding: 6rem 0 4rem;
    min-height: 100vh;
}
.policy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.policy-header {
    text-align: center;
    margin-bottom: 3rem;
}
.policy-header h1 {
    font-family: 'Fredoka', cursive;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}
.policy-header p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.6;
}
.policy-section {
    margin-bottom: 2.5rem;
}
.policy-section h2 {
    font-family: 'Fredoka', cursive;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
}
.policy-section p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}
.policy-section ul {
    list-style: none;
    padding-left: 0;
}
.policy-section li {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}
.policy-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}
.highlight {
    color: var(--primary);
    font-weight: 500;
}
.back-to-home {
    text-align: center;
    margin-top: 3rem;
}
.contact-main {
    padding: 6rem 0 4rem;
    min-height: 100vh;
}
.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}
.contact-header h1 {
    font-family: 'Fredoka', cursive;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}
.contact-header p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}
.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}
.btn-submit {
    background: var(--gradient-primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    color: var(--light);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}
.btn-reset {
    background: transparent;
    border: 1px solid var(--primary);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}
.btn-reset:hover {
    background: var(--primary);
    color: var(--light);
}
.faq-section {
    margin-top: 4rem;
}
.faq-header {
    text-align: center;
    margin-bottom: 2rem;
}
.faq-header h2 {
    font-family: 'Fredoka', cursive;
    font-size: 2rem;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 1rem;
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.faq-item h3 {
    font-family: 'Fredoka', cursive;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.faq-item p {
    color: var(--gray);
    line-height: 1.6;
}
.disclaimer-header {
    text-align: center;
    margin-bottom: 3rem;
}
.disclaimer-header h1 {
    font-family: 'Fredoka', cursive;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}
.disclaimer-header p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.6;
}
.disclaimer-section {
    margin-bottom: 2.5rem;
}
.disclaimer-section h2 {
    font-family: 'Fredoka', cursive;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
}
.disclaimer-section p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}
.disclaimer-section ul {
    list-style: none;
    padding-left: 0;
}
.disclaimer-section li {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}
.disclaimer-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}
.warning-box {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid var(--danger);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
}
.warning-box h3 {
    color: var(--danger);
    font-family: 'Fredoka', cursive;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}
.warning-box p {
    color: var(--light);
    font-weight: 500;
    margin-bottom: 0;
}
.age-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 1rem 0;
}
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}
.modal-content {
    position: relative;
    background: var(--dark);
    margin: 15% auto;
    padding: 2rem;
    border: 2px solid var(--primary);
    border-radius: var(--border-radius-lg);
    width: 90%;
    max-width: 500px;
    box-shadow: var(--shadow-xl);
    animation: modalSlideIn 0.3s ease;
}
.modal-body {
    text-align: center;
}
.modal-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.modal-body h3 {
    font-family: 'Fredoka', cursive;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary);
}
.modal-body > p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}
.modal-disclaimer {
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 1.5rem;
}
@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.floating-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.6;
}
@keyframes particle-float {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) translateX(50px) rotate(360deg);
        opacity: 0;
    }
}
@keyframes bounce {
    0%, 100% { 
        transform: translateY(0); 
    }
    50% { 
        transform: translateY(-20px); 
    }
}
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    color: white;
    font-weight: 500;
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 300px;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.notification-success {
    background: linear-gradient(135deg, #10b981, #34d399);
}
.notification-error {
    background: linear-gradient(135deg, #ef4444, #f87171);
}
.notification-info {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease;
}
.page-loader .loader-content {
    text-align: center;
}
.page-loader .loader-logo {
    font-size: 4rem;
    animation: bounce 1s ease-in-out infinite;
}
.page-loader .loader-logo img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.5));
}
.page-loader .loader-text {
    font-family: 'Fredoka', cursive;
    font-size: 2rem;
    margin-top: 1rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-hidden {
    opacity: 0;
    transform: translateY(30px);
}
.section-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-title {
        font-size: 3rem;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-actions {
        justify-content: center;
    }
    .game-filters {
        flex-wrap: wrap;
    }
    .games-grid {
        grid-template-columns: 1fr;
    }
    .about-content {
        grid-template-columns: 1fr;
    }
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        place-items: center;
    }
    .footer-brand {
        align-items: center;
    }
    .footer-logo-wrapper {
        margin: 0 auto;
    }
    .footer-links {
        grid-template-columns: 1fr;
    }
    .steps-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .step-item,
    .feature-card {
        padding: 1.5rem;
    }
    .how-it-works,
    .why-us {
        padding: 4rem 0;
    }
    .fun-banner {
        padding: 2rem 0;
    }
    .banner-content h2 {
        font-size: 1.75rem;
    }
    .banner-content p {
        font-size: 1rem;
    }
    .modal-content {
        margin: 25% auto;
        padding: 1.5rem;
        width: 95%;
    }
    .modal-body h3 {
        font-size: 1.25rem;
    }
    .modal-actions {
        flex-direction: column;
    }
    .form-actions {
        flex-direction: column;
    }
    .game-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .game-title {
        font-size: 1.25rem;
    }
    .game-frame iframe {
        height: 50vh;
    }
    .game-stats {
        gap: 1.5rem;
    }
    .game-container .game-info h3 {
        font-size: 1.5rem;
    }
}
.legal-main {
    padding: 120px 0 60px;
    min-height: calc(100vh - 280px);
}
.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}
.legal-header {
    text-align: center;
    margin-bottom: 40px;
}
.legal-title {
    font-family: 'Fredoka', cursive;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(99, 102, 241, 0.3);
}
.legal-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.legal-content {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}
.legal-content h2 {
    font-family: 'Fredoka', cursive;
    font-size: 1.4rem;
    color: var(--primary);
    margin-top: 30px;
    margin-bottom: 15px;
}
.legal-content h2:first-child {
    margin-top: 0;
}
.legal-content p,
.legal-content li {
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 15px;
}
.legal-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}
.legal-content a {
    color: var(--primary);
    text-decoration: underline;
}
.legal-content a:hover {
    color: var(--secondary);
}
@media (max-width: 768px) {
    .legal-main { padding: 100px 0 40px; }
    .legal-container { padding: 0 20px; }
    .legal-title { font-size: 2rem; }
    .legal-content { padding: 25px; }
}
.form-title {
    font-family: 'Fredoka', cursive;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 1.5rem;
}
.faq-header p {
    color: var(--gray);
}