
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: #f5f1e6; 
            color: #000;
            font-family: 'Helvetica Neue', Arial, sans-serif;
            font-size: 16px;
            line-height: 1.6;
            overflow-x: hidden;
        }

        header {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            background-color: #d2c8b8; 
            position: relative;
            animation: fadeIn 1.5s ease-out;
        }

        .logo-container {
            margin-bottom: 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .label-title {
            font-family: 'Bebas Neue', sans-serif; 
            font-size: 4.5rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            margin-bottom: 1rem;
            opacity: 0;
            animation: fadeUp 1.5s ease-out forwards;
            animation-delay: 0.2s;
        }

        .logo-img {
            max-width: 300px; 
            height: auto;
            opacity: 0;
            animation: scaleIn 1.5s ease-out forwards;
            animation-delay: 0.5s;
        }

        .tagline {
            font-size: 2rem;
            font-weight: 300;
            max-width: 80%;
            opacity: 0;
            animation: fadeUp 1.5s ease-out forwards;
            animation-delay: 1s;
        }

        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(245, 241, 230, 0.95);
            padding: 1.5rem 0;
            text-align: center;
            z-index: 10;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            animation: slideDown 1s ease-out;
        }

        nav a {
            color: #000;
            text-decoration: none;
            margin: 0 2.5rem;
            font-size: 1.4rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        nav a:hover {
            color: #555;
            transform: scale(1.05);
        }

        section {
            padding: 8rem 3rem;
            text-align: center;
            min-height: 80vh;
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 1s ease-out, transform 1s ease-out;
        }

        section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        h2 {
            font-size: 3rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            margin-bottom: 4rem;
            position: relative;
        }

        h2::after {
            content: '';
            display: block;
            width: 50px;
            height: 2px;
            background: #000;
            margin: 1rem auto 0;
            transition: width 0.5s ease;
        }

        h2:hover::after {
            width: 100px;
        }

        .about-content {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.2rem;
            color: #333;
        }

        .artists, .releases {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 3rem;
        }

        .artist-card, .release-card {
            background-color: #e8e3d8;
            padding: 3rem;
            width: 350px;
            text-align: center;
            border: none;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            border-radius: 8px;
        }

        .artist-card:hover, .release-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        .artist-photo, .release-cover {
            width: 250px;
            height: 250px; 
            object-fit: cover;
            border-radius: 8px;
            margin: 0 auto 1.5rem;
        }

        .artist-card h3, .release-card h3 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .artist-card p, .release-card p {
            font-size: 1.1rem;
            color: #333;
            margin-bottom: 1.5rem;
        }

        .social-links, .platform-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
        }

        .social-links a, .platform-links a {
            color: #000;
            font-size: 1.8rem;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .social-links a:hover, .platform-links a:hover {
            color: #555;
            transform: scale(1.1);
        }

        footer {
            background-color: #d2c8b8;
            padding: 3rem;
            text-align: center;
            font-size: 1rem;
            animation: fadeIn 1.5s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes scaleIn {
            from { opacity: 0; transform: scale(0.8); }
            to { opacity: 1; transform: scale(1); }
        }

        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes slideDown {
            from { transform: translateY(-100%); }
            to { transform: translateY(0); }
        }

        @media (max-width: 768px) {
            nav {
                padding: 1rem 0;
            }

            nav a {
                margin: 0 1rem;
                font-size: 1.1rem;
            }

            .tagline {
                font-size: 1.5rem;
                max-width: 90%;
            }

            .label-title {
                font-size: 3rem;
            }

            section {
                padding: 5rem 1.5rem;
            }

            h2 {
                font-size: 2.2rem;
            }

            .artist-card, .release-card {
                width: 100%;
                padding: 2rem;
            }

            .logo-img {
                max-width: 200px;
            }

            .artist-photo, .release-cover {
                width: 200px;
                height: 200px;
            }
        }

        @media (max-width: 480px) {
            nav a {
                margin: 0 0.5rem;
                font-size: 1rem;
            }

            .label-title {
                font-size: 2.5rem;
            }

            h2 {
                font-size: 1.8rem;
            }

            .social-links a, .platform-links a {
                font-size: 1.5rem;
            }
        }

        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #F4EFE3; 
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

        .loader {
            width: 60px;
            height: 60px;
            border: 6px solid #fff;
            border-top: 6px solid #CDC2B2; 
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        body.loaded #preloader {
            opacity: 0;
            pointer-events: none;
        }

        /* Styles for the submission form */
        #submit-track form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        #submit-track input,
        #submit-track textarea {
            padding: 1rem;
            font-size: 1.1rem;
            border: 1px solid #333;
            border-radius: 8px;
            background-color: #e8e3d8;
            color: #333;
            font-family: 'Helvetica Neue', Arial, sans-serif;
        }

        #submit-track textarea {
            resize: vertical;
            min-height: 100px;
        }

        #submit-track button {
            padding: 1rem;
            font-size: 1.2rem;
            text-transform: uppercase;
            background-color: #d2c8b8;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        #submit-track button:hover {
            background-color: #cdc2b2;
            transform: scale(1.02);
        }

        #submit-track .form-message {
            font-size: 1.1rem;
            color: #333;
            margin-top: 1rem;
        }

        .services-list {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.service-item {
    display: grid;
    grid-template-columns: 28px 1fr;
    column-gap: 1.6rem;
    padding: 2.4rem 3rem;
    background-color: #e8e3d8;
    border-radius: 14px;
}

.service-item i {
    font-size: 1.4rem;
    color: #8a8173;
    align-self: center;
}

.service-item h3 {
    font-size: 1.45rem;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #000;
}

.service-item p {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
}

/* CONTACTS */
.contact-section {
    background-color: #f5f1e6;
    padding: 8rem 3rem;
    text-align: center;
}

.contact-flex {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    text-align: left;
}

.contact-left {
    flex: 1;
}

.contact-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.contact-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.contact-line {
    width: 80px;
    height: 2px;
    background: #000;
    margin-bottom: 2.5rem;
}

.contact-hours p {
    font-size: 1.2rem;
    margin: 0.3rem 0;
    color: #333;
}

.contact-details {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-item i {
    font-size: 1.6rem;
    color: #8a8173;
}

.contact-item a {
    color: #000;
    text-decoration: none;
    transition: 0.3s ease;
}

.contact-item a:hover {
    color: #555;
}

.contact-logo {
    max-width: 260px;
    opacity: 0;
    animation: fadeUp 1.5s ease-out forwards;
    animation-delay: 0.4s;
}

/* MOBILE */
@media (max-width: 768px) {
    .contact-flex {
        flex-direction: column;
        text-align: center;
    }

    .contact-left {
        text-align: center;
    }

    .contact-line {
        margin-left: auto;
        margin-right: auto;
    }
}
    .nolink {
      color: inherit;
      text-decoration: none;
    }