/* =============================================
   Black and Belonging Public Website Theme
   Clean Black & White Design - BIG FONTS
   ============================================= */

/* Root Variables */
:root {
    --primary-color: #ff014f;
    --secondary-color: #999999;
    --body-bg: #1a1a25;
    --text-color: #ffffff;
    --light-text: #cccccc;
    --white: #ffffff;
    --black: #000000;
    --dark-bg: #1a1a25;
    --border-color: rgba(255, 255, 255, 0.1);
    --card-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
    --border-radius: 0.8rem;
    --transition: 300ms ease-in-out;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--body-bg);
    color: var(--text-color);
    line-height: 1.7;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 0;
}

/* Main content spacing for fixed header */
main {
    margin-top: 0;
}

/* Typography - EXTRA LARGE SIZES (MacBook Pro 13" optimized) */
h1 {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--white);
}

h2 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 28px;
    color: var(--white);
}

h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

h4 {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
}

h5 {
    font-size: 20px;
    font-weight: 600;
}

p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 16px;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ========== HEADER STYLES ========== */
.header_header__hkBsw {
    background: transparent !important;
    backdrop-filter: none !important;
    padding: 20px 0;
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: none !important;
    border-bottom: 1px solid transparent !important;
    transition: all 0.3s ease-in-out !important;
}

/* Header when scrolled */
.header_header__hkBsw.scrolled {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.header_header_in__X3Wbu {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header_logo__fO3Dm img {
    height: 60px;
    width: auto;
}

.header_nav__C-Oe9 {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header_sidebar__M4cP- ul {
    list-style: none;
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.header_sidebar__M4cP- ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    padding: 16px 24px;
    display: block;
    border-radius: 8px;
}

.header_sidebar__M4cP- ul li a:hover {
    background-color: rgba(255, 1, 79, 0.15);
    color: var(--primary-color);
    transform: translateX(5px);
}

.header_action_btn__BxfFa {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header_action_btn__BxfFa:hover {
    background: transparent;
    color: var(--primary-color) !important;
    border-color: var(--primary-color);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 1, 79, 0.4);
}

/* Mobile Header Action */
.header_header_action__ZvxJR {
    display: flex;
    align-items: center;
}

/* Mobile Menu Toggle */
.header_toggle__QY-Vf {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.header_toggle__QY-Vf span {
    display: block;
    width: 28px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
    margin: 7px;
}

.header_toggle__QY-Vf.header_active__wkOF3 span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.header_toggle__QY-Vf.header_active__wkOF3 span:nth-child(2) {
    opacity: 0;
}

.header_toggle__QY-Vf.header_active__wkOF3 span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Desktop menu */
@media (min-width: 992px) {
    .header_nav__C-Oe9 {
        display: flex;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 991px) {
    .header_nav__C-Oe9 {
        position: relative;
    }

    .header_sidebar__M4cP- {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--dark-bg);
        padding: 80px 0 30px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.8);
        overflow-y: auto;
        z-index: 1000;
    }

    .header_sidebar__M4cP-.header_active__wkOF3 {
        right: 0;
    }

    .header_sidebar__M4cP- ul {
        flex-direction: column;
        gap: 0;
    }

    .header_sidebar__M4cP- ul li a {
        padding: 18px 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 0;
    }

    .header_toggle__QY-Vf {
        display: flex;
    }

    .header_action_btn__BxfFa {
        display: none;
    }

    .header_sidebar_logo__D7Z1A {
        position: absolute;
        top: 20px;
        left: 30px;
        height: 45px;
    }

    .header_logo__fO3Dm img {
        height: 45px;
    }

    /* Typography adjustments */
    h1 { font-size: 42px; }
    h2 { font-size: 36px; }
    h3 { font-size: 26px; }
    h4 { font-size: 20px; }

    body {
        font-size: 16px;
    }

    p {
        font-size: 16px;
    }

    .container {
        padding: 0 20px;
    }
}

/* ========== BANNER SECTION ========== */
.banner_banner__hb4cT {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%),
                url('https://storage.googleapis.com/blackandbelonging/website-data/website-logo/homepageBanner-CdXI4qbm.webp') top/cover;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 40px;
    color: white;
    text-align: center;
    position: relative;
}

.banner_banner_in__aIg-q {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.banner_banner_in__aIg-q h1 {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.1;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    color: white;
}

.banner_banner_in__aIg-q p {
    font-size: 24px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .banner_banner__hb4cT {
        min-height: 500px;
        padding: 100px 30px;
    }
    .banner_banner_in__aIg-q h1 {
        font-size: 42px;
    }
    .banner_banner_in__aIg-q p {
        font-size: 18px;
    }
}

/* ========== ACHIEVEMENTS SECTION ========== */
.achievements_achievements__2Vw6H {
    padding: 60px 20px;
    background: var(--dark-bg);
}

.achievements_achievement__3mY8r {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    border-radius: var(--border-radius);
    padding: 50px 30px;
    text-align: center;
    transition: var(--transition);
    margin-bottom: 30px;
}

.achievements_achievement__3mY8r:hover {
    box-shadow: 0 8px 40px rgba(255, 1, 79, 0.2);
    transform: translateY(-8px);
    border-color: var(--primary-color);
}

.achievements_icon__4nZ9S {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    background: rgba(255, 1, 79, 0.1);
    border-radius: 50%;
}

.achievements_icon__4nZ9S svg {
    width: 50px;
    height: 50px;
    stroke-width: 2.5px;
}

.achievements_achievement__3mY8r h3 {
    font-size: 72px;
    font-weight: 900;
    margin: 25px 0;
    color: var(--primary-color);
    line-height: 1;
}

.achievements_achievement__3mY8r h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--light-text);
    margin: 0;
}

/* ========== MIXTAPES SECTION ========== */
.mixtapes_mixtapes__1qJ9K {
    padding: 60px 20px;
    background: var(--dark-bg);
}

.mixtapes_mixtapes_header__2rT7L,
.news_news_header__3tY9Z {
    text-align: center;
    margin-bottom: 40px;
}

.mixtapes_mixtapes_header__2rT7L h2,
.news_news_header__3tY9Z h2 {
    font-size: 56px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
}

/* Card Styles */
.mixtape_card__1aB2c,
.news_card__5fG6h {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
    height: 100%;
}

.mixtape_card__1aB2c:hover,
.news_card__5fG6h:hover {
    box-shadow: 0 12px 50px rgba(255, 1, 79, 0.3);
    transform: translateY(-8px);
    border-color: var(--primary-color);
}

.mixtape_card__1aB2c a,
.news_card__5fG6h a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mixtape_card_image__2cD3e,
.news_card_image__6gH7i {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 1, 79, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.news_card_image__6gH7i {
    padding-top: 60%;
}

.mixtape_card_image__2cD3e img,
.news_card_image__6gH7i img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mixtape_card__1aB2c:hover .mixtape_card_image__2cD3e img,
.news_card__5fG6h:hover .news_card_image__6gH7i img {
    transform: scale(1.05);
}

.mixtape_badge__5gH6i,
.news_badge__7hI8j {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.mixtape_card_content__3dE4f,
.news_card_content__7hI8j {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.mixtape_card_content__3dE4f h3,
.news_card_content__7hI8j h3 {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 16px 0;
    color: var(--white);
    line-height: 1.3;
}

.mixtape_card_content__3dE4f p,
.news_card_content__7hI8j p {
    font-size: 16px;
    color: var(--light-text);
    margin: 0 0 20px 0;
    line-height: 1.7;
    flex-grow: 1;
}

.mixtape_card_meta__4eF5g,
.news_card_date__8iJ9k {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--light-text);
    font-weight: 600;
    margin-top: auto;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mixtapes_loading__1mR2D,
.news_loading__2nS5E {
    padding: 60px;
    text-align: center;
    color: var(--light-text);
    font-size: 20px;
}

/* ========== NEWS SECTION ========== */
.news_news__2Hx8W {
    padding: 60px 20px;
    background: var(--dark-bg);
}

/* ========== CONTACT SECTION ========== */
.contact_contact__1Zx7Y {
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.75) 100%),
                url('https://storage.googleapis.com/blackandbelonging/website-data/website-logo/latest_banner-BWEuhBcy.webp') center/cover;
    background-attachment: fixed;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact_contact__1Zx7Y::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(3px);
    z-index: 0;
}

.contact_contact_in__2wK9L {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact_box__3aB4D h2 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.2;
    color: white;
}

.contact_box__3aB4D p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
}

/* ========== BUTTON STYLES ========== */
.btn_linkButton__iZaOx {
    display: inline-block;
    padding: 18px 48px;
    border-radius: var(--border-radius);
    font-weight: 800;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    background-color: var(--primary-color);
    color: white;
}

.btn_linkButton__iZaOx:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 1, 79, 0.4);
}

.mixtapes_mixtapes__1qJ9K .btn_linkButton__iZaOx,
.news_news__2Hx8W .btn_linkButton__iZaOx {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.mixtapes_mixtapes__1qJ9K .btn_linkButton__iZaOx:hover,
.news_news__2Hx8W .btn_linkButton__iZaOx:hover {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 1, 79, 0.4);
}

.contact_box__3aB4D .btn_linkButton__iZaOx {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.contact_box__3aB4D .btn_linkButton__iZaOx:hover {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 1, 79, 0.4);
}

/* ========== FOOTER STYLES ========== */
.footer_footer__2-_EC {
    background: var(--dark-bg);
    color: white;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer_footer_in__i2gD4 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer_footer_logo__oqLch p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin: 25px 0;
    font-size: 16px;
}

.footer_footer_logo__oqLch .btn_linkButton__iZaOx {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
}

.btn_linkButton__iZaOx {
    padding: 10px 26px;
    font-size: 14px;
}

.footer_logo__YiYZ9 img {
    height: 60px;
}

.footer_footer_in__i2gD4 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer_footer_in__i2gD4 ul h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: white;
    font-weight: 800;
}

.footer_footer_in__i2gD4 ul li {
    margin-bottom: 16px;
}

.footer_footer_in__i2gD4 ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 15px;
    text-transform: capitalize;
}

.footer_footer_in__i2gD4 ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer_newsletter__1Q3Wn h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 800;
}

.footer_newsletter__1Q3Wn p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.7;
}

.footer_newsletter__1Q3Wn form {
    display: flex;
    gap: 12px;
}

.footer_newsletter__1Q3Wn input {
    flex: 1;
    padding: 16px 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 15px;
    transition: var(--transition);
}

.footer_newsletter__1Q3Wn input:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.15);
}

.footer_newsletter__1Q3Wn input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer_newsletter__1Q3Wn button {
    width: 55px;
    height: 55px;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    background: var(--primary-color);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer_newsletter__1Q3Wn button:hover {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 1, 79, 0.4);
}

.footer_footer_end__Wr--R {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer_footer_end__Wr--R p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-size: 14px;
}

.footer_footer_end__Wr--R ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.footer_footer_end__Wr--R ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    font-size: 20px;
    display: inline-block;
}

.footer_footer_end__Wr--R ul li a:hover {
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.2);
    filter: drop-shadow(0 4px 12px rgba(255, 1, 79, 0.5));
}

/* ========== RESPONSIVE - TABLET ========== */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Sections */
    .achievements_achievements__2Vw6H,
    .mixtapes_mixtapes__1qJ9K,
    .news_news__2Hx8W,
    .contact_contact__1Zx7Y {
        padding: 60px 20px;
    }

    .banner_banner__hb4cT {
        min-height: 500px;
        padding: 80px 20px;
    }

    .banner_banner_in__aIg-q h1 {
        font-size: 36px;
    }

    .banner_banner_in__aIg-q p {
        font-size: 18px;
    }

    /* Headers */
    .mixtapes_mixtapes_header__2rT7L h2,
    .news_news_header__3tY9Z h2 {
        font-size: 32px;
    }

    .contact_box__3aB4D h2 {
        font-size: 32px;
    }

    .contact_box__3aB4D p {
        font-size: 16px;
    }

    /* Achievement cards */
    .achievements_achievement__3mY8r {
        padding: 40px 20px;
        margin-bottom: 20px;
    }

    .achievements_achievement__3mY8r h3 {
        font-size: 48px;
    }

    .achievements_achievement__3mY8r h4 {
        font-size: 16px;
    }

    .achievements_icon__4nZ9S {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .achievements_icon__4nZ9S svg {
        width: 40px;
        height: 40px;
    }

    /* Cards */
    .mixtape_card_content__3dE4f,
    .news_card_content__7hI8j {
        padding: 24px;
    }

    .mixtape_card_content__3dE4f h3,
    .news_card_content__7hI8j h3 {
        font-size: 20px;
    }

    .mixtape_card_content__3dE4f p,
    .news_card_content__7hI8j p {
        font-size: 15px;
    }

    /* Buttons */
    .btn_linkButton__iZaOx {
        padding: 16px 36px;
        font-size: 14px;
    }

    /* Footer */
    .footer_footer_in__i2gD4 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer_footer_end__Wr--R {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .footer_newsletter__1Q3Wn form {
        flex-direction: column;
    }

    .footer_newsletter__1Q3Wn button {
        width: 100%;
        height: 50px;
    }
}

/* ========== RESPONSIVE - MOBILE ========== */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    /* Typography */
    h1 { font-size: 32px; }
    h2 { font-size: 28px; }
    h3 { font-size: 22px; }
    h4 { font-size: 18px; }

    body {
        font-size: 15px;
    }

    p {
        font-size: 15px;
    }

    /* Sections */
    .achievements_achievements__2Vw6H,
    .mixtapes_mixtapes__1qJ9K,
    .news_news__2Hx8W,
    .contact_contact__1Zx7Y {
        padding: 40px 16px;
    }

    .banner_banner__hb4cT {
        min-height: 400px;
        padding: 60px 16px;
    }

    .banner_banner_in__aIg-q h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .banner_banner_in__aIg-q p {
        font-size: 16px;
    }

    /* Section Headers */
    .mixtapes_mixtapes_header__2rT7L,
    .news_news_header__3tY9Z {
        margin-bottom: 40px;
    }

    .mixtapes_mixtapes_header__2rT7L h2,
    .news_news_header__3tY9Z h2 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .contact_box__3aB4D h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .contact_box__3aB4D p {
        font-size: 15px;
        margin-bottom: 30px;
    }

    /* Achievement cards */
    .achievements_achievement__3mY8r {
        padding: 30px 16px;
    }

    .achievements_achievement__3mY8r h3 {
        font-size: 40px;
        margin: 20px 0;
    }

    .achievements_achievement__3mY8r h4 {
        font-size: 14px;
    }

    .achievements_icon__4nZ9S {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }

    .achievements_icon__4nZ9S svg {
        width: 32px;
        height: 32px;
    }

    /* Cards */
    .mixtape_card_content__3dE4f,
    .news_card_content__7hI8j {
        padding: 20px;
    }

    .mixtape_card_content__3dE4f h3,
    .news_card_content__7hI8j h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .mixtape_card_content__3dE4f p,
    .news_card_content__7hI8j p {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .mixtape_card_meta__4eF5g,
    .news_card_date__8iJ9k {
        font-size: 12px;
    }

    .mixtape_badge__5gH6i,
    .news_badge__7hI8j {
        padding: 8px 16px;
        font-size: 11px;
        top: 12px;
        left: 12px;
    }

    /* Buttons */
    .btn_linkButton__iZaOx {
        padding: 14px 32px;
        font-size: 13px;
        letter-spacing: 0.5px;
    }

    /* Footer */
    .footer_footer__2-_EC {
        padding: 50px 0 30px;
    }

    .footer_footer_in__i2gD4 {
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer_footer_in__i2gD4 ul h3,
    .footer_newsletter__1Q3Wn h3 {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .footer_footer_logo__oqLch p,
    .footer_newsletter__1Q3Wn p {
        font-size: 14px;
        margin: 16px 0;
    }

    .footer_footer_in__i2gD4 ul li {
        margin-bottom: 12px;
    }

    .footer_footer_in__i2gD4 ul li a {
        font-size: 14px;
    }

    .footer_logo__YiYZ9 img {
        height: 50px;
    }

    .footer_newsletter__1Q3Wn input {
        padding: 14px 20px;
        font-size: 14px;
    }

    .footer_newsletter__1Q3Wn button {
        width: 100%;
        height: 48px;
    }

    .footer_footer_end__Wr--R {
        padding-top: 30px;
    }

    .footer_footer_end__Wr--R p {
        font-size: 12px;
    }

    .footer_footer_end__Wr--R ul {
        gap: 16px;
    }

    .footer_footer_end__Wr--R ul li a {
        font-size: 18px;
    }
}

.d-lg-none {
    display: none;
}

@media (max-width: 991px) {
    .d-lg-none {
        display: block;
    }
}

.btn_fluid__gfyZG {
    width: 100%;
    text-align: center;
    display: block;
}

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

.mt-4 {
    margin-top: 32px;
}
