/* Main Styles for Hexaspark Official Website */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0a0a0a;
    color: #d1cfcf;
    overflow-x: hidden;
}

.page-container {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), url('bg.png') no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 1rem;
}

.header {
    text-align: center;
    width: 100%;
    padding: 1rem 0;
}

.title {
    font-family: 'Skranji', cursive;
    font-size: 3.5rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #e0d0a0;
    margin: 0;
}

@keyframes glow {
    from { text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e0d0a0, 0 0 40px #e0d0a0; }
    to { text-shadow: 0 0 15px #fff, 0 0 25px #fff, 0 0 35px #e0d0a0, 0 0 45px #e0d0a0; }
}

.album-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    width: 100%;
    padding: 2rem;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid #e0d0a0;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(224, 208, 160, 0.2);
    margin: 2rem 0;
    text-align: center;
}

.tagline {
    font-size: 1.8rem;
    color: #e0d0a0;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.album-title {
    font-family: 'Cinzel', serif;
    color: #e0d0a0;
    font-size: 2.5rem;
    margin: 1rem 0;
    text-shadow: 0 0 10px rgba(224, 208, 160, 0.5);
}

.album-cover {
    width: 250px;
    height: 250px;
    border: 2px solid #e0d0a0;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    margin: 1rem 0;
    background: url('Cover.png') no-repeat center center;
    background-size: cover;
}

.release-date {
    font-size: 1.2rem;
    margin: 1rem 0;
    color: #a0a0a0;
}

.streaming-platforms {
    width: 100%;
    margin: 2rem 0;
}

.platform-title {
    font-family: 'Cinzel', serif;
    color: #e0d0a0;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.btn {
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    color: #e0d0a0;
    font-weight: bold;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #e0d0a0;
    transition: all 0.3s ease;
    min-width: 150px;
}

.btn:hover {
    background: rgba(224, 208, 160, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(224, 208, 160, 0.3);
}

.newsletter {
    max-width: 500px;
    width: 100%;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid #e0d0a0;
    border-radius: 10px;
    text-align: center;
}

.newsletter-title {
    font-family: 'Cinzel', serif;
    color: #e0d0a0;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-input {
    padding: 10px;
    border: 1px solid #e0d0a0;
    background: rgba(0, 0, 0, 0.5);
    color: #d1cfcf;
    border-radius: 5px;
}

.newsletter-btn {
    padding: 10px;
    background: rgba(224, 208, 160, 0.2);
    color: #e0d0a0;
    border: 1px solid #e0d0a0;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: rgba(224, 208, 160, 0.4);
}

.footer {
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(224, 208, 160, 0.3);
    margin-top: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .album-showcase {
        padding: 1rem;
    }
    
    .tagline {
        font-size: 1.4rem;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 80%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .album-cover {
        width: 200px;
        height: 200px;
    }
}