
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Space Mono', monospace;
            color: #fff;
            line-height: 1.8;
            overflow-x: hidden;
            position: relative;
        
            background: repeating-radial-gradient(
                circle at bottom right,
                #111,      
                #333 50px   
            );
            

        }

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: #000;
    border-bottom: 2px solid #fff;
    z-index: 1000;
    padding: 1.5rem 0;
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 4px;
    z-index: 1001;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-links {
    position: fixed;
    top: 0;
    right: -50%;
    width: 50%;
    height: 100vh;
    background: #000;
    border-left: 2px solid #fff;
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    padding-top: 100px;
    transition: right 0.4s ease;
    overflow-y: auto;
}

.nav-links.active {
    right: 0;
}

.nav-links li {
    border-bottom: 1px solid #333;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    letter-spacing: 2px;
    padding: 1.2rem 3rem;
    display: block;
    border-left: 3px solid transparent;
}

.nav-links a:hover {
    background: #111;
    border-left: 3px solid #fff;
}


.has-dropdown {
    position: relative;
}

.has-dropdown > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 3rem;

}
.dropdown-toggle {
    background: none;
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    cursor: pointer;
    padding: 0.3rem 0.6rem;
    margin-left: auto;  
    margin-right: 0;   
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-family: 'Space Mono', monospace;
    font-size: 1rem;
    letter-spacing: 2px;
}

.dropdown-toggle:hover {
    border-left-color: rgba(255, 255, 255, 0.6);  
    border-right-color: rgba(255, 255, 255, 0.6); 
    background: rgba(255, 255, 255, 0.05);
}

.has-dropdown.active .dropdown-toggle {
    border-left-color: rgba(255, 255, 255, 0.5);  
    border-right-color: rgba(255, 255, 255, 0.5);  
    background: rgba(255, 255, 255, 0.08);
}

.dropdown-arrow {
    font-size: 1rem;
    transition: transform 0.3s ease;
    letter-spacing: 2px;
    display: inline-block;
}

.has-dropdown.active .dropdown-arrow {
    transform: rotate(90deg);
}

.dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    right: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #0a0a0a;
}

.has-dropdown.active .dropdown-menu {
    max-height: 1080px;
}

.dropdown-menu li {
    border-bottom: 1px solid #1a1a1a;
    border-left: 3px solid transparent;
    transition: border-left 0.2s ease;
}

.dropdown-menu a {
    padding: 1rem 3rem 1rem 4rem;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: opacity 0.2s ease, background 0.2s ease;
    display: block;
}

.dropdown-menu a:hover {
    opacity: 1;
    background: #0a0a0a;
    border-left: 3px solid #fff;
}

.dropdown-menu li:hover {
    border-left: 3px solid #fff;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .nav-links {
        width: 100%;
        right: -100%;
        border-left: none;
    }
    
    .nav-links a {
        padding: 1.2rem 2rem;
        font-size: 0.95rem;
    }
    
    .has-dropdown > a {
        padding: 1.2rem 2rem;
    }
    
    .dropdown-menu a {
        padding: 1rem 2rem 1rem 3rem;
    }
}

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 12rem 3rem 8rem;
            border-bottom: 2px solid #fff;
            position: relative;
        }
        .hero-content {
            max-width: 1600px;
            width: 100%;
            margin: 0 auto;
        }
        .hero h1 {
            font-size: clamp(3rem, 10vw, 7rem);
            font-weight: 700;
            margin-bottom: 3rem;
            line-height: 1.1;
            letter-spacing: 4px;
        }
        .hero p {
            font-size: clamp(1.2rem, 2.5vw, 1.8rem);
            max-width: 1000px;
            opacity: 0.9;
            letter-spacing: 1px;
            line-height: 1.8;
        }
.threat-matrix {
    max-width: 1600px;
    margin: 0 auto;
    padding: 8rem 3rem;
    border-bottom: 2px solid #fff;
}

.matrix-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: 3px;
}

.matrix-subtitle {
    font-size: 1.4rem;
    opacity: 0.7;
    margin-bottom: 5rem;
    letter-spacing: 1px;
}

.threat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.threat-item {
    border: 2px solid #fff;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
    

    opacity: 0;
    animation: m 4s infinite, revealEntrance 0.6s ease-out forwards;
    
    --s: 100px;
    --c1: #2a2a2a;
    --c2: #1b1b1b;
    --_s: calc(2*var(--s)) calc(2*var(--s));
    --_g: var(--_s) conic-gradient(at 40% 40%, #0000 75%, var(--c1) 0);
    --_p: var(--_s) conic-gradient(at 20% 20%, #0000 75%, var(--c2) 0);
    
    background:
        calc(.9*var(--s)) calc(.9*var(--s))/var(--_p),
        calc(-.1*var(--s)) calc(-.1*var(--s))/var(--_p),
        calc(.7*var(--s)) calc(.7*var(--s))/var(--_g),
        calc(-.3*var(--s)) calc(-.3*var(--s))/var(--_g),
        conic-gradient(from 90deg at 20% 20%, var(--c2) 25%, var(--c1) 0) 
        0 0/var(--s) var(--s);
}


@keyframes revealEntrance {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.threat-item:nth-child(1) { animation-delay: 0s, 0.1s; }
.threat-item:nth-child(2) { animation-delay: 0s, 0.2s; }
.threat-item:nth-child(3) { animation-delay: 0s, 0.3s; }
.threat-item:nth-child(4) { animation-delay: 0s, 0.4s; }
.threat-item:nth-child(5) { animation-delay: 0s, 0.5s; }
.threat-item:nth-child(6) { animation-delay: 0s, 0.6s; }

.threat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: left 0.3s ease;
    z-index: 1;
}

.threat-item:hover::before {
    left: 0;
}

.threat-item:hover {
    color: #000;
}

.threat-item > * {
    position: relative;
    z-index: 2;
}

.threat-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
    font-weight: 700;
}

.threat-name {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.threat-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.8;
}

@keyframes m {
    0% { background-position: calc(.9*var(--s)) calc(.9*var(--s)), calc(-.1*var(--s)) calc(-.1*var(--s)), calc(.7*var(--s)) calc(.7*var(--s)), calc(-.3*var(--s)) calc(-.3*var(--s)), 0 0; }
    25% { background-position: calc(1.9*var(--s)) calc(.9*var(--s)), calc(-1.1*var(--s)) calc(-.1*var(--s)), calc(1.7*var(--s)) calc(.7*var(--s)), calc(-1.3*var(--s)) calc(-.3*var(--s)), 0 0; }
    50% { background-position: calc(1.9*var(--s)) calc(-.1*var(--s)), calc(-1.1*var(--s)) calc(.9*var(--s)), calc(1.7*var(--s)) calc(-.3*var(--s)), calc(-1.3*var(--s)) calc(.7*var(--s)), 0 0; }
    75% { background-position: calc(2.9*var(--s)) calc(-.1*var(--s)), calc(-2.1*var(--s)) calc(.9*var(--s)), calc(2.7*var(--s)) calc(-.3*var(--s)), calc(-2.3*var(--s)) calc(.7*var(--s)), 0 0; }
    100% { background-position: calc(2.9*var(--s)) calc(-1.1*var(--s)), calc(-2.1*var(--s)) calc(1.9*var(--s)), calc(2.7*var(--s)) calc(-1.3*var(--s)), calc(-2.3*var(--s)) calc(1.7*var(--s)), 0 0; }
}
        .section {
            max-width: 1600px;
            margin: 0 auto;
            padding: 8rem 3rem;
            border-bottom: 2px solid #fff;
        }
        .section-title {
            font-size: clamp(2.5rem, 6vw, 4rem);
            margin-bottom: 2rem;
            font-weight: 700;
            letter-spacing: 3px;
        }
        .section-subtitle {
            font-size: 1.4rem;
            opacity: 0.7;
            margin-bottom: 5rem;
            letter-spacing: 1px;
        }

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
    background-color: #141414;
    opacity: 1;
    background: linear-gradient(135deg, #35353555 25%, transparent 25%) -10px 0/ 20px 20px, linear-gradient(225deg, #353535 25%, transparent 25%) -10px 0/ 20px 20px, linear-gradient(315deg, #35353555 25%, transparent 25%) 0px 0/ 20px 20px, linear-gradient(45deg, #353535 25%, #141414 25%) 0px 0/ 20px 20px;
    padding: 48px;
    border: 2px solid #fff;
    grid-auto-rows: 1fr; 
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: 3px;
}

@media (max-width: 768px) {
    .section-title {
        letter-spacing: 1px;
        line-height: 1.2;
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
}

.tip-card {
    background: #1a1a1a;
    color: #fff;
    padding: 3rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #333;
    display: flex;
    flex-direction: column;
    min-height: 450px; /* Set a consistent minimum height */
}

.tip-card:hover {
    background: #fff;
    color: #000;
    transform: translateY(-4px);
    border: 2px solid #fff;
}

.tip-number {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    opacity: 0.4;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.tip-card:hover .tip-number {
    opacity: 1;
}

.tip-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.tip-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    flex-grow: 1;
}

.tip-card:hover p {
    opacity: 1;
}

@media (max-width: 768px) {
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
        border: 1px solid #fff;
    }
    
    .tip-card {
        padding: 2rem 1.5rem;
        border: 1px solid #333;
        min-height: auto; /* Let mobile cards be flexible */
    }
    
    .tip-card:hover {
        border: 1px solid #fff;
        transform: translateY(-2px);
    }
    
    .tip-number {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .tip-card h3 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
    
    .tip-card p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .tips-grid {
        padding: 15px;
        gap: 15px;
    }
    
    .tip-card {
        padding: 1.5rem 1rem;
    }
    
    .tip-number {
        font-size: 2.5rem;
    }
    
    .tip-card h3 {
        font-size: 1.2rem;
    }
    
    .tip-card p {
        font-size: 0.95rem;
    }
}



        .terminal-section {
            max-width: 1600px;
            margin: 0 auto;
            padding: 8rem 3rem 4rem;
            border-bottom: 2px solid #fff;
        }

        .section-title {
            font-size: 3rem;
            letter-spacing: 8px;
            margin-bottom: 1rem;
            color: #fff;
        }

        .section-subtitle {
            font-size: 1rem;
            opacity: 0.7;
            margin-bottom: 4rem;
            color: #fff;
        }

        .terminal {
            border: 2px solid #fff;
            padding: 2.5rem;
            background: #000;
            position: relative;
            margin-bottom: 4rem;
        }

        .terminal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(255,255,255,0.3);
        }

        .terminal-dots {
            display: flex;
            gap: 0.8rem;
        }

        .terminal-dot {
            width: 14px;
            height: 14px;
            border: 2px solid #fff;
            border-radius: 50%;
        }

        .terminal-title {
            font-size: 0.9rem;
            letter-spacing: 2px;
            opacity: 0.6;
        }

        .terminal-content {
            font-size: 1rem;
            line-height: 1.8;
        }

        .terminal-line {
            margin-bottom: 0.8rem;
            opacity: 0;
            animation: fadeIn 0.5s forwards;
            color: #888;
        }

        .terminal-line:nth-child(1) { animation-delay: 0.1s; }
        .terminal-line:nth-child(2) { animation-delay: 0.2s; }
        .terminal-line:nth-child(3) { animation-delay: 0.3s; }
        .terminal-line:nth-child(4) { animation-delay: 0.4s; }
        .terminal-line:nth-child(5) { animation-delay: 0.5s; }
        .terminal-line:nth-child(6) { animation-delay: 0.6s; }
        .terminal-line:nth-child(7) { animation-delay: 0.7s; }
        .terminal-line:nth-child(8) { animation-delay: 0.8s; }
        .terminal-line:nth-child(9) { animation-delay: 0.9s; }
        .terminal-line:nth-child(10) { animation-delay: 1.0s; }

        @keyframes fadeIn {
            to { opacity: 1; }
        }

        .terminal-line .prompt {
            color: #00d9ff;
            margin-right: 0.5rem;
            font-weight: bold;
        }

        .terminal-line .cmd {
            color: #fff;
        }

        @media (max-width: 768px) {
            .terminal-section {
                padding: 4rem 1.5rem 2rem;
            }

            .terminal-content {
                padding: 1.5rem;
                font-size: 0.85rem;
            }
        }
                     

        .contact-section {
            border-bottom: none;
        }
        .contact-content {
            text-align: center;
        }
        .social-link {
            display: inline-flex;
            align-items: center;
            gap: 1.5rem;
            padding: 2rem 4rem;
            background: #000;
            border: 3px solid #fff;
            color: #fff;
            text-decoration: none;
            font-size: 1.4rem;
            transition: all 0.4s ease;
            margin-top: 3rem;
            letter-spacing: 2px;
        }
        .social-link:hover {
            background: #fff;
            color: #000;
            transform: scale(1.05);
        }
        footer {
            background: #000;
            padding: 4rem 3rem;
            text-align: center;
            border-top: 2px solid #fff;
        }
        footer p {
            font-size: 1.1rem;
            margin-bottom: 1rem;
            opacity: 0.7;
            letter-spacing: 1px;
        }
        .hero-title {
    font-size: clamp(1.6rem, 5vw, 3.2rem);
    line-height: 1.2;
    white-space: normal;
    word-break: break-word;
    text-align: center;
}
        .disclaimer {
            max-width: 1000px;
            margin: 2rem auto 0;
            font-size: 1rem;
            opacity: 0.5;
            letter-spacing: 0.5px;
        }
        
        .grid-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
            background-size: 80px 80px;
            pointer-events: none;
            z-index: 0;
        }
        .content-wrapper {
            position: relative;
            z-index: 1;
        }
        .scan-line {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: #fff;
            opacity: 0.1;
            animation: scan 8s linear infinite;
            pointer-events: none;
            z-index: 9999;
        }
        @keyframes scan {
            0% { transform: translateY(0); }
            100% { transform: translateY(100vh); }
        }
        @media (max-width: 968px) {
        .mobile-menu-btn {
            display: flex;
        }
        .nav-links {
            position: fixed;
            top: 5.5rem;
            left: -100%;
            width: 100%;
            height: calc(100vh - 5.5rem);
            background: #000;
            flex-direction: column;
            padding: 2rem;
            gap: 0;
            border-right: 2px solid #fff;
            transition: left 0.3s ease;
        }
        .nav-links.active {
            left: 0;
        }
        .nav-links li {
            width: 100%;
            border-bottom: 1px solid rgba(255,255,255,0.2);
        }
        .nav-links a {
            display: block;
            padding: 1.5rem 1rem;
            font-size: 1.2rem;
            border: none;
        }
        .logo {
            font-size: 1.4rem;
            letter-spacing: 2px;
        }
        .nav-container {
            padding: 0 1.5rem;
        }
    }

    @media (max-width: 768px) {
        .tips-grid, .threat-grid {
            grid-template-columns: 1fr;
        }
        .tip-card, .threat-item {
            padding: 2rem;
        }
        .terminal {
            padding: 1.5rem;
        }
        .terminal-content {
            font-size: 0.85rem;
        }
    }
.hash-section {
    max-width: 1600px;
    margin: 0 auto;
    padding: 8rem 3rem;
    border-bottom: 2px solid #fff;
}

.hash-container {
    background: #0a0a0a;
    border: 2px solid #fff;
    padding: 3rem;
    border-radius: 0;
}

.hash-input-wrapper,
.hash-output-wrapper {
    margin-bottom: 2.5rem;
}
.generate-hash-btn {
    background: #000;             
    border: 2px solid #fff;         
    color: #fff;                   
    padding: 1rem 2rem;              
    font-family: 'Space Mono', monospace;
    font-size: 1rem;                
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;           
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 20px 0;
    border-radius: 0;               
}

.generate-hash-btn:hover {
    background: #fff;               
    color: #000;                    
    transform: translateY(-2px);
}
.generate-hash-btn:active {
    transform: translateY(0);
}
.hash-input-wrapper label,
.hash-output-wrapper label {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    opacity: 0.9;
}

#hashInput {
    width: 100%;
    background: #000;
    border: 2px solid #fff;
    color: #fff;
    padding: 1.5rem;
    font-family: 'Space Mono', monospace;
    font-size: 1.1rem;
    resize: vertical;
    transition: all 0.3s ease;
}

#hashInput:focus {
    outline: none;
    background: #1a1a1a;
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.hash-algorithms {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hash-btn {
    background: #000;
    border: 2px solid #fff;
    color: #fff;
    padding: 1rem 2rem;
    font-family: 'Space Mono', monospace;
    font-size: 1rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hash-btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

.hash-btn.active {
    background: #fff;
    color: #000;
}

.hash-output {
    background: #000;
    border: 2px solid #fff;
    padding: 1.5rem;
    min-height: 100px;
    font-family: 'Space Mono', monospace;
    font-size: 0.95rem;
    word-break: break-all;
    line-height: 1.8;
    position: relative;
}

.hash-output .placeholder {
    opacity: 0.5;
}

.hash-output .hash-result {
    color: #fff;
    opacity: 0.9;
}

.copy-btn {
    background: #fff;
    color: #000;
    border: 2px solid #fff;
    padding: 1rem 2rem;
    font-family: 'Space Mono', monospace;
    font-size: 1rem;
    letter-spacing: 2px;
    cursor: pointer;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: #000;
    color: #fff;
    transform: scale(1.05);
}

.copy-btn.copied {
    background: #4CAF50;
    border-color: #4CAF50;
}

@media (max-width: 768px) {
    .hash-container {
        padding: 2rem 1.5rem;
    }
    
    .hash-algorithms {
        gap: 0.8rem;
    }
    
    .hash-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    .generate-hash-btn {
        width: 100%;                    
        justify-content: center;        
        padding: 1rem 1.5rem;          
        font-size: 0.9rem;           
        margin: 15px 0;                
    }
    #hashInput {
        font-size: 1rem;
        padding: 1.2rem;
    }
}
.ip-lookup-section {
    max-width: 1600px;
    margin: 0 auto;
    padding: 8rem 3rem;
    border-bottom: 2px solid #fff;
}

.ip-lookup-container {
    background: #0a0a0a;
    border: 2px solid #fff;
    padding: 3rem;
    position: relative;
    box-shadow: 0 10px 40px rgba(255,255,255,0.05);
}

.ip-input-wrapper {
    margin-bottom: 3rem;
}

.ip-input-wrapper label {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    opacity: 0.9;
    font-weight: 700;
}

.input-group {
    display: flex;
    gap: 1rem;
}

#ipInput {
    flex: 1;
    background: #000;
    border: 2px solid #fff;
    color: #fff;
    padding: 1.5rem;
    font-family: 'Space Mono', monospace;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

#ipInput::placeholder {
    color: rgba(255,255,255,0.4);
}

#ipInput:focus {
    outline: none;
    background: #1a1a1a;
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
    border-color: #4CAF50;
}

.lookup-btn {
    background: #fff;
    color: #000;
    border: 2px solid #fff;
    padding: 1.5rem 2.5rem;
    font-family: 'Space Mono', monospace;
    font-size: 1rem;
    letter-spacing: 2px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-weight: 700;
}

.lookup-btn:hover {
    background: #000;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255,255,255,0.2);
}

.lookup-btn:active {
    transform: scale(0.98);
}

.quick-actions {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}

.quick-btn {
    background: #000;
    border: 2px solid #fff;
    color: #fff;
    padding: 0.8rem 1.5rem;
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.quick-btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.2);
}

.quick-btn:active {
    transform: translateY(0);
}

.ip-results {
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.results-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #fff;
}

.results-icon {
    font-size: 1.5rem;
    color: #4CAF50;
    animation: pulse 2s ease-in-out infinite;
}

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

.results-header h3 {
    font-size: 1.5rem;
    letter-spacing: 3px;
    font-weight: 700;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.result-card {
    background: #000;
    border: 2px solid #fff;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 0;
}



.result-label {
    font-size: 0.85rem;
    opacity: 0.7;
    letter-spacing: 1.5px;
}

.result-value {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    word-break: break-word;
    position: relative;
    z-index: 1;
}

.map-container {
    border: 2px solid #fff;
    overflow: hidden;
}

.map-header {
    background: #000;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 2px solid #fff;
    font-size: 1.1rem;
    letter-spacing: 2px;
    font-weight: 700;
}

.map-icon {
    color: #4CAF50;
    font-weight: 700;
}

.map-display {
    height: 400px;
    background: #000;
    position: relative;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0.5;
}

.map-placeholder svg {
    margin-bottom: 1rem;
}

.map-placeholder p {
    font-size: 1.1rem;
    letter-spacing: 2px;
}

#mapDisplay iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.loading-indicator {
    text-align: center;
    padding: 3rem;
    animation: fadeInUp 0.3s ease;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top: 3px solid #fff;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    animation: spin 1s linear infinite;
}

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

.loading-indicator p {
    font-size: 1.2rem;
    letter-spacing: 2px;
    opacity: 0.8;
}

.error-message {
    text-align: center;
    padding: 3rem;
    animation: fadeInUp 0.3s ease;
}

.error-icon {
    font-size: 3rem;
    color: #f44336;
    display: block;
    margin-bottom: 1rem;
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { 
        transform: translateX(0); 
    }
    25% { 
        transform: translateX(-10px); 
    }
    75% { 
        transform: translateX(10px); 
    }
}

.error-message p {
    font-size: 1.2rem;
    letter-spacing: 2px;
    opacity: 0.8;
}

@media (max-width: 968px) {
    .ip-lookup-section {
        padding: 4rem 2rem;
    }

    .ip-lookup-container {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .ip-lookup-section {
        padding: 3rem 1.5rem;
    }
    
    .ip-lookup-container {
        padding: 2rem 1.5rem;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .lookup-btn {
        width: 100%;
        justify-content: center;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .map-display {
        height: 300px;
    }

    .quick-actions {
        flex-direction: column;
    }

    .quick-btn {
        width: 100%;
        justify-content: center;
    }
}

.password-section {
    max-width: 1600px;
    margin: 0 auto;
    padding: 8rem 3rem;
    border-bottom: 2px solid #fff;
}

.password-container {
    background: #0a0a0a;
    border: 2px solid #fff;
    padding: 3rem;
}

.password-input-wrapper {
    margin-bottom: 2.5rem;
}

.password-input-wrapper label {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    opacity: 0.9;
}

.password-input-wrapper .input-group {
    display: flex;
    gap: 0;
    position: relative;
}

#passwordInput {
    flex: 1;
    background: #000;
    border: 2px solid #fff;
    color: #fff;
    padding: 1.5rem;
    font-family: 'Space Mono', monospace;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

#passwordInput:focus {
    outline: none;
    background: #1a1a1a;
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.toggle-visibility {
    background: #000;
    border: 2px solid #fff;
    color: #fff;
    padding: 0 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-visibility:hover {
    background: #fff;
    color: #000;
}

.strength-indicator {
    margin-bottom: 2.5rem;
}

.strength-bar {
    height: 12px;
    background: #000;
    border: 2px solid #fff;
    margin-bottom: 1rem;
    overflow: hidden;
}

.strength-fill {
    height: 100%;
    width: 0%;
    transition: all 0.5s ease;
    background: #fff;
}

.strength-fill.weak {
    width: 25%;
    background: #f44336;
}

.strength-fill.fair {
    width: 50%;
    background: #ff9800;
}

.strength-fill.good {
    width: 75%;
    background: #ffeb3b;
}

.strength-fill.strong {
    width: 100%;
    background: #4CAF50;
}

.strength-text {
    font-size: 1.3rem;
    letter-spacing: 2px;
    font-weight: 700;
    text-align: center;
}

.password-requirements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.req-item {
    padding: 1rem;
    border: 2px solid #fff;
    background: #000;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.req-item.met {
    opacity: 1;
    background: #1a1a1a;
}

.req-item.met .req-icon {
    color: #4CAF50;
}

.req-icon {
    font-weight: 700;
    font-size: 1.2rem;
}

.password-info {
    background: #000;
    border: 2px solid #fff;
    padding: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
    display: none;
}

.password-info.show {
    display: block;
}

@media (max-width: 768px) {
    .password-container {
        padding: 2rem 1.5rem;
    }
    
    .password-requirements {
        grid-template-columns: 1fr;
    }
}

.generator-section {
    max-width: 1600px;
    margin: 0 auto;
    padding: 8rem 3rem;
    border-bottom: 2px solid #fff;
}

.generator-container {
    background: #0a0a0a;
    border: 2px solid #fff;
    padding: 3rem;
}

.generated-password-display {
    margin-bottom: 3rem;
}

.password-output {
    background: #000;
    border: 2px solid #fff;
    padding: 2rem;
    min-height: 80px;
    font-family: 'Space Mono', monospace;
    font-size: 1.3rem;
    word-break: break-all;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-output .placeholder {
    opacity: 0.5;
    font-size: 1.1rem;
}

.password-output .generated {
    color: #4CAF50;
    font-weight: 700;
    letter-spacing: 2px;
}

.password-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.action-btn {
    background: #fff;
    color: #000;
    border: 2px solid #fff;
    padding: 1rem 2rem;
    font-family: 'Space Mono', monospace;
    font-size: 1rem;
    letter-spacing: 2px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    font-weight: 700;
    flex: 1;
    justify-content: center;
}

.action-btn:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}

.action-btn:active {
    transform: translateY(0);
}

.action-btn.copied {
    background: #4CAF50;
    border-color: #4CAF50;
}

.generate-btn {
    background: #000;
    color: #fff;
}

.generate-btn:hover {
    background: #fff;
    color: #000;
}

.generator-options {
    margin-bottom: 2rem;
}

.option-group {
    margin-bottom: 3rem;
}

.option-label {
    display: block;
    margin-bottom: 1rem;
}

.option-title {
    font-size: 1.2rem;
    letter-spacing: 2px;
    font-weight: 700;
}

#lengthValue {
    color: #4CAF50;
    font-size: 1.4rem;
    margin-left: 0.5rem;
}

.slider {
    width: 100%;
    height: 8px;
    background: #000;
    border: 2px solid #fff;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: #fff;
    cursor: pointer;
    border: 2px solid #000;
}

.slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: #fff;
    cursor: pointer;
    border: 2px solid #000;
}

.range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #000;
    border: 2px solid #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.checkbox-option.full-width {
    grid-column: 1 / -1;
}

.checkbox-option:hover {
    background: #1a1a1a;
    transform: translateX(5px);
}

.checkbox-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-custom {
    width: 24px;
    height: 24px;
    border: 2px solid #fff;
    background: #000;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.checkbox-option input[type="checkbox"]:checked + .checkbox-custom {
    background: #fff;
}

.checkbox-option input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    font-weight: 700;
    font-size: 1.2rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    letter-spacing: 1px;
}

.checkbox-icon {
    color: #4CAF50;
    font-weight: 700;
    font-size: 1.1rem;
}

.generator-info {
    margin-top: 2rem;
}

.info-card {
    background: #000;
    border: 2px solid #fff;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-icon {
    font-size: 1.5rem;
    color: #4CAF50;
    font-weight: 700;
    flex-shrink: 0;
}

.info-text {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .generator-container {
        padding: 2rem 1.5rem;
    }
    
    .password-output {
        font-size: 1.1rem;
        padding: 1.5rem;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .checkbox-option.full-width {
        grid-column: 1;
    }
    
    .password-actions {
        flex-direction: column;
    }
    
    .action-btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

.projects-container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 12rem 3rem 8rem;
}
        
.projects-header {
    text-align: center;
    border-bottom: 2px solid #fff;
    padding-bottom: 3rem;
    margin-bottom: 5rem;
}
        
.projects-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
}
        
.projects-subtitle {
    font-size: 1.4rem;
    opacity: 0.7;
    letter-spacing: 1px;
}
        
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}
        
.project-card {
    background: #0a0a0a;
    border: 2px solid #fff;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}
        
.project-card:nth-child(1) { animation-delay: 0.1s; }
.project-card:nth-child(2) { animation-delay: 0.2s; }
.project-card:nth-child(3) { animation-delay: 0.3s; }
.project-card:nth-child(4) { animation-delay: 0.4s; }
.project-card:nth-child(5) { animation-delay: 0.5s; }
.project-card:nth-child(6) { animation-delay: 0.6s; }
        
.project-card:hover {
            transform: translateY(-10px);
            border-color: #4CAF50;
        }
        
        .project-header {
            background: #000;
            padding: 2rem;
            border-bottom: 2px solid #fff;
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .project-number {
            font-size: 3rem;
            font-weight: 700;
            opacity: 0.3;
        }
        
        .project-content {
            padding: 2.5rem 2rem;
        }
        
        .project-name {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: 2px;
        }
        
        .project-description {
            font-size: 1.05rem;
            line-height: 1.8;
            opacity: 0.85;
            margin-bottom: 1.5rem;
        }
        
        .project-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-bottom: 2rem;
        }
        
        .tag {
            background: #000;
            border: 1px solid #fff;
            padding: 0.4rem 1rem;
            font-size: 0.85rem;
            letter-spacing: 1px;
            opacity: 0.7;
        }
        
        .project-link {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            background: #fff;
            color: #000;
            border: 2px solid #fff;
            padding: 1rem 2rem;
            text-decoration: none;
            font-size: 1rem;
            letter-spacing: 2px;
            font-weight: 700;
            transition: all 0.3s ease;
        }
        
        .project-link:hover {
            background: #000;
            color: #fff;
            transform: translateX(5px);
        }
        
        .project-link.disabled {
            background: #333;
            color: #666;
            border-color: #333;
            cursor: not-allowed;
            pointer-events: none;
        }
@media (max-width: 768px){
    .projects-container {
                padding: 10rem 1.5rem 5rem;
            }
            
            .projects-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .projects-title {
                font-size: 2rem;
            }
            
            .project-content {
                padding: 2rem 1.5rem;
            }
}

.content-wrapper {
    position: relative;
    z-index: 1;
}

.back-btn {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    letter-spacing: 2px;
    padding: 0.5rem 1rem;
    border: 2px solid #fff;
}

.back-btn:hover {
    background: #fff;
    color: #000;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px){
    .result-card{
        z-index: 0;
    }
}

.privacy-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 12rem 3rem 8rem;
        }
        
        .privacy-header {
            border-bottom: 2px solid #fff;
            padding-bottom: 3rem;
            margin-bottom: 4rem;
        }
        
        .privacy-title {
            font-size: clamp(2.5rem, 6vw, 4rem);
            margin-bottom: 1rem;
            font-weight: 700;
            letter-spacing: 3px;
        }
        
        .privacy-date {
            font-size: 1.1rem;
            opacity: 0.7;
            letter-spacing: 1px;
        }
        
        .privacy-content {
            background: rgba(0, 0, 0, 0.5);
            border: 2px solid #fff;
            padding: 4rem 3rem;
        }
        
        .privacy-section {
            margin-bottom: 4rem;
        }
        
        .privacy-section:last-child {
            margin-bottom: 0;
        }
        .privacy-section p {
            font-size: 1.1rem;
            line-height: 1.9;
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }
        
        .privacy-section ul {
            list-style: none;
            padding-left: 0;
            margin-bottom: 1.5rem;
        }
        
        .privacy-section li {
            font-size: 1.1rem;
            line-height: 1.9;
            margin-bottom: 1rem;
            padding-left: 2rem;
            position: relative;
            opacity: 0.9;
        }
        
        .privacy-section li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: #4CAF50;
            font-weight: 700;
        }
@media (max-width: 768px) {
    .privacy-container {
                padding: 10rem 1.5rem 5rem;
            }
            
            .privacy-content {
                padding: 2.5rem 1.5rem;
            }
            
            .privacy-title {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.4rem;
            }
            
            .privacy-section p,
            .privacy-section li {
                font-size: 1rem;
            }
}

