body {
    background: linear-gradient(135deg, #d2d1d0 0%, #949390 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.container {
    padding: 2rem;
    flex: 1;
}
.main-title {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
}
img {
    max-width: 280px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}
h2 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin: 2rem 0 3rem;
    text-transform: uppercase;
}
.categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}
.category-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    transition: all 0.3s ease;
    cursor: default;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.category-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.category-item i {
    font-size: 1.2rem;
}
.countdown {
    margin-top: 3rem;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

/* Footer Styles */
footer {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    text-align: center;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.company-name {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    text-decoration: none;
}
.footer-links a:hover {
    color: white;
    transform: translateY(-2px);
}
.copyright {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .categories {
        gap: 1rem;
    }
    .category-item {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    h2 {
        font-size: 2rem;
    }
    .company-name {
        font-size: 1.3rem;
    }
    .footer-links {
        flex-wrap: wrap;
        gap: 1rem;
    }
}