body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #0a0a0a;
    color: white;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #111;
    position: sticky;
    top: 0;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: red;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar li {
    cursor: pointer;
    transition: transform 0.2s, color 0.3s;
}

.navbar li:hover {
    transform: translateY(-3px);
    color: red;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.scan-line {
    width: 80%;
    height: 2px;
    background: red;
    animation: scan 2s infinite;
}

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

.page {
    display: none;
    padding: 20px;
}

.page.active {
    display: block;
}

.home-img {
    max-width: 400px;
    margin-top: 20px;
}
.container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.box {
    background: #1a1a1a;
    border: 2px solid #e74c3c;
    padding: 20px;
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.box:hover {
    transform: scale(1.05);
    background: #2c2c2c;
    box-shadow: 0 0 20px rgba(231, 76, 60, 0.6);
}

.box h2 {
    color: #e74c3c;
    margin-bottom: 10px;
}

.box p {
    font-size: 0.9em;
    color: #cccccc;
}

