/* Base */
body {
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    background-color: #0D0D0D;
    color: #FFFFFF;
}

a {
    color: #FF1E56;
    text-decoration: none;
}

a:hover {
    color: #4C00FF;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #111111;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .logo {
    font-size: 28px;
    font-weight: 700;
}

header .logo .x {
    color: #FF1E56;
}

header nav a {
    color: #FFFFFF;
    margin-left: 25px;
    font-weight: 500;
    transition: 0.3s;
}

header nav a:hover {
    color: #4C00FF;
}

/* Hero */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #0D0D0D, #1a1a1a);
}

.hero h1 {
    font-size: 50px;
    color: #FF1E56;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    color: #CCCCCC;
}

/* Descriptive */
.desc {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #0D0D0D, #1a1a1a);
}

.desc h2 {
    color: #FF1E56;
    margin-bottom: 15px;
}

.desc p {
    font-size: 18px;
    color: #CCCCCC;
}

/* Gallery Section */
.gallery-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover {
    box-shadow: 0 0 20px #FF1E56;
}

/* Footer */
footer {
    text-align: center;
    padding: 25px;
    background-color: #111111;
    font-size: 16px;
    color: #888888;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        flex-direction: column;
    }

    header nav {
        margin-top: 10px;
    }
}