/* ===== ENHANCED FUTURISTIC STYLES ===== */
/* More attractive, modern, and eye-catching design */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00f0ff;
    --secondary: #7000ff;
    --accent: #ff00ea;
    --success: #00ff88;
    --bg-dark: #0a0a1a;
    --bg-darker: #050510;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --text-primary: #ffffff;
    --text-secondary: #b0b0c0;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg-darker);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ===== ENHANCED ANIMATED BACKGROUND ===== */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(3px 3px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(2px 2px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(3px 3px at 90% 60%, white, transparent),
        radial-gradient(2px 2px at 33% 80%, white, transparent),
        radial-gradient(1px 1px at 75% 20%, white, transparent),
        radial-gradient(2px 2px at 15% 90%, white, transparent);
    background-size: 250% 250%;
    opacity: 0.4;
    z-index: 0;
    animation: starMove 200s linear infinite;
}

@keyframes starMove {
    from { background-position: 0 0; }
    to { background-position: -10000px 5000px; }
}

/* Floating particles effect */
.twinkling {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
}

.twinkling::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle, rgba(0, 240, 255, 0.8) 1px, transparent 1px),
        radial-gradient(circle, rgba(112, 0, 255, 0.8) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 0, 234, 0.8) 1px, transparent 1px);
    background-size: 200px 200px, 300px 300px, 250px 250px;
    animation: float 30s linear infinite;
}

@keyframes float {
    from { transform: translateY(0); }
    to { transform: translateY(-500px); }
}

/* Gradient overlay animation */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 240, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(112, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 0, 234, 0.05) 0%, transparent 50%);
    animation: gradientShift 15s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* ===== CONTAINER ===== */
.container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem;
    min-height: 100vh;
}

/* ===== ENHANCED GLASS CARD ===== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 2px solid var(--glass-border);
    border-radius: 30px;
    padding: 3rem 2.5rem;
    box-shadow: 
        0 8px 32px rgba(0, 240, 255, 0.15),
        0 0 100px rgba(112, 0, 255, 0.08),
        inset 0 0 80px rgba(255, 255, 255, 0.02);
    transition: var(--transition);
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

/* Glowing border effect */
.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glass-card:hover {
    border-color: rgba(0, 240, 255, 0.4);
    box-shadow: 
        0 12px 48px rgba(0, 240, 255, 0.2),
        0 0 120px rgba(112, 0, 255, 0.12),
        inset 0 0 100px rgba(255, 255, 255, 0.03);
    transform: translateY(-5px);
}

/* ===== SECTIONS ===== */
.section {
    display: none;
    animation: fadeIn 0.6s ease-out;
}

.section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* ===== ENHANCED HERO SECTION ===== */
.hero-card {
    text-align: center;
}

.profile-section {
    margin-bottom: 3rem;
}

.profile-image-wrapper {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto 2rem;
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid transparent;
    background: linear-gradient(var(--bg-dark), var(--bg-dark)) padding-box,
                linear-gradient(135deg, var(--primary), var(--accent)) border-box;
    box-shadow: 
        0 0 60px rgba(0, 240, 255, 0.5),
        0 0 100px rgba(112, 0, 255, 0.3),
        inset 0 0 20px rgba(0, 240, 255, 0.2);
    transition: var(--transition);
    animation: photoFloat 6s ease-in-out infinite;
}

@keyframes photoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Animated rings around profile */
.profile-image-wrapper::before,
.profile-image-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--primary);
    border-radius: 50%;
    opacity: 0.3;
}

.profile-image-wrapper::before {
    width: 105%;
    height: 105%;
    animation: pulse 3s ease-in-out infinite;
}

.profile-image-wrapper::after {
    width: 115%;
    height: 115%;
    animation: pulse 3s ease-in-out infinite 1.5s;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.05); opacity: 0.1; }
}

.profile-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary), var(--accent));
    opacity: 0;
    filter: blur(30px);
    transition: var(--transition);
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.7; }
}

.profile-image-wrapper:hover .profile-glow {
    opacity: 0.8;
}

.profile-image-wrapper:hover .profile-image {
    transform: scale(1.08) rotate(2deg);
}

/* Enhanced name with gradient animation */
.name-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--secondary));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    animation: gradientFlow 4s ease infinite;
    text-shadow: 0 0 80px rgba(0, 240, 255, 0.5);
    letter-spacing: -1px;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.tagline {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    animation: fadeInDelay 1s ease-out 0.3s both;
    font-weight: 300;
    letter-spacing: 0.5px;
}

@keyframes fadeInDelay {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.info-chips {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInDelay 1s ease-out 0.5s both;
}

.chip {
    padding: 0.6rem 1.8rem;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.15), rgba(112, 0, 255, 0.15));
    border: 2px solid rgba(0, 240, 255, 0.4);
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--primary);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    font-weight: 500;
}

.chip::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.chip:hover::before {
    left: 100%;
}

.chip:hover {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.3), rgba(112, 0, 255, 0.3));
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 240, 255, 0.4);
}

/* ===== ENHANCED QR SECTION ===== */
.qr-section {
    margin: 3rem 0;
    animation: fadeInDelay 1s ease-out 0.7s both;
}

.connect-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.qr-wrapper {
    display: inline-block;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    border-radius: 20px;
    box-shadow: 
        0 8px 30px rgba(0, 240, 255, 0.3),
        0 0 60px rgba(112, 0, 255, 0.2);
    transition: var(--transition);
    position: relative;
}

.qr-wrapper::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.qr-wrapper:hover::before {
    opacity: 1;
}

.qr-wrapper:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 
        0 12px 40px rgba(0, 240, 255, 0.5),
        0 0 80px rgba(112, 0, 255, 0.3);
}

.qr-code {
    width: 200px;
    height: 200px;
    display: block;
    border-radius: 10px;
}

.qr-label {
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===== ENHANCED BUTTONS ===== */
.cta-button, .submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    background-size: 200% 200%;
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 
        0 8px 30px rgba(0, 240, 255, 0.4),
        0 0 60px rgba(112, 0, 255, 0.3);
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInDelay 1s ease-out 0.9s both;
}

.cta-button::before, .submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.cta-button:hover::before, .submit-button:hover::before {
    left: 100%;
}

.cta-button:hover, .submit-button:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 12px 40px rgba(0, 240, 255, 0.6),
        0 0 80px rgba(112, 0, 255, 0.5);
    background-position: 100% 50%;
}

.cta-button:active, .submit-button:active {
    transform: translateY(-2px);
}

.button-icon {
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .button-icon,
.submit-button:hover .button-icon {
    transform: translateX(8px);
}

.back-button {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 0.7rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.back-button:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 240, 255, 0.1);
    transform: translateX(-5px);
}

/* ===== ENHANCED CATEGORY CARDS ===== */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.section-subtitle {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.category-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.category-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.3), transparent);
    transition: width 0.6s, height 0.6s;
}

.category-card:hover::after {
    width: 300px;
    height: 300px;
}

.category-card:hover::before,
.category-card:focus::before {
    opacity: 0.15;
}

.category-card:hover,
.category-card:focus {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 
        0 15px 40px rgba(0, 240, 255, 0.4),
        0 0 80px rgba(112, 0, 255, 0.3);
}

.category-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: iconBounce 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.5));
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.category-card:hover .category-icon {
    animation: iconSpin 0.6s ease-in-out;
}

@keyframes iconSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 700;
}

.category-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== ENHANCED FORM STYLES ===== */
.form-card {
    max-width: 650px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid var(--glass-border);
    border-radius: 15px;
    color: var(--text-primary);
    font-size: 1.05rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 240, 255, 0.15);
    background: rgba(255, 255, 255, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input[type="file"] {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed var(--glass-border);
    border-radius: 15px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.form-group input[type="file"]:hover {
    border-color: var(--primary);
    background: rgba(0, 240, 255, 0.1);
}

.photo-preview {
    margin-top: 1.5rem;
    text-align: center;
}

.photo-preview img {
    max-width: 220px;
    max-height: 220px;
    border-radius: 15px;
    border: 3px solid var(--primary);
    box-shadow: 0 8px 30px rgba(0, 240, 255, 0.4);
}

/* ===== ENHANCED RADIO BUTTONS ===== */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.radio-label {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--glass-border);
    border-radius: 15px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.radio-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.2), transparent);
    transition: left 0.5s;
}

.radio-label:hover::before {
    left: 100%;
}

.radio-label:hover {
    border-color: var(--primary);
    background: rgba(0, 240, 255, 0.1);
    transform: translateX(5px);
}

.radio-label input[type="radio"] {
    margin-right: 1rem;
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
    cursor: pointer;
}

.radio-label span {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1.05rem;
}

/* ===== SUCCESS ANIMATION ===== */
.success-card {
    text-align: center;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--success), #00cc70);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    animation: successPop 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 
        0 0 60px rgba(0, 255, 136, 0.6),
        0 0 100px rgba(0, 255, 136, 0.3);
}

@keyframes successPop {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.3) rotate(180deg);
    }
    100% {
        transform: scale(1) rotate(360deg);
        opacity: 1;
    }
}

.success-message {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 2rem 0;
}

/* ===== FOOTER ===== */
.footer {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* ===== LOADING ANIMATION ===== */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== SCROLL ANIMATIONS ===== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .glass-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .name-title {
        font-size: 2.5rem;
    }

    .profile-image-wrapper {
        width: 180px;
        height: 180px;
    }

    .category-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-button, .submit-button {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .info-chips {
        flex-direction: column;
        gap: 0.75rem;
    }

    .chip {
        width: 100%;
        text-align: center;
    }

    .qr-code {
        width: 160px;
        height: 160px;
    }

    .category-icon {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .name-title {
        font-size: 2rem;
    }

    .profile-image-wrapper {
        width: 150px;
        height: 150px;
    }

    .glass-card {
        padding: 1.5rem 1rem;
    }

    .category-card {
        padding: 2rem 1.5rem;
    }
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
}

/* ===== ACCESSIBILITY ===== */
:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 5px;
    border-radius: 8px;
}

@media (prefers-color-scheme: light) {
    :root {
        --text-primary: #ffffff;
        --text-secondary: #b0b0c0;
    }
}

/* ===== ENHANCED CONDITIONAL FIELDS ===== */
.conditional-fields {
    display: none;
    animation: fadeIn 0.4s ease-out;
}

.conditional-fields.active {
    display: block;
}

/* ===== HONEYPOT ===== */
.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
}

/* ===== reCAPTCHA PLACEHOLDER ===== */
.recaptcha-placeholder {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 165, 0, 0.1);
    border: 2px solid rgba(255, 165, 0, 0.4);
    border-radius: 15px;
    text-align: center;
}

.recaptcha-placeholder p {
    color: #ffaa00;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1.05rem;
}

.recaptcha-placeholder small {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ===== SELECTION HIGHLIGHT ===== */
::selection {
    background: var(--primary);
    color: var(--bg-dark);
}

::-moz-selection {
    background: var(--primary);
    color: var(--bg-dark);
}

/* ===== TOOLTIP ANIMATIONS ===== */
[data-tooltip] {
    position: relative;
}

[data-tooltip]:hover::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    border-radius: 8px;
    white-space: nowrap;
    margin-bottom: 0.5rem;
    animation: tooltipFade 0.3s ease-in;
}

@keyframes tooltipFade {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .stars, .twinkling, body::before {
        display: none;
    }
    
    .glass-card {
        background: white;
        color: black;
        border: 1px solid #ccc;
    }
}

/* ===== ADDITIONAL ANIMATIONS ===== */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.shimmer {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* ===== GLOW EFFECTS ===== */
.glow-text {
    text-shadow: 
        0 0 10px var(--primary),
        0 0 20px var(--primary),
        0 0 30px var(--primary);
}

.glow-box {
    box-shadow: 
        0 0 20px var(--primary),
        0 0 40px var(--primary),
        0 0 60px var(--primary);
}

/* ===== FADE ANIMATIONS ===== */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in-down {
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== END OF ENHANCED STYLES ===== */