/* Cyberpunk Alert Styles */
.cyber-alert {
    position: fixed;
    top: 20%;
    right: 20px;
    z-index: 10000;
    background: rgba(10, 12, 20, 0.95);
    border: 1px solid var(--cyber-cyan);
    border-left: 5px solid var(--cyber-cyan);
    padding: 20px;
    min-width: 320px;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
    backdrop-filter: blur(10px);
    clip-path: polygon(
        0 0, 100% 0, 
        100% calc(100% - 15px), calc(100% - 15px) 100%, 
        0 100%
    );
    animation: slideInRight 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutRight {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

.cyber-alert-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.cyber-alert-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyber-cyan);
    font-size: 1.5rem;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

.cyber-alert-text h5 {
    color: var(--cyber-cyan);
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.cyber-alert-text p {
    color: #e0e0e0 !important;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cyber-alert-close {
    background: transparent;
    border: none;
    color: var(--cyber-text-muted);
    cursor: pointer;
    padding: 0;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    margin-left: auto;
}

.cyber-alert-close:hover {
    color: var(--cyber-pink);
}

.cyber-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--cyber-cyan);
    opacity: 0.5;
    animation: scanDown 2s linear infinite;
    z-index: 1;
}

@keyframes scanDown {
    0% { top: 0; opacity: 0; }
    50% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* Cyberpunk Footer Styles */
.footer {
    background-color: #020204 !important;
    border-top: 1px solid rgba(0, 243, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyber-cyan), transparent);
    opacity: 0.5;
}

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-logo {
    height: 40px;
    width: auto;
    border-radius: 50%;
    border: 1px solid var(--cyber-cyan);
}

.footer-heading {
    position: relative;
    padding-bottom: 15px;
    color: var(--cyber-cyan) !important;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--cyber-pink);
    box-shadow: 0 0 10px var(--cyber-pink);
}

.footer-links a {
    color: var(--cyber-text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 10px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.footer-links a::before {
    content: '>';
    position: absolute;
    left: -15px;
    opacity: 0;
    color: var(--cyber-pink);
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    left: 0;
    opacity: 1;
}

.social-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid transparent;
    clip-path: polygon(10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 10%);
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--cyber-cyan);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
}

.cyber-input-group .form-control {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    color: #fff;
    font-family: var(--font-mono);
}

.cyber-input-group .form-control:focus {
    background: rgba(0, 243, 255, 0.05);
    border-color: var(--cyber-cyan);
    box-shadow: none;
}

.cyber-input-group .btn {
    border-radius: 0;
    background: var(--cyber-pink);
    border: none;
}

.cyber-input-group .btn:hover {
    background: #ff1a53;
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}
