body {
    background-color: #1A1A1A;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    font-family: Arial, sans-serif;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 20px;
}

h1 {
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(45deg, #ff0000, #ff4d4d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 2.5em;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    background: linear-gradient(145deg, #424242, #313131);
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .gallery {
        gap: 20px;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    h1 {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .gallery {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 1.8em;
    }
}
