:root {
    --bg: #030303;
    --blue: #0a84ff;
    --purple: #bf5af2;
    --cyan: #5ac8fa;
    --accent: #3b82f6;
    --accent-glow: rgba(59, 130, 246, 0.1);
    --glass-border: rgba(255, 255, 255, 0.05);
}

/* .spotlight, .cyber-grid, .reveal → global.css'den miras alınır */

.text-multi-gradient { 
    background: linear-gradient(to bottom, #ffffff 40%, rgba(255,255,255,0.7) 100%); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    display: inline-block;
    padding-right: 0.15em;
    margin-right: -0.15em;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    background: rgba(10, 132, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(10, 132, 255, 0.2);
    border-radius: 100px;
    box-shadow: 0 0 20px rgba(10, 132, 255, 0.1);
}
.badge-dot { width: 10px; height: 10px; background: #10b981; border-radius: 50%; box-shadow: 0 0 15px rgba(16, 185, 129, 0.6); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.3); opacity: 0.5; } }

.fiber-particle {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--blue), transparent);
    height: 1px;
    pointer-events: none;
    z-index: 0;
}

.info-badge {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--blue) 0%, #0056b3 100%);
    padding: 14px 35px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 900;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 20;
    box-shadow: 0 15px 45px rgba(10, 132, 255, 0.4), inset 0 2px 5px rgba(255,255,255,0.3);
    animation: badgeFloat 3s ease-in-out infinite;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    overflow: hidden;
}

.info-badge .badge-dot {
    background: #ffffff;
    box-shadow: 0 0 15px rgba(255,255,255,0.8);
}

.info-badge::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes badgeFloat {
    0%, 100% { transform: translate(-50%, 0px); }
    50% { transform: translate(-50%, -10px); }
}

details summary::-webkit-details-marker { display: none; }