body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #050505;
    color: #fff;
}

header {
    background: linear-gradient(90deg, #ff007f, #6a0dad);
    padding: 20px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(255, 0, 127, 0.5);
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.section {
    margin: 40px 0;
    padding: 20px;
    background: rgba(26, 26, 26, 0.9);
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(255, 0, 127, 0.3);
}

.nft-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.nft-gallery img {
    width: 100%;
    max-width: 300px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(255, 0, 127, 0.5);
}

button {
    padding: 10px;
    background: #ff007f;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

button:hover {
    background: #6a0dad;
}

a {
    color: #ff007f;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.countdown {
    font-size: 20px;
    font-weight: bold;
    color: #ff007f;
    text-align: center;
    margin: 10px 0;
}

.language-switch {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.language-switch button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
}
