* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #ff8c42;
    line-height: 1.6;
    min-height: 100vh;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    border-bottom: 2px solid #ff6b1a;
}

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff6b1a;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(255, 107, 26, 0.5);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #ff8c42;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #ff6b1a;
    text-shadow: 0 0 5px rgba(255, 107, 26, 0.7);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b1a;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Main Content */
.main-content {
    margin-top: 80px;
    padding: 2rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* About Section */
.about {
    padding: 3rem 0;
    background: rgba(30, 30, 30, 0.5);
    border-radius: 15px;
    margin: 2rem 0;
    border: 1px solid rgba(255, 107, 26, 0.3);
}

.about h2 {
    color: #ff6b1a;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    text-align: center;
}

.avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover; 
    /* Fallback if GIF fails to load */
    background: linear-gradient(45deg, #ff6b1a, #ff8c42); 
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(255, 107, 26, 0.4);
    transition: transform 0.3s ease;
}

.avatar:hover {
    transform: scale(1.05);
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #ff8c42;
}

/* Categories Section */
.categories {
    padding: 3rem 0;
}

.categories h2 {
    color: #ff6b1a;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.category-card {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8) 0%, rgba(40, 40, 40, 0.6) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 26, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 26, 0.1), transparent);
    transition: left 0.5s ease;
}

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    border-color: #ff6b1a;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 26, 0.3);
}

.category-icon {
    font-size: 3rem;
    color: #ff6b1a;
    margin-bottom: 1rem;
}

.category-card h3 {
    color: #ff6b1a;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.category-card p {
    color: #ff8c42;
    margin-bottom: 1rem;
}

.category-count {
    color: #ff6b1a;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: rgba(10, 10, 10, 0.9);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    border-top: 2px solid #ff6b1a;
}

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

.footer-section h3 {
    color: #ff6b1a;
    margin-bottom: 1rem;
}

.footer-section a {
    color: #ff8c42;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff6b1a;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 107, 26, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: #ff8c42;
    font-size: 1.2rem;
    text-decoration: none;
}

.social-links a:hover {
    background: rgba(255, 107, 26, 0.3);
    transform: scale(1.1);
    color: #ff6b1a;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 107, 26, 0.3);
    color: #ff8c42;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
}