* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Crimson Text', serif;
    background-color: #000000;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(139, 0, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(220, 20, 60, 0.03) 0%, transparent 50%);
    color: #e0e0e0;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background: linear-gradient(180deg, #0a0a0a, #000000);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #8b0000;
    box-shadow: 0 5px 20px rgba(139, 0, 0, 0.5);
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 50px;
    list-style: none;
}

.nav-menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-family: 'Special Elite', cursive;
}

.nav-menu a:hover {
    color: #dc143c;
}

.hero {
    height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 5px solid #8b0000;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(40%) contrast(120%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 100px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 
        0 0 20px #dc143c,
        0 0 40px #8b0000,
        5px 5px 0px #000000,
        -2px -2px 0px #000000,
        2px -2px 0px #000000,
        -2px 2px 0px #000000;
    letter-spacing: 15px;
    margin-bottom: 15px;
    animation: pulseRed 3s ease-in-out infinite;
}

@keyframes pulseRed {
    0%, 100% {
        text-shadow: 
            0 0 20px #dc143c,
            0 0 40px #8b0000,
            5px 5px 0px #000000,
            -2px -2px 0px #000000,
            2px -2px 0px #000000,
            -2px 2px 0px #000000;
    }
    50% {
        text-shadow: 
            0 0 30px #dc143c,
            0 0 60px #8b0000,
            0 0 80px #8b0000,
            5px 5px 0px #000000,
            -2px -2px 0px #000000,
            2px -2px 0px #000000,
            -2px 2px 0px #000000;
    }
}

.hero-subtitle {
    font-family: 'Crimson Text', serif;
    font-size: 36px;
    color: #dc143c;
    text-shadow: 0 0 10px #8b0000, 2px 2px 4px #000000;
    letter-spacing: 10px;
}

.main-content {
    padding: 60px 0;
}

.trending-section {
    margin-bottom: 40px;
}

.section-title {
    color: #dc143c;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    border-left: 6px solid #8b0000;
    padding-left: 15px;
    font-family: 'Special Elite', cursive;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(220, 20, 60, 0.5);
}

.trending-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.trending-item {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(10, 10, 10, 0.9));
    padding: 15px 20px;
    border-radius: 5px;
    border-left: 4px solid #dc143c;
    border-right: 1px solid rgba(139, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.trending-item:hover {
    background: linear-gradient(135deg, rgba(26, 26, 26, 1), rgba(20, 20, 20, 1));
    transform: translateX(10px);
    border-left-color: #8b0000;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.4);
}

.featured-cards {
    margin: 60px 0;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(139, 0, 0, 0.4);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.5);
    border-color: #dc143c;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: brightness(70%) contrast(120%);
}

.card-content {
    padding: 20px;
}

.card h3 {
    color: #dc143c;
    margin-bottom: 10px;
    font-size: 20px;
    font-family: 'Special Elite', cursive;
    letter-spacing: 1px;
}

.card p {
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.6;
}

.gallery-section {
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.5), rgba(10, 10, 10, 0.8), rgba(20, 20, 20, 0.5));
    padding: 80px 0;
    margin: 60px 0;
    border-top: 3px solid rgba(139, 0, 0, 0.6);
    border-bottom: 3px solid rgba(139, 0, 0, 0.6);
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(139, 0, 0, 0.02) 50px, rgba(139, 0, 0, 0.02) 51px);
    pointer-events: none;
}

.gallery-title {
    color: #dc143c;
    font-size: 48px;
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 6px;
    text-shadow: 0 0 20px rgba(220, 20, 60, 0.6), 3px 3px 5px #000000;
    position: relative;
    z-index: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.gallery-card {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid rgba(139, 0, 0, 0.4);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
}

.gallery-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(220, 20, 60, 0.5);
    border-color: #dc143c;
}

.gallery-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: brightness(70%) contrast(120%);
}

.gallery-content {
    padding: 20px;
}

.gallery-card h3 {
    color: #dc143c;
    margin-bottom: 10px;
    font-size: 18px;
    font-family: 'Special Elite', cursive;
    letter-spacing: 1px;
}

.gallery-card p {
    color: #a0a0a0;
    font-size: 14px;
}

.bottom-hero {
    margin: 60px 0;
}

.bottom-hero-content img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    border: 4px solid rgba(139, 0, 0, 0.5);
    filter: brightness(70%) contrast(120%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.footer {
    background: linear-gradient(180deg, #000000, #0a0a0a);
    padding: 60px 0 30px;
    border-top: 4px solid #8b0000;
    box-shadow: 0 -5px 20px rgba(139, 0, 0, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: #dc143c;
    margin-bottom: 20px;
    font-size: 18px;
    font-family: 'Special Elite', cursive;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(220, 20, 60, 0.5);
}

.footer-section p {
    color: #b0b0b0;
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #dc143c;
    transform: translateX(5px);
    display: inline-block;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 5px;
}

.social-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.social-link:hover {
    color: #dc143c;
    background-color: rgba(139, 0, 0, 0.1);
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .nav-menu {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .hero {
        height: 400px;
    }
    
    .hero-title {
        font-size: 50px;
        letter-spacing: 8px;
    }
    
    .hero-subtitle {
        font-size: 20px;
        letter-spacing: 5px;
    }
    
    .gallery-title {
        font-size: 36px;
    }
    
    .card-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.logo {
    position: fixed;
    right: 20px;
    top: 150px;
    width: 100px;
    height: 150px;
    animation: spin 5s linear infinite;
    filter: drop-shadow(0 0 5px #000000) drop-shadow(0 0 20px rgb(116, 113, 113));
    transform-origin: center;
    z-index: 999;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}