/* UseFizzMates.xyz - Bubbly Purple Theme */
:root {
    --fizz-primary: #9B59B6;
    --fizz-secondary: #3498DB;
    --fizz-accent: #E74C3C;
    --fizz-dark: #2C3E50;
    --fizz-light: #F8F9FF;
    --fizz-gradient: linear-gradient(135deg, #9B59B6, #3498DB);
}

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

body {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', sans-serif;
    background: var(--fizz-light);
    color: var(--fizz-dark);
    overflow-x: hidden;
}

/* Age Verification Popup */
.fizz-age-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.fizz-age-content {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 30px 60px rgba(155, 89, 182, 0.3);
    border-left: 6px solid var(--fizz-primary);
}

.fizz-age-content h2 {
    color: var(--fizz-primary);
    margin-bottom: 1rem;
    font-size: 1.9rem;
}

.fizz-age-notice {
    background: linear-gradient(135deg, #F5F3FF, #EBF5FF);
    padding: 1rem;
    border-radius: 12px;
    color: var(--fizz-secondary);
    font-weight: 600;
    margin: 1.5rem 0;
    border: 1px dashed var(--fizz-primary);
}

.fizz-age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.fizz-age-btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.fizz-age-btn.yes {
    background: var(--fizz-gradient);
    color: white;
}

.fizz-age-btn.no {
    background: #7F8C8D;
    color: white;
}

.fizz-age-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Navbar */
.fizz-navbar {
    background: var(--fizz-gradient) !important;
    padding: 1rem 0;
    box-shadow: 0 5px 20px rgba(155, 89, 182, 0.25);
}

.fizz-brand {
    font-size: 1.7rem;
    font-weight: bold;
    color: white !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.fizz-logo {
    font-size: 1.9rem;
    animation: fizz-bubble 2s ease-in-out infinite;
}

@keyframes fizz-bubble {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.1); }
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 600;
    margin: 0 0.4rem;
    transition: all 0.3s ease;
    border-radius: 25px;
    padding: 0.5rem 1rem !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.03);
}

.navbar-toggler {
    border: 2px solid white;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.fizz-hero {
    background: var(--fizz-gradient);
    padding: 9rem 0 7rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.fizz-hero::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: fizz-float 6s ease-in-out infinite;
}

.fizz-hero::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
    animation: fizz-float 8s ease-in-out infinite reverse;
}

@keyframes fizz-float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 30px); }
}

.fizz-hero-content {
    position: relative;
    z-index: 2;
}

.fizz-hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.fizz-hero p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
}

.fizz-btn {
    display: inline-block;
    background: white;
    color: var(--fizz-primary);
    padding: 1.2rem 3.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.fizz-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
    color: var(--fizz-secondary);
}

/* Games Section */
.fizz-games {
    padding: 6rem 0;
    background: white;
}

.fizz-section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: bold;
    color: var(--fizz-dark);
    margin-bottom: 3rem;
}

.fizz-section-title span {
    background: var(--fizz-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fizz-iframe-wrapper {
    width: 100%;
    max-width: 880px;
    margin: 0 auto 2rem;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(155, 89, 182, 0.2);
    border: 5px solid var(--fizz-primary);
    aspect-ratio: 16 / 9;
}

.fizz-iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.fizz-notice {
    background: linear-gradient(135deg, #F5F3FF, #EBF5FF);
    border: 2px solid var(--fizz-primary);
    border-radius: 20px;
    padding: 1.5rem;
    margin: 2rem auto 0;
    max-width: 880px;
    text-align: center;
}

.fizz-notice i {
    color: var(--fizz-accent);
    margin-right: 0.5rem;
}

.fizz-notice-link {
    color: var(--fizz-primary);
    text-decoration: none;
    font-weight: bold;
}

/* About Section */
.fizz-about {
    padding: 6rem 0;
    background: var(--fizz-light);
}

.fizz-about-content {
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
}

.fizz-about-content > p {
    font-size: 1.25rem;
    line-height: 1.9;
    margin-bottom: 3rem;
}

.fizz-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.fizz-feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.fizz-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--fizz-gradient);
}

.fizz-feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(155, 89, 182, 0.15);
}

.fizz-feature-card i {
    font-size: 3.2rem;
    background: var(--fizz-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.fizz-feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--fizz-dark);
}

/* Testimonials */
.fizz-testimonials {
    padding: 6rem 0;
    background: white;
}

.fizz-testimonial-card {
    background: linear-gradient(135deg, #F5F3FF, #EBF5FF);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    height: 100%;
    border-left: 4px solid var(--fizz-primary);
    transition: all 0.3s ease;
}

.fizz-testimonial-card:hover {
    transform: translateX(5px);
}

.fizz-testimonial-card p {
    font-style: italic;
    line-height: 1.8;
}

.fizz-testimonial-author {
    font-weight: bold;
    color: var(--fizz-primary);
    margin-top: 1rem;
}

/* Contact Section */
.fizz-contact {
    padding: 6rem 0;
    background: var(--fizz-light);
}

.fizz-contact-info {
    background: white;
    padding: 2rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--fizz-primary);
}

.fizz-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.fizz-contact-item i {
    width: 55px;
    height: 55px;
    background: var(--fizz-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.fizz-contact-form {
    background: white;
    padding: 2rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--fizz-secondary);
}

.fizz-contact-form input,
.fizz-contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid #E8E8E8;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.fizz-contact-form input:focus,
.fizz-contact-form textarea:focus {
    outline: none;
    border-color: var(--fizz-primary);
    box-shadow: 0 0 0 3px rgba(155, 89, 182, 0.1);
}

.fizz-submit-btn {
    background: var(--fizz-gradient);
    color: white;
    border: none;
    padding: 1rem 3rem;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fizz-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(155, 89, 182, 0.3);
}

/* Footer */
.fizz-footer {
    background: linear-gradient(135deg, var(--fizz-dark), #34495E);
    color: white;
    padding: 3rem 0 1rem;
}

.fizz-footer-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.fizz-footer-logo {
    font-size: 2rem;
    color: var(--fizz-primary);
}

.fizz-footer h3 {
    color: var(--fizz-primary);
}

.fizz-footer h4 {
    color: var(--fizz-secondary);
    margin-bottom: 1rem;
}

.fizz-footer-links {
    list-style: none;
}

.fizz-footer-links li {
    margin-bottom: 0.5rem;
}

.fizz-footer-links a {
    color: #BDC3C7;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fizz-footer-links a:hover {
    color: var(--fizz-primary);
    padding-left: 5px;
}

.fizz-footer-notice {
    background: rgba(155, 89, 182, 0.1);
    border: 1px solid var(--fizz-primary);
    border-radius: 20px;
    padding: 1.5rem;
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.fizz-footer-notice-icon {
    color: var(--fizz-primary);
    font-size: 1.6rem;
}

.fizz-footer-notice h5 {
    color: var(--fizz-primary);
    margin-bottom: 0.5rem;
}

.fizz-footer-notice a {
    color: var(--fizz-secondary);
}

.fizz-footer-bottom {
    border-top: 1px solid #4A5568;
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    color: #95A5A6;
}

.fizz-footer-bottom a {
    color: var(--fizz-primary);
    text-decoration: none;
}

/* Scroll to Top */
.fizz-scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 58px;
    height: 58px;
    background: var(--fizz-gradient);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    font-size: 1.4rem;
}

.fizz-scroll-top.show {
    opacity: 1;
    transform: translateY(0);
}

.fizz-scroll-top:hover {
    transform: translateY(-5px) rotate(360deg);
}

/* Responsive */
@media (max-width: 768px) {
    .fizz-hero h1 {
        font-size: 2.3rem;
    }
    
    .fizz-section-title {
        font-size: 2rem;
    }
    
    .fizz-features {
        grid-template-columns: 1fr;
    }
}
