/* ========== ULTIMATE CYBERPUNK STYLES ========== */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00ff9d;
    --primary-dark: #00cc7d;
    --secondary-color: #00b8ff;
    --accent-purple: #7000ff;
    --accent-pink: #ff00aa;
    --accent-red: #ff4444;
    --accent-orange: #ffaa00;
    --accent-gold: #ffd700;
    --dark-bg: #0a0a0f;
    --darker-bg: #050507;
    --card-bg: #111117;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --success: #00ff9d;
    --warning: #ffaa00;
    --danger: #ff4444;
    
    /* RGB versions for rgba */
    --primary-rgb: 0, 255, 157;
    --purple-rgb: 112, 0, 255;
    --pink-rgb: 255, 0, 170;
}

/* ===== ULTIMATE BACKGROUND ===== */
body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Cyber Grid Background */
.cyber-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 157, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 157, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    pointer-events: none;
    animation: gridMove 20s linear infinite;
}

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

/* Gradient Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(var(--purple-rgb), 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(var(--primary-rgb), 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(var(--pink-rgb), 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Particle Field */
.particle-field {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

/* ===== ULTIMATE HERO SECTION ===== */
.hero {
    text-align: center;
    padding: 4rem 0 2rem;
    position: relative;
}

/* Photo Circle with 3D Effect */
.photo-circle {
    width: 180px;
    height: 180px;
    margin: 0 auto 2rem;
    position: relative;
    cursor: pointer;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.photo-circle:hover {
    transform: rotateY(10deg) rotateX(5deg);
}

.photo-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px var(--primary-color);
    animation: glowPulse 3s infinite;
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 30px var(--primary-color); }
    50% { box-shadow: 0 0 50px var(--primary-color), 0 0 80px var(--accent-purple); }
}

.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.photo-circle:hover .profile-photo {
    transform: scale(1.1);
}

.photo-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle at center, var(--primary-color) 0%, transparent 70%);
    opacity: 0.3;
    filter: blur(20px);
    z-index: -1;
}

.photo-ring-outer {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--primary-color);
    border-bottom-color: var(--accent-pink);
    animation: spin 4s linear infinite;
}

.photo-ring-inner {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-left-color: var(--accent-purple);
    border-right-color: var(--accent-orange);
    animation: spinReverse 6s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spinReverse {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}

.status-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-purple));
    color: var(--dark-bg);
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 0 20px var(--primary-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 20px var(--primary-color); }
    50% { box-shadow: 0 0 30px var(--primary-color), 0 0 40px var(--accent-purple); }
}

/* Glitch Name */
.glitch-wrapper {
    position: relative;
    margin-bottom: 1rem;
    display: inline-block;
}

.glitch-name {
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-primary);
    position: relative;
    text-shadow: 
        0.05em 0 0 rgba(255, 0, 0, 0.75),
        -0.05em -0.025em 0 rgba(0, 255, 255, 0.75),
        0.025em 0.05em 0 rgba(255, 255, 0, 0.75);
    animation: glitch 3s infinite;
    letter-spacing: 0.15em;
}

.glitch-name::before,
.glitch-name::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
}

.glitch-name::before {
    animation: glitchTop 3s infinite;
    color: var(--accent-pink);
    z-index: -1;
}

.glitch-name::after {
    animation: glitchBottom 3s infinite;
    color: var(--primary-color);
    z-index: -2;
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-3px, 3px); }
    40% { transform: translate(-3px, -3px); }
    60% { transform: translate(3px, 3px); }
    80% { transform: translate(3px, -3px); }
}

@keyframes glitchTop {
    0%, 100% { clip-path: inset(0 0 70% 0); transform: translate(0); }
    20% { clip-path: inset(0 0 70% 0); transform: translate(-3px, 3px); }
    40% { clip-path: inset(0 0 70% 0); transform: translate(3px, -3px); }
    60% { clip-path: inset(0 0 70% 0); transform: translate(3px, 3px); }
    80% { clip-path: inset(0 0 70% 0); transform: translate(-3px, -3px); }
}

@keyframes glitchBottom {
    0%, 100% { clip-path: inset(70% 0 0 0); transform: translate(0); }
    20% { clip-path: inset(70% 0 0 0); transform: translate(3px, -3px); }
    40% { clip-path: inset(70% 0 0 0); transform: translate(-3px, 3px); }
    60% { clip-path: inset(70% 0 0 0); transform: translate(-3px, -3px); }
    80% { clip-path: inset(70% 0 0 0); transform: translate(3px, 3px); }
}

.name-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 5s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

.name-underline {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--accent-pink), var(--accent-purple), transparent);
    animation: underlineFlow 3s linear infinite;
}

@keyframes underlineFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* Title Container */
.title-container {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 1rem 0 2rem;
    min-height: 3.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.2rem;
}

.typing-animation {
    color: var(--text-primary);
}

.cursor-blink {
    color: var(--primary-color);
    animation: blink 1s infinite;
    font-weight: 300;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Badge Container */
.badge-container {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 2rem 0;
}

.badge.cyber {
    background: rgba(var(--primary-rgb), 0.1);
    padding: 0.6rem 1.5rem;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    transition: all 0.3s ease;
}

.badge.cyber:hover {
    background: rgba(var(--primary-rgb), 0.2);
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px -5px var(--primary-color);
}

.badge.cyber i {
    color: var(--primary-color);
}

/* Live Stats */
.live-stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin: 2.5rem 0;
    padding: 1.5rem 2.5rem;
    background: rgba(17, 17, 23, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 60px;
    border: 1px solid rgba(var(--primary-rgb), 0.2);
}

.stat-block {
    text-align: center;
    position: relative;
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    text-shadow: 0 0 20px var(--primary-color);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== ULTIMATE NAVIGATION ===== */
.nav-cyber {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 2rem 0;
    padding: 0.8rem;
    background: rgba(17, 17, 23, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 60px;
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    position: sticky;
    top: 20px;
    z-index: 100;
}

.nav-btn {
    background: transparent;
    color: var(--text-secondary);
    padding: 0.8rem 1.5rem;
    border-radius: 40px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid transparent;
    position: relative;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.nav-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-purple));
    color: var(--dark-bg);
    font-weight: 600;
    box-shadow: 0 10px 20px -5px var(--primary-color);
}

.nav-btn i {
    font-size: 1.1rem;
}

.tooltip {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: var(--text-primary);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    border: 1px solid var(--primary-color);
    z-index: 200;
}

.nav-btn:hover .tooltip {
    opacity: 1;
    bottom: -25px;
}

/* ===== ULTIMATE CONTENT AREA ===== */
.content-area {
    background: rgba(17, 17, 23, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 2.5rem;
    margin: 2rem 0;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    min-height: 400px;
    transition: all 0.3s ease;
}

.content-area.cyber-panel {
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(var(--primary-rgb), 0.05);
}

/* Loading Animation */
.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.cyber-loader {
    width: 80px;
    height: 80px;
    border: 4px solid transparent;
    border-top-color: var(--primary-color);
    border-right-color: var(--accent-purple);
    border-bottom-color: var(--accent-pink);
    border-left-color: var(--accent-orange);
    border-radius: 50%;
    animation: cyberSpin 1.5s linear infinite;
    margin-bottom: 2rem;
}

@keyframes cyberSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    color: var(--primary-color);
    font-size: 1rem;
    letter-spacing: 5px;
    animation: loadingPulse 2s infinite;
}

@keyframes loadingPulse {
    0%, 100% { opacity: 1; text-shadow: 0 0 10px var(--primary-color); }
    50% { opacity: 0.5; text-shadow: 0 0 20px var(--primary-color); }
}

/* ===== ULTIMATE REQUEST SECTION ===== */
.request-cyber {
    margin: 3rem 0;
    background: rgba(17, 17, 23, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 2.5rem;
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    position: relative;
    overflow: hidden;
}

.request-cyber::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(var(--primary-rgb), 0.1), transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.request-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.request-header i {
    font-size: 2.5rem;
    color: var(--primary-color);
    filter: drop-shadow(0 0 20px var(--primary-color));
}

.request-header h3 {
    color: var(--text-primary);
    font-size: 1.8rem;
    font-weight: 600;
}

.request-description {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.request-input-group {
    display: flex;
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.request-input-group input {
    flex: 1;
    padding: 1.2rem 1.8rem;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(var(--primary-rgb), 0.3);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.request-input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 5px rgba(var(--primary-rgb), 0.1);
}

.request-input-group input::placeholder {
    color: var(--text-secondary);
    opacity: 0.5;
}

.request-input-group button {
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-purple));
    border: none;
    border-radius: 50px;
    color: var(--dark-bg);
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.request-input-group button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 30px -10px var(--primary-color);
}

.btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3), transparent 70%);
    animation: rotate 10s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.request-input-group button:hover .btn-glow {
    opacity: 1;
}

.request-feedback {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 1rem;
    min-height: 2rem;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

/* ===== ULTIMATE FEATURES GRID ===== */
.features-grid-cyber {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.feature-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-row .full-width {
    grid-column: span 2;
}

.cyber-card {
    background: rgba(17, 17, 23, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 1.5rem;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cyber-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px -15px var(--primary-color);
    transform: translateY(-5px);
}

.cyber-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(var(--primary-rgb), 0.05), transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.card-header i {
    font-size: 1.8rem;
    color: var(--primary-color);
    filter: drop-shadow(0 0 15px var(--primary-color));
}

.card-header h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 500;
}

/* ===== ULTIMATE FOOTER ===== */
.footer-cyber {
    margin-top: 4rem;
    background: rgba(5, 5, 7, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 40px 40px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--accent-pink), var(--accent-purple), transparent);
    animation: scan 3s linear infinite;
}

@keyframes scan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-block {
    padding: 0 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px var(--primary-color);
}

.footer-tagline {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-style: italic;
}

.personal-data {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 1rem;
}

.data-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
    color: var(--text-secondary);
}

.data-row i {
    color: var(--primary-color);
    width: 20px;
}

.footer-block h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    text-shadow: 0 0 15px var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin: 0.8rem 0;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.contact-item {
    padding: 0.6rem;
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
}

.contact-item.whatsapp:hover {
    background: #25D366;
    transform: translateY(-2px);
}

.contact-item.telegram:hover {
    background: #0088cc;
    transform: translateY(-2px);
}

.contact-item.tiktok:hover {
    background: #000000;
    transform: translateY(-2px);
}

.contact-item.email:hover {
    background: #EA4335;
    transform: translateY(-2px);
}

/* Tool Mini Cards */
.tool-mini {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    margin: 0.8rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tool-mini:hover {
    background: rgba(var(--primary-rgb), 0.1);
    transform: translateX(5px);
    box-shadow: 0 5px 15px -5px var(--primary-color);
}

.tool-mini i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.tool-mini div {
    display: flex;
    flex-direction: column;
}

.tool-mini strong {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.tool-mini span {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.copyright {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px var(--primary-color);
}

.footer-scanner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation: scan 4s linear infinite;
}

/* ===== ULTIMATE FLOATING BUTTONS ===== */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.fab-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.5);
}

.fab-btn:hover {
    transform: scale(1.1) translateY(-5px);
}

.fab-btn .fab-tooltip {
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.9);
    color: var(--text-primary);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    border: 1px solid var(--primary-color);
}

.fab-btn:hover .fab-tooltip {
    opacity: 1;
    right: 80px;
}

.voice-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-purple));
    color: var(--dark-bg);
}

.reader-btn {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    color: white;
}

.theme-btn {
    background: linear-gradient(135deg, var(--accent-pink), var(--secondary-color));
    color: white;
}

.top-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: white;
    display: none;
}

/* ===== ADMIN CORNER ===== */
.admin-corner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.admin-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-purple));
    color: var(--dark-bg);
    padding: 0.8rem 1.5rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 10px 20px -5px var(--primary-color);
    position: relative;
    overflow: hidden;
}

.pulse-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    box-shadow: 0 0 0 0 var(--primary-color);
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(var(--primary-rgb), 0); }
    100% { box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .glitch-name {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .glitch-name {
        font-size: 2.2rem;
    }
    
    .title-container {
        font-size: 1.3rem;
    }
    
    .badge-container {
        gap: 0.5rem;
    }
    
    .badge.cyber {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
    
    .live-stats {
        gap: 1.5rem;
        padding: 1rem;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .nav-cyber {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding: 0.5rem;
        justify-content: flex-start;
    }
    
    .nav-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }
    
    .request-input-group {
        flex-direction: column;
    }
    
    .feature-row {
        grid-template-columns: 1fr;
    }
    
    .feature-row .full-width {
        grid-column: span 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .floating-actions {
        bottom: 20px;
        right: 20px;
    }
    
    .fab-btn {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .admin-corner {
        bottom: 20px;
        left: 20px;
    }
    
    .admin-link span:not(.fab-tooltip) {
        display: none;
    }
    
    .admin-link {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
    }
}

@media (max-width: 480px) {
    .glitch-name {
        font-size: 1.5rem;
    }
    
    .live-stats {
        flex-wrap: wrap;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-glow {
    text-shadow: 0 0 10px var(--primary-color);
}

.box-glow {
    box-shadow: 0 0 30px var(--primary-color);
}

.hidden {
    display: none;
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
/* ===== ULTIMATE GOOGLE FORM STYLING ===== */
.request-cyber {
    background: linear-gradient(135deg, rgba(112,0,255,0.15), rgba(0,255,157,0.15));
    border-radius: 40px;
    padding: 2.5rem;
    margin: 3rem 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.request-cyber::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(112,0,255,0.1), transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 0;
}

.request-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.request-header i {
    font-size: 3rem;
    color: #7000ff;
    filter: drop-shadow(0 0 30px #7000ff);
    animation: bounce 3s ease-in-out infinite;
}

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

.request-header h3 {
    color: white;
    font-size: 2.2rem;
    background: linear-gradient(135deg, #00ff9d, #7000ff, #ff00aa);
    -webkitbackground-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.request-description {
    color: #b3b3b3;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

/* Google Form iframe container */
.request-cyber iframe {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 20px;
}

.request-cyber iframe:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 50px -15px #00ff9d !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .request-cyber {
        padding: 1.5rem;
    }
    
    .request-header h3 {
        font-size: 1.5rem;
    }
    
    .request-header i {
        font-size: 2rem;
    }
    
    .request-description {
        font-size: 1rem;
    }
}
/* ===== GOOGLE FORM FIXES ===== */
.request-cyber iframe {
    background: transparent;
    min-height: 1100px;
    width: 100%;
}

.request-cyber iframe body {
    background: transparent !important;
}

/* Ensure form is visible and scrollable */
.request-cyber {
    overflow: visible !important;
}

.request-cyber > div {
    overflow: visible !important;
}

/* Fix for mobile */
@media (max-width: 768px) {
    .request-cyber iframe {
        height: 1300px !important;
    }
    
    .request-cyber {
        padding: 1.5rem !important;
    }
}
/* ===== FIXED GOOGLE FORM STYLES ===== */
#form-container {
    min-height: 200px;
    position: relative;
}

.cyber-loader {
    width: 50px;
    height: 50px;
    border: 3px solid transparent;
    border-top-color: #00ff9d;
    border-right-color: #7000ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cyber-button {
    background: linear-gradient(135deg, #00ff9d, #7000ff);
    color: black;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cyber-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px #00ff9d;
}

/* Ensure form is clickable */
.request-cyber iframe {
    pointer-events: auto;
    position: relative;
    z-index: 10;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .request-cyber iframe {
        height: 1300px;
    }
    
    .request-cyber {
        padding: 1.5rem;
    }
}