

/* Notification Styles */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--dark);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(57, 255, 20, 0.4);
    transform: translateY(100px);
    opacity: 0;
    transition: all var(--transition-speed);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--primary);
    height: 50px;
}

.notification.show {
    transform: translateY(0);
    opacity: 1;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    transition: all var(--transition-speed);
    z-index: 999;
    border: 2px solid var(--primary);
    font-size: 1.2rem;
}

.scroll-to-top.show {
    opacity: 1;
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(57, 255, 20, 0.4);
}

/* Footer Styles */
footer {
    width: 100%;
    background: linear-gradient(135deg, var(--darker) 0%, var(--darkest) 100%);
    border-top: 2px solid var(--primary);
    padding: 2rem 0;
    margin-top: 4rem;
    text-align: center;
}

.terminal-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-text {
    color: var(--text-secondary);
    font-family: var(--font-primary);
}

.telegram-link {
    color: var(--secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--secondary);
    border-radius: 8px;
    transition: all var(--transition-speed);
}

.telegram-link:hover {
    background: rgba(0, 255, 65, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
    transform: scale(1.05);
}

.footer-social {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.footer-social a {
    color: var(--text-secondary);
    font-size: 1.5rem;
    transition: all var(--transition-speed);
    padding: 0.5rem;
    border-radius: 8px;
}

.footer-social a:hover {
    color: var(--primary);
    transform: scale(1.2);
    text-shadow: 0 0 10px var(--primary);
}



/* Sidebar Tool Items */
.tools-list {
    padding: 1.5rem;
}

.tool-item {
    background: linear-gradient(135deg, var(--darkest) 0%, var(--darker) 100%);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
}

.tool-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.1), transparent);
    transition: left 0.5s;
}

.tool-item:hover::before {
    left: 100%;
}

.tool-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(57, 255, 20, 0.2);
}

.tool-item h3 {
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.tool-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tool-item a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--secondary);
    border-radius: 6px;
    transition: all var(--transition-speed);
}

.tool-item a:hover {
    background: rgba(0, 255, 65, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
    transform: scale(1.05);
}



/* Simplified Styles - Scroll Animations Removed for Better Performance */
.tools-container .tool-card {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: box-shadow 0.3s ease,
                background-color 0.3s ease,
                transform 0.2s ease;
    border: 1px solid rgba(57, 255, 20, 0.2);
}

.tools-container .tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(57, 255, 20, 0.2);
    z-index: 1;
}

.tool-category {
    color: var(--primary);
    position: relative;
}

/* Terminal Box - Simplified */
.terminal-box {
    position: relative;
    overflow: hidden;
}

/* Static Cyber Grid Background - No Animation */
.cyber-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(to right, rgba(57, 255, 20, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(57, 255, 20, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
    pointer-events: none;
}



/* Mobile Controls */
.mobile-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .footer-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        width: auto;
    }
    
    .tools-sidebar {
        width: 300px;
        right: -300px;
    }
    
    .mobile-nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 998;
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease;
        backdrop-filter: blur(3px);
    }
    
    .mobile-nav-overlay.active {
        display: block;
        opacity: 1;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -280px;
        width: 250px;
        height: 100vh;
        background: linear-gradient(135deg, var(--darker) 0%, var(--darkest) 100%);
        z-index: 999;
        display: flex;
        flex-direction: column;
        padding: 80px 15px 20px;
        transition: right 0.3s ease;
        overflow-y: auto;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        padding: 12px 15px;
        margin: 5px 0;
        border-radius: 5px;
        transition: all 0.3s ease;
        text-align: left;
        font-size: 16px;
        color: var(--text-primary);
        display: block;
        border-left: 3px solid transparent;
    }
    
    .nav-links a:hover {
        background: rgba(57, 255, 20, 0.1);
        color: var(--primary);
        border-left: 3px solid var(--primary);
    }
}/* 
Footer Styles */
.footer {
    width: 100%;
    background: linear-gradient(135deg, var(--darker) 0%, var(--darkest) 100%);
    border-top: 2px solid var(--primary);
    padding: 2rem 0;
    margin-top: 4rem;
    text-align: center;
    position: relative;
    z-index: 100;
    clear: both;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-content p {
    color: var(--text-secondary);
    font-family: var(--font-primary);
    margin: 0.5rem 0;
}

.footer-content a {
    color: var(--primary);
    text-decoration: none;
    transition: all var(--transition-speed);
}

.footer-content a:hover {
    color: var(--secondary);
    text-shadow: 0 0 5px var(--secondary);
}

.footer-content i {
    color: #ff4444;
}/* Fix
 for content overflow after footer */
.main-content {
    min-height: calc(100vh - 200px);
    position: relative;
    z-index: 1;
}

body {
    overflow-x: hidden;
    position: relative;
}

/* Ensure no floating elements after footer */
.footer::after {
    content: "";
    display: table;
    clear: both;
}