/* ===== BRAWL STARS THEME - CARTOON STYLE ===== */
:root {
    --primary: #ff6b35;
    --primary-dark: #e55a2b;
    --secondary: #ffd23f;
    --secondary-dark: #e5bc38;
    --accent: #7b2cbf;
    --accent-light: #9d4edd;
    --dark: #1a1a2e;
    --darker: #0f0f1a;
    --light: #ffffff;
    --gray: #b8b8d1;
    --success: #4ade80;
    --danger: #ef4444;
    --gem-blue: #00d4ff;
    --gem-purple: #c77dff;
    --gradient-primary: linear-gradient(135deg, #ff6b35 0%, #ffd23f 100%);
    --gradient-secondary: linear-gradient(135deg, #7b2cbf 0%, #c77dff 100%);
    --gradient-dark: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
    --shadow-glow: 0 0 30px rgba(255, 107, 53, 0.5);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.3);
    --border-cartoon: 4px solid #000;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--gradient-dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--primary);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--light);
    font-weight: 800;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    border: 3px solid var(--secondary);
}

.logo span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.3);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 8px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 30px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    border: var(--border-cartoon);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--dark);
    box-shadow: 0 6px 0 var(--primary-dark), var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 0 var(--primary-dark), 0 0 50px rgba(255, 107, 53, 0.7);
}

.btn-primary:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 var(--primary-dark);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--light);
    box-shadow: 0 6px 0 var(--accent), 0 0 30px rgba(123, 44, 191, 0.5);
}

.btn-secondary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 0 var(--accent), 0 0 50px rgba(123, 44, 191, 0.7);
}

.btn-glow {
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 6px 0 var(--primary-dark), 0 0 30px rgba(255, 107, 53, 0.5); }
    50% { box-shadow: 0 6px 0 var(--primary-dark), 0 0 60px rgba(255, 107, 53, 0.8); }
}

.gem-icon {
    font-size: 1.3rem;
    animation: gem-bounce 1s ease-in-out infinite;
}

@keyframes gem-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(123, 44, 191, 0.15) 0%, transparent 50%),
        var(--gradient-dark);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 4px 4px 0 rgba(0,0,0,0.2);
    animation: title-pop 0.5s ease-out;
}

@keyframes title-pop {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    border: var(--border-cartoon);
    box-shadow: var(--shadow-card);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.floating-gems {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.gem {
    position: absolute;
    font-size: 2rem;
    animation: gem-float 4s ease-in-out infinite;
    opacity: 0.7;
}

.gem-1 { top: 20%; left: 10%; animation-delay: 0s; }
.gem-2 { top: 60%; left: 5%; animation-delay: 1s; }
.gem-3 { top: 30%; right: 10%; animation-delay: 2s; }
.gem-4 { top: 70%; right: 5%; animation-delay: 3s; }

@keyframes gem-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 100px 0;
    background: var(--darker);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.features h2, .articles h2, .faq h2, .about h2, .contact h2, .cta h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 50px;
    text-transform: uppercase;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--dark);
    padding: 40px 30px;
    border-radius: 20px;
    border: var(--border-cartoon);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ===== ARTICLES SECTION ===== */
.articles {
    padding: 100px 0;
    background: 
        radial-gradient(circle at 50% 0%, rgba(123, 44, 191, 0.1) 0%, transparent 50%),
        var(--gradient-dark);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.article-card {
    background: var(--dark);
    border-radius: 20px;
    border: var(--border-cartoon);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.article-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid var(--primary);
}

.article-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-content h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--secondary);
    line-height: 1.4;
}

.article-content p {
    color: var(--gray);
    font-size: 0.9rem;
    flex: 1;
    line-height: 1.7;
}

.article-date {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
}

/* ===== FAQ SECTION ===== */
.faq {
    padding: 100px 0;
    background: var(--darker);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 3px solid var(--dark);
    border-radius: 15px;
    overflow: hidden;
    background: var(--dark);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    color: var(--light);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--secondary);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--gray);
    line-height: 1.7;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 100px 0;
    background: 
        radial-gradient(circle at 80% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        var(--gradient-dark);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
    list-style: none;
}

.about-stats li {
    background: var(--dark);
    padding: 25px;
    border-radius: 15px;
    border: 3px solid var(--primary);
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--gray);
    font-size: 0.9rem;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    border: var(--border-cartoon);
    box-shadow: var(--shadow-card);
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 100px 0;
    background: var(--darker);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--dark);
    padding: 25px;
    border-radius: 15px;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--primary);
    transform: translateX(10px);
}

.contact-icon {
    font-size: 2rem;
}

.contact-item h4 {
    color: var(--secondary);
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--gray);
}

.contact-form {
    background: var(--dark);
    padding: 40px;
    border-radius: 20px;
    border: var(--border-cartoon);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: var(--darker);
    border: 3px solid var(--dark);
    border-radius: 10px;
    color: var(--light);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 80px 0;
    background: var(--gradient-secondary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '💎';
    position: absolute;
    font-size: 15rem;
    opacity: 0.1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta h2 {
    color: var(--light);
    -webkit-text-fill-color: var(--light);
    margin-bottom: 15px;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--darker);
    padding: 60px 0 30px;
    border-top: 5px solid var(--primary);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand img {
    width: 60px;
    margin-bottom: 15px;
    border-radius: 10px;
}

.footer-brand p {
    color: var(--gray);
    line-height: 1.7;
}

.footer-links h4,
.footer-social h4 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--dark);
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.9rem;
}

.disclaimer {
    margin-top: 10px;
    font-size: 0.8rem !important;
    opacity: 0.7;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--darker);
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        border-bottom: 3px solid var(--primary);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        margin: 0 auto 30px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image img {
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Generator page tablet fixes */
    .generator-container {
        margin: 40px auto;
    }
    
    .generator-box {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .features h2, .articles h2, .faq h2, .about h2, .contact h2, .cta h2 {
        font-size: 1.8rem;
    }
    
    /* Generator page mobile fixes */
    .generator-container {
        padding: 0 15px;
        margin: 30px auto;
    }
    
    .generator-box {
        padding: 25px 20px;
    }
    
    .generator-header h1 {
        font-size: 1.5rem;
    }
    
    .platform-options {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .platform-option {
        padding: 15px 10px;
    }
    
    .platform-option .platform-icon {
        font-size: 1.5rem;
    }
    
    .platform-option .platform-name {
        font-size: 0.9rem;
    }
    
    .gem-amount {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8px;
    }
    
    .gem-option {
        padding: 12px 8px;
    }
    
    .gem-option .amount {
        font-size: 1rem;
    }
    
    .gem-option .label {
        font-size: 0.7rem;
    }
    
    .generate-btn {
        padding: 15px 20px;
        font-size: 0.95rem;
    }
    
    .generator-info {
        grid-template-columns: 1fr 1fr 1fr !important;
        gap: 10px !important;
    }
    
    .generator-info .info-card {
        padding: 15px 10px !important;
    }
    
    .generator-info .info-card span {
        font-size: 1.5rem !important;
    }
    
    .generator-info .info-card p {
        font-size: 0.75rem !important;
    }
}

/* ===== GENERATOR PAGE STYLES ===== */
.generator-page {
    min-height: 100vh;
    padding-top: 100px;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(123, 44, 191, 0.15) 0%, transparent 50%),
        var(--gradient-dark);
}

.generator-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 0 20px;
}

.generator-box {
    background: var(--dark);
    border-radius: 25px;
    border: var(--border-cartoon);
    padding: 40px;
    box-shadow: var(--shadow-card);
}

.generator-header {
    text-align: center;
    margin-bottom: 30px;
}

.generator-header h1 {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.generator-header p {
    color: var(--gray);
}

.generator-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.95rem;
}

.input-group input,
.input-group select {
    padding: 15px 20px;
    background: var(--darker);
    border: 3px solid var(--dark);
    border-radius: 12px;
    color: var(--light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
}

.input-group select {
    cursor: pointer;
}

.input-group select option {
    background: var(--darker);
    color: var(--light);
}

.platform-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.platform-option {
    padding: 20px;
    background: var(--darker);
    border: 3px solid var(--dark);
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.platform-option:hover,
.platform-option.selected {
    border-color: var(--secondary);
    background: rgba(255, 210, 63, 0.1);
    transform: translateY(-3px);
}

.platform-option .platform-icon {
    font-size: 2rem;
}

.platform-option .platform-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--light);
}

.platform-option.selected .platform-name {
    color: var(--secondary);
}

.gem-amount {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.gem-option {
    padding: 15px;
    background: var(--darker);
    border: 3px solid var(--dark);
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gem-option:hover,
.gem-option.selected {
    border-color: var(--primary);
    background: rgba(255, 107, 53, 0.1);
}

.gem-option .amount {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
}

.gem-option .label {
    font-size: 0.8rem;
    color: var(--gray);
}

.generate-btn {
    width: 100%;
    margin-top: 10px;
}

/* Progress Section */
.progress-section {
    display: none;
    margin-top: 30px;
}

.progress-section.active {
    display: block;
}

.progress-bar-container {
    background: var(--darker);
    border-radius: 15px;
    padding: 5px;
    margin-bottom: 20px;
}

.progress-bar {
    height: 25px;
    background: var(--gradient-primary);
    border-radius: 12px;
    width: 0%;
    transition: width 0.5s ease;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-text {
    text-align: center;
    color: var(--gray);
    font-size: 0.95rem;
}

.progress-status {
    color: var(--secondary);
    font-weight: 600;
}

/* Captcha Section */
.captcha-section {
    display: none;
    margin-top: 30px;
}

.captcha-section.active {
    display: block;
}

.fake-captcha {
    background: var(--light);
    border-radius: 5px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 2px solid #d3d3d3;
}

.captcha-checkbox {
    width: 28px;
    height: 28px;
    border: 2px solid #c1c1c1;
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.captcha-checkbox.checked {
    background: #4285f4;
    border-color: #4285f4;
}

.captcha-checkbox.checked::after {
    content: '✓';
    color: white;
    font-weight: bold;
}

.captcha-text {
    color: #202124;
    font-size: 0.95rem;
}

.captcha-logo {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.captcha-logo img {
    width: 32px;
    height: 32px;
}

.captcha-logo span {
    font-size: 0.7rem;
    color: #555;
}

/* Verification Section */
.verification-section {
    display: none;
    margin-top: 30px;
    text-align: center;
}

.verification-section.active {
    display: block;
}

.verification-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.verification-section h3 {
    color: var(--danger);
    margin-bottom: 15px;
}

.verification-section p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.continue-btn {
    background: var(--success);
    color: var(--dark);
    border: var(--border-cartoon);
    box-shadow: 0 6px 0 #22c55e;
}

.continue-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 0 #22c55e, 0 0 30px rgba(74, 222, 128, 0.5);
}

/* Loading Spinner */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid var(--gray);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
