/* General Styles */
body {
    font-family: 'Rajdhani', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.1rem;
    margin: 0;
    padding: 0;
    background: #020617; /* Base oscura para el canvas futurista */
    color: #e2e8f0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* El pseudo-elemento estático queda obsoleto por el canvas de cyber-bg.js pero añadimos un overlay tipo grilla sutil */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(rgba(0, 243, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 243, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
}


/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    box-sizing: border-box;
    background: rgba(5, 15, 30, 0.9);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 50, 255, 0.2);
    border-bottom: 1px solid rgba(0, 100, 255, 0.3);
    backdrop-filter: blur(10px);
}

.logo h1 {
    color: #e0e0e0; /* Plata */
    margin: 0;
    font-size: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: glowSilver 2s ease-in-out infinite alternate;
}

@keyframes glowSilver {
    from { text-shadow: 0 0 5px #c0c0c0, 0 0 10px #0056b3; }
    to { text-shadow: 0 0 15px #e0e0e0, 0 0 25px #007bff; }
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

nav a {
    color: #c0c0c0; /* Plata oscuro/Elegante */
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

nav a:hover {
    color: #e0e0e0; /* Plata brillante */
    text-shadow: 0 0 8px rgba(0, 191, 255, 0.8);
}

/* Botón de Login/Registro en el Header */
nav ul li:last-child a {
    background: linear-gradient(45deg, #004080, #007bff);
    color: #e0e0e0;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
    border: 1px solid rgba(192, 192, 192, 0.3);
}

nav ul li:last-child a:hover {
    background: linear-gradient(45deg, #0056b3, #00aaff);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.8);
    transform: scale(1.05);
}

/* Hamburger Menu Button */
.menu-toggle {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 100; /* Above the nav menu */
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
}

/* Main */
main {
    margin-top: 80px;
    padding: 2rem;
}

/* Slider */
.slider-container {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 550px;
    max-height: 850px;
    overflow: hidden;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slideIn 1s;
}

@keyframes slideIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
}

/* Reservas */
.form-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.form {
    background: rgba(2, 10, 25, 0.7);
    padding: 2rem;
    border-radius: 12px;
    width: 320px;
    border: 1px solid rgba(0, 243, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 150, 255, 0.2), inset 0 0 10px rgba(0, 243, 255, 0.05);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.form:hover {
    border-color: rgba(0, 243, 255, 0.5);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.3), inset 0 0 15px rgba(0, 243, 255, 0.1);
    transform: translateY(-5px);
}

.form input, .form select, .form button, .form textarea {
    display: block;
    width: 100%;
    margin: 0.8rem 0;
    padding: 0.8rem;
    background: rgba(0, 15, 30, 0.8);
    border: 1px solid rgba(0, 243, 255, 0.3);
    color: #00f3ff;
    border-radius: 6px;
    font-size: 1.1rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.file-label {
    display: block;
    margin: 0.8rem 0 0.3rem;
    color: rgba(226, 232, 240, 0.8);
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
}

.file-label input[type="file"] {
    margin-top: 0.4rem;
}

.form input::placeholder, .form textarea::placeholder {
    color: rgba(0, 243, 255, 0.4);
    font-family: 'Rajdhani', sans-serif;
}

.form input:focus, .form select:focus, .form textarea:focus {
    border-color: #00f3ff;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
}

.form button {
    background: linear-gradient(90deg, #003366, #007bff);
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 1.5rem;
}

.form button:hover {
    background: linear-gradient(90deg, #0056b3, #00f3ff);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.6);
}

/* Barberos: Showroom fotográfico */
.barberos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.barbero {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(0, 243, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 150, 255, 0.2);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    animation: fadeInUp 1s;
    transition: all 0.3s ease;
}

.barbero:hover {
    border-color: rgba(0, 243, 255, 0.6);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.4);
    transform: translateY(-6px);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.barbero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.barbero:hover img {
    transform: scale(1.08);
}

.barbero-name {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.2rem 1rem;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.95) 20%, transparent 100%);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.6);
}

/* Página individual de peluquero: Showroom */
.barber-hero {
    position: relative;
    width: 100%;
    height: 420px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 243, 255, 0.25);
    box-shadow: 0 0 30px rgba(0, 150, 255, 0.2);
}

.barber-hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.barber-hero-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2.5rem 2rem;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.95) 15%, rgba(2, 6, 23, 0.5) 65%, transparent 100%);
}

.barber-hero-overlay h1 {
    margin: 0;
    font-size: 2.5rem;
    color: #fff;
    text-shadow: 0 0 15px rgba(0, 243, 255, 0.6);
}

.barber-hero-alias {
    color: #00f3ff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0.5rem 0 0;
    font-family: 'Orbitron', sans-serif;
}

.barber-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.barber-info-card {
    flex: 1;
    min-width: 280px;
    background: rgba(2, 10, 25, 0.7);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
}

.barber-info-card h2 {
    margin-top: 0;
    font-size: 1.3rem;
}

.specialty-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.specialty-chip {
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.4);
    color: #00f3ff;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.service-card {
    background: rgba(2, 10, 25, 0.7);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 10px;
    padding: 1.2rem;
    text-align: center;
}

.service-card h4 {
    margin: 0 0 0.5rem;
    color: #e2e8f0;
}

.service-card p {
    margin: 0.3rem 0 0;
    color: #00f3ff;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
}

.service-card .service-price-domicilio {
    color: #7ee8ff;
    opacity: 0.85;
}

/* Panel del Peluquero: pestañas */
.panel-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 243, 255, 0.2);
}

.panel-tab {
    background: transparent;
    border: none;
    color: rgba(226, 232, 240, 0.6);
    padding: 0.8rem 1.5rem;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.panel-tab.active {
    color: #00f3ff;
    border-bottom-color: #00f3ff;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.6);
}

.tab-badge {
    display: inline-block;
    background: #ff4d6d;
    color: #fff;
    border-radius: 50%;
    min-width: 1.4rem;
    height: 1.4rem;
    line-height: 1.4rem;
    text-align: center;
    font-size: 0.75rem;
    font-family: 'Rajdhani', sans-serif;
    margin-left: 0.4rem;
}

/* Panel del Peluquero: reservas / agenda */
.new-reservations-banner {
    background: rgba(255, 77, 109, 0.15);
    border: 1px solid rgba(255, 77, 109, 0.5);
    color: #ff9bae;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
}

.agenda-day {
    margin-bottom: 1.5rem;
}

.agenda-day h3 {
    color: #00f3ff;
    font-size: 1.1rem;
    text-transform: capitalize;
    margin-bottom: 0.8rem;
}

.agenda-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    background: rgba(2, 10, 25, 0.7);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 8px;
    padding: 0.9rem 1.2rem;
    margin-bottom: 0.6rem;
}

.agenda-item-new {
    border-color: rgba(255, 77, 109, 0.5);
    box-shadow: 0 0 15px rgba(255, 77, 109, 0.2);
}

.agenda-time {
    font-family: 'Orbitron', sans-serif;
    color: #00f3ff;
    font-weight: 700;
}

.agenda-client {
    font-weight: 600;
}

.agenda-type {
    color: rgba(226, 232, 240, 0.7);
    font-size: 0.9rem;
}

.agenda-address {
    color: rgba(226, 232, 240, 0.5);
    font-size: 0.85rem;
}

.agenda-new-tag {
    background: #ff4d6d;
    color: #fff;
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    margin-left: auto;
}

/* Admin: Login */
#logoutBtn {
    background: transparent;
    color: #c0c0c0;
    border: 1px solid rgba(0, 243, 255, 0.4);
    border-radius: 20px;
    padding: 0.5rem 1.2rem;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

#logoutBtn:hover {
    color: #fff;
    border-color: #00f3ff;
    box-shadow: 0 0 12px rgba(0, 243, 255, 0.5);
}

#loginSection {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Admin: Peluqueros */
.barbers-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 1rem 0 2rem;
}

.barber-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(2, 10, 25, 0.7);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 243, 255, 0.2);
}

.barber-card p {
    margin: 0.3rem 0 0;
    color: rgba(226, 232, 240, 0.7);
    font-size: 0.95rem;
}

.delete-btn {
    background: transparent;
    color: #ff4d6d;
    border: 1px solid #ff4d6d;
    border-radius: 6px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.delete-btn:hover {
    background: #ff4d6d;
    color: #020617;
    box-shadow: 0 0 15px rgba(255, 77, 109, 0.6);
}

/* Admin: Resumen de Servicios */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin-top: 1.5rem;
}

.stat-card {
    background: rgba(2, 10, 25, 0.7);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: 10px;
    padding: 1.2rem;
    text-align: center;
}

.stat-card h4 {
    margin: 0 0 0.5rem;
    color: #00f3ff;
    font-size: 1rem;
}

.stat-card p {
    margin: 0.3rem 0;
    color: #e2e8f0;
}

/* Galería de Cortes: banner horizontal */
.gallery-banner {
    display: flex;
    gap: 1.2rem;
    overflow-x: auto;
    padding: 0.5rem 0.5rem 1.5rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 243, 255, 0.5) rgba(2, 10, 25, 0.4);
}

.gallery-banner::-webkit-scrollbar {
    height: 8px;
}

.gallery-banner::-webkit-scrollbar-track {
    background: rgba(2, 10, 25, 0.4);
    border-radius: 4px;
}

.gallery-banner::-webkit-scrollbar-thumb {
    background: rgba(0, 243, 255, 0.5);
    border-radius: 4px;
}

.gallery-item {
    position: relative;
    flex: 0 0 auto;
    width: 280px;
    height: 340px;
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    scroll-snap-align: start;
    border: 1px solid rgba(0, 243, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 150, 255, 0.2);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    border-color: rgba(0, 243, 255, 0.6);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.4);
    transform: translateY(-6px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.95) 20%, transparent 100%);
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
}

/* Contacto */
#map iframe {
    width: 100%;
    height: 300px;
}

.whatsapp-btn {
    display: inline-block;
    background: #25d366;
    color: white;
    padding: 1rem;
    text-decoration: none;
    border-radius: 8px;
    margin: 1rem 0;
}

/* Footer */
footer {
    background: rgba(2, 6, 23, 0.8);
    padding: 3rem 1rem;
    text-align: center;
    border-top: 1px solid rgba(0, 243, 255, 0.2);
    box-shadow: 0 -5px 20px rgba(0, 243, 255, 0.05);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-links a {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    color: #00f3ff;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    background: rgba(0, 15, 30, 0.5);
    border: 1px solid rgba(0, 243, 255, 0.3);
    overflow: hidden;
    transition: 0.2s;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.1);
    /* Clip-path para darle bordes cortados hexagonales/futuristas */
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.footer-links a:hover {
    color: #fff;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid #00f3ff;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.6), inset 0 0 10px rgba(0, 243, 255, 0.4);
    transform: translateY(-3px);
}

/* Efecto escaner luminoso interno en el hover */
.footer-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(0, 243, 255, 0.4), transparent);
    transform: skewX(-45deg);
    transition: 0.5s;
}

.footer-links a:hover::before {
    left: 200%;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 1rem;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .menu-toggle {
        display: flex;
        margin-right: 0.5rem;
    }

    #main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 250px;
        background: rgba(2, 6, 23, 0.98);
        padding-top: 80px;
        transition: right 0.3s ease-in-out;
        z-index: 50;
        box-shadow: -5px 0 15px rgba(0, 243, 255, 0.2);
        border-left: 1px solid rgba(0, 243, 255, 0.3);
    }

    #main-nav.active {
        right: 0;
    }

    ul {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    nav a {
        font-size: 1.2rem;
        display: block;
        padding: 0.5rem;
    }

    main {
        padding: 1rem;
        margin-top: 70px;
    }

    .slider-container {
        height: 50vh;
        min-height: 320px;
        max-height: 450px;
    }

    .barber-hero {
        height: 260px;
    }

    .barber-hero-overlay h1 {
        font-size: 1.8rem;
    }

    .barber-info {
        flex-direction: column;
    }

    .form-container {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .form {
        width: 100%;
        max-width: 400px;
        padding: 1.5rem;
    }

    .barberos-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    footer {
        padding: 2rem 1rem;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .footer-links a {
        width: 80%;
        max-width: 280px;
    }

    #map iframe {
        height: 250px;
    }

    .gallery-item {
        width: 200px;
        height: 260px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .form {
        padding: 1rem;
    }
    
    .form input, .form select, .form button, .form textarea {
        font-size: 1rem;
        padding: 0.6rem;
    }
    
    .footer-links a {
        font-size: 0.8rem;
    }
}

/* Cyber Modal System (Notifications) */
.cyber-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cyber-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.cyber-modal {
    background: rgba(2, 10, 25, 0.95);
    border: 2px solid #00f3ff;
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.4), inset 0 0 20px rgba(0, 243, 255, 0.15);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    width: 90%;
    max-width: 420px;
    transform: scale(0.8) translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cyber-modal-overlay.active .cyber-modal {
    transform: scale(1) translateY(0);
}

.cyber-modal h3 {
    color: #fff;
    margin-top: 0;
    font-size: 1.8rem;
    text-shadow: 0 0 10px #00f3ff;
}

.cyber-modal p {
    color: #e2e8f0;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    margin: 1.5rem 0 2rem;
}

.cyber-modal button {
    background: linear-gradient(90deg, #003366, #007bff);
    color: #fff;
    border: 1px solid #00f3ff;
    cursor: pointer;
    padding: 0.8rem 2.5rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border-radius: 6px;
    outline: none;
}

.cyber-modal button:hover {
    background: linear-gradient(90deg, #0056b3, #00f3ff);
    box-shadow: 0 0 25px rgba(0, 243, 255, 0.8);
}
