:root {
    --primary-background: #000000;
    --secondary-background: #0a192f;
    --accent-color: #1e90ff;
    --text-on-dark: #f9fafb;
    --secondary-text-on-dark: #9ca3af;
    --button-color: #0047ab;
    --button-text: #ffffff;
    --gradient-primary: linear-gradient(135deg, #000000 0%, #0a192f 100%);
    --gradient-accent: linear-gradient(90deg, #1e90ff 0%, #0047ab 100%);
    --font-family: 'Inter', sans-serif;
    --headings-weight: 700;
    --body-weight: 400;
    --border-radius: 8px;
    --spacing-unit: 1.5rem;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--primary-background);
    color: var(--text-on-dark);
    font-family: var(--font-family);
    font-weight: var(--body-weight);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: var(--headings-weight);
    line-height: 1.2;
    margin-bottom: var(--spacing-unit);
    color: inherit;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 6vw, 3rem);
}

a,
a:hover,
a:focus {
    text-decoration: none;
    color: var(--accent-color);
    transition: color 0.3s ease, opacity 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 700;
    transition: transform 0.2s ease, background-color 0.3s ease;
}

button:active {
    transform: scale(0.98);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

@media (max-width: 768px) {

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    h1 {
        font-size: 2.5rem;
    }

    .long-text-break {
        word-break: break-all;
    }
}

@media (min-width: 1024px) {
    body {
        font-size: 1.1rem;
    }
}

/* ===== header_section ===== */
.site-header {
    background-color: var(--primary-background);
    border-bottom: 1px solid var(--secondary-background);
    position: relative;
    z-index: 1000;
}

.nav-link-custom {
    color: var(--text-on-dark);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link-custom:hover {
    color: var(--accent-color);
}

.mobile-menu {
    background-color: var(--secondary-background);
    display: none;
}

.mobile-menu.is-open {
    display: block;
}

.btn-cta {
    background-color: var(--button-color);
    color: var(--button-text);
    border: none;
    transition: opacity 0.3s;
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
}

.btn-cta:hover {
    opacity: 0.9;
    color: var(--button-text);
}

/* ===== hero_section ===== */
#hero {
    background: var(--gradient-primary);
    overflow: hidden;
    position: relative;
    width: 100%;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-img-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.hero-overlay-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, var(--primary-background) 100%);
}

.hero-z-index {
    z-index: 1;
}

.text-custom-primary {
    color: var(--text-on-dark) !important;
}

.text-custom-secondary {
    color: var(--secondary-text-on-dark) !important;
}

.btn-custom-hero {
    background-color: var(--button-color) !important;
    color: var(--button-text) !important;
    padding: 1.25rem 3rem;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    border: none;
    font-size: 1.1rem;
}

.btn-custom-hero i {
    color: var(--button-text) !important;
    font-size: 1.25rem;
}

/* ===== about_bunny ===== */
#about {
    width: 100%;
    position: relative;
}

#about img {
    transition: transform 0.4s ease-in-out;
}

#about img:hover {
    transform: scale(1.03);
}

#about .rounded-3 {
    border: 1px solid rgba(30, 144, 255, 0.1);
    transition: background 0.3s ease;
}

#about .rounded-3:hover {
    background: rgba(30, 144, 255, 0.05) !important;
    border-color: var(--accent-color);
}

/* ===== discography_list ===== */
#albums .js-album-card {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#albums .js-album-card:hover {
    transform: translateY(-10px);
}

#albums .card {
    transition: box-shadow 0.3s ease;
}

#albums .js-album-card:hover .card {
    box-shadow: 0 1rem 3rem rgba(30, 144, 255, 0.2) !important;
}

/* ===== style_description ===== */
#style {
    position: relative;
    overflow: hidden;
}

.style-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
}

.style-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.style-accent-box {
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* ===== career_milestones ===== */
.milestone-card {
    background: rgba(10, 25, 47, 0.7);
    border: 1px solid rgba(30, 144, 255, 0.2);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(10px);
}

.milestone-card:hover {
    transform: translateY(-12px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(30, 144, 255, 0.1);
}

/* ===== artist_gallery ===== */
#gallery {
    position: relative;
    border-top: 1px solid rgba(30, 144, 255, 0.2);
}

.gallery-card-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 2px solid var(--accent-color);
    aspect-ratio: 1 / 1;
    background: var(--primary-background);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: none;
}

/* ===== artist_quote ===== */
#quote {
    width: 100%;
    background: var(--gradient-primary);
    padding: 120px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.quote-text {
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    line-height: 1.1;
}

.quote-author-line {
    height: 2px;
    width: 40px;
    background: var(--accent-color);
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
}

/* ===== blog_section ===== */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(30, 144, 255, 0.2) !important;
}

.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: var(--primary-background);
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 10px;
}

.js-share-action {
    transition: all 0.3s ease;
}

.js-share-action:hover {
    background: var(--accent-color);
    color: var(--button-text) !important;
}

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* ===== footer ===== */
#footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-nav-link:hover {
    color: var(--accent-color) !important;
}

.footer-logo {
    filter: brightness(0) invert(1);
}