/* Reset Styles */
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, a, img, div {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

.landing-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}
.position-relative {
    position: relative;
    overflow: hidden;
}

.position-relative::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(https://smallfacerecords.com/wp-content/uploads/2024/12/6544553A-653B-4F50-B40C-79FB8067EAB1-scaled.jpg) center/cover no-repeat;
    filter: blur(7px);
    z-index: -1;
}


/* Header Text */
.powered {
    font-size: 12px;
    text-align: center;
    margin-bottom: 20px;
}

.powered a {
    text-decoration: none;
}

/* Alerts */
.alert {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
}

.alert-warning {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
}

.alert-danger {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Links Container */
.links-container {
    width: 100%;
    max-width: 450px;
    text-align: center;
}

.preview-container {
    margin-bottom: 20px;
}

.link-cover {
    width: 100%;
    max-width: 330px;
    border-radius: 10px;
}

/* Artist and Title */
.link-artist, .link-title {
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0;
    color: #fff;
}

.link-title {
    color: #fff;
}

/* Release Links */
.release-links {
    margin: 20px 0;
}

.release-links-title {
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: bold;
}

.share-link {
    font-size: 12px;
    margin-top: 5px;
}

.share-link a {
    color: #fff;
    text-decoration: none;
}

.share-link a:hover {
    text-decoration: underline;
}

/* Individual Links */
.link-href {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px auto;
    padding: 10px;
    text-decoration: none;
    background: #6a6a6a;
    color: #fff;
    border-radius: 5px;
    max-width: 90%;
    transition: background 0.3s ease;
}

.link-href img {
    width: 100px;
    height: 30px;
    margin-right: 10px;
}

.link-btn {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: bold;
    /* width: 40px; */
}

.link-href:hover {
    background: rgb(100, 79, 23);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .link-cover {
        width: 80%;
    }

    .alert {
        font-size: 12px;
    }

    .link-artist, .link-title {
        font-size: 14px;
    }

    .link-btn {
        font-size: 12px;
    }

    .release-links-title {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .link-cover {
        width: 100%;
    }

    .link-href {
        /* flex-direction: column; */
        text-align: center;
    }

    .link-href img {
        margin-bottom: 5px;
    }

    .link-btn {
        font-size: 12px;
    }
}
