/* Modern Style for Miloverse - 21st Century Design */

/* CSS Variables */
:root {
    --primary-bg: #0a0a0f;
    --secondary-bg: #1a1a2e;
    --accent-bg: #16213e;
    --card-bg: rgba(26, 26, 46, 0.8);
    --glass-bg: rgba(26, 26, 46, 0.1);
    
    --primary-purple: #8b5cf6;
    --secondary-purple: #7c3aed;
    --accent-purple: #a855f7;
    --deep-purple: #4c1d95;
    --light-purple: #c4b5fd;
    
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    
    --border-color: rgba(139, 92, 246, 0.3);
    --shadow-color: rgba(139, 92, 246, 0.2);
    
    --gradient-1: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #7c3aed 100%);
    --gradient-2: linear-gradient(135deg, #4c1d95 0%, #7c3aed 50%, #8b5cf6 100%);
    --gradient-3: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f172a 100%);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fallback: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

html {
    scroll-behavior: smooth;
    -webkit-scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Space Grotesk', sans-serif;
    background: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    position: relative;
}

p {
    position: relative;
    z-index: 2;
}

a {
    position: relative;
    z-index: 2;
}

li {
    position: relative;
    z-index: 2;
}

ul {
    position: relative;
    z-index: 2;
}

table {
    position: relative;
    z-index: 2;
}

tr {
    position: relative;
    z-index: 2;
}

td {
    position: relative;
    z-index: 2;
}

th {
    position: relative;
    z-index: 2;
}

span {
    position: relative;
    z-index: 2;
}

div {
    position: relative;
    z-index: 2;
}

button {
    position: relative;
    z-index: 2;
}

img {
    position: relative;
    z-index: 2;
}

video {
    position: relative;
    z-index: 2;
}

iframe {
    position: relative;
    z-index: 2;
}

section {
    position: relative;
    z-index: 2;
}

header {
    position: relative;
    z-index: 2;
}

nav {
    position: relative;
    z-index: 2;
}

main {
    position: relative;
    z-index: 2;
}

footer {
    position: relative;
    z-index: 2;
}

article {
    position: relative;
    z-index: 2;
}

aside {
    position: relative;
    z-index: 2;
}

form {
    position: relative;
    z-index: 2;
}

input {
    position: relative;
    z-index: 2;
}

/* Animated Background - Uproszczone */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--primary-bg);
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.01) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.01) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(124, 58, 237, 0.005) 0%, transparent 50%);
    /* Removed animation to fix visual glitches */
    pointer-events: none;
}

.gradient-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(26, 26, 46, 0.1) 0%, 
        rgba(22, 33, 62, 0.05) 50%, 
        rgba(15, 23, 42, 0.1) 100%);
    /* Removed animation to fix visual glitches */
    pointer-events: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
    z-index: 2;
}

.miloverse-text {
    font-size: 5rem;
    font-weight: 800;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
    position: relative;
    z-index: 2;
}

/* Header Styles */
.hero-header {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.header-container {
    width: 100%;
    max-width: 1400px;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

.language-selector {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 20;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
    column-gap: 0.5rem;
    row-gap: 0.5rem;
    gap: 0.5rem;
}

.lang-btn {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
    column-gap: 0.5rem;
    row-gap: 0.5rem;
    gap: 0.5rem;
}

.lang-btn:hover {
    background: var(--gradient-1);
    border-color: var(--primary-purple);
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    position: relative;
    z-index: 2;
}

.lang-btn.active {
    background: var(--gradient-1);
    border-color: var(--primary-purple);
    -webkit-box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
    -moz-box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
    position: relative;
    z-index: 2;
}

.hero-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: grid;
    -ms-grid-columns: 1fr auto;
    grid-template-columns: 1fr auto;
    -webkit-column-gap: 4rem;
    -moz-column-gap: 4rem;
    column-gap: 4rem;
    row-gap: 4rem;
    gap: 4rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.hero-text {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.hero-avatar {
    position: relative;
    z-index: 2;
}

.avatar-container {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--border-color);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
    z-index: 2;
}

.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.avatar-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: var(--gradient-1);
    opacity: 0.3;
    -webkit-filter: blur(20px);
    -moz-filter: blur(20px);
    filter: blur(20px);
    -webkit-animation: glow 3s ease-in-out infinite alternate;
    -moz-animation: glow 3s ease-in-out infinite alternate;
    animation: glow 3s ease-in-out infinite alternate;
    z-index: 1;
}

@-webkit-keyframes glow {
    0% { opacity: 0.2; -webkit-transform: scale(1); transform: scale(1); }
    100% { opacity: 0.4; -webkit-transform: scale(1.1); transform: scale(1.1); }
}

@-moz-keyframes glow {
    0% { opacity: 0.2; -moz-transform: scale(1); transform: scale(1); }
    100% { opacity: 0.4; -moz-transform: scale(1.1); transform: scale(1.1); }
}

@keyframes glow {
    0% { opacity: 0.2; transform: scale(1); }
    100% { opacity: 0.4; transform: scale(1.1); }
}

/* Navigation */
.main-nav {
    background: var(--primary-bg);
    border-bottom: 1px solid var(--border-color);
    /* Removed sticky positioning to improve mobile reading experience */
    z-index: 50;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 1rem;
    padding: 1rem 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    border: 1px solid transparent;
    position: relative;
    z-index: 2;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--border-color);
    transform: translateY(-2px);
    position: relative;
    z-index: 2;
}

.nav-icon {
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

/* Content Sections */
.content-section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-container {
    background: var(--secondary-bg);
    border-radius: 25px;
    padding: 4rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.section-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
    opacity: 0.7;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-purple);
    position: relative;
    z-index: 2;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: var(--gradient-1);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
    z-index: 2;
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-text {
    position: relative;
    z-index: 2;
}

.quote-card {
    background: var(--accent-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    z-index: 2;
}

.quote-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-1);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

blockquote {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
    position: relative;
    z-index: 2;
}

.quote-icon {
    color: var(--primary-purple);
    font-size: 2rem;
    font-weight: bold;
    position: relative;
    z-index: 2;
}

.highlight {
    color: var(--primary-purple);
    font-weight: 600;
    position: relative;
    z-index: 2;
}

/* Web3 Section */
.web3-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.web3-text {
    position: relative;
    z-index: 2;
}

.web3-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
}

.tech-stack {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.tech-item {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    transition: var(--transition);
    min-width: 120px;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.tech-item:hover {
    border-color: var(--primary-purple);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.2);
    position: relative;
    z-index: 2;
}

.tech-icon {
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
}

/* Gaming Section */
.gaming-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.gaming-text {
    position: relative;
    z-index: 2;
}

.gaming-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
}

.launchers {
    margin: 2rem 0;
    position: relative;
    z-index: 2;
}

.launchers h3 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.launcher-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.launcher-btn {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    font-weight: 500;
}

.launcher-btn:hover {
    border-color: var(--primary-purple);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.2);
    position: relative;
    z-index: 2;
}

.launcher-icon {
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

.games-grid {
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.games-grid h3 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.games-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
    position: relative;
    z-index: 2;
}

.game-link {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    text-decoration: none;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    font-weight: 500;
    display: block;
}

.game-link:hover {
    color: var(--text-primary);
    border-color: var(--primary-purple);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.2);
    position: relative;
    z-index: 2;
}

/* Music Section */
.music-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.music-text {
    position: relative;
    z-index: 2;
}

.music-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
}

.artists-grid {
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.artists-grid h3 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.artists-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
    position: relative;
    z-index: 2;
}

.artist-link {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    text-decoration: none;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    font-weight: 500;
    display: block;
}

.artist-link:hover {
    color: var(--text-primary);
    border-color: var(--primary-purple);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.2);
    position: relative;
    z-index: 2;
}

/* Songs Table */
.songs-table-container {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
    position: relative;
    z-index: 2;
}

.songs-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--secondary-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 2;
}

.songs-table th,
.songs-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 2;
}

.songs-table th {
    background: var(--accent-bg);
    color: var(--primary-purple);
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.songs-table tr:hover {
    background: rgba(139, 92, 246, 0.1);
    position: relative;
    z-index: 2;
}

.songs-table a {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.songs-table a:hover {
    color: var(--accent-purple);
    text-decoration: underline;
    position: relative;
    z-index: 2;
}

/* NFT Section */
.nft-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.nft-video-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    z-index: 2;
}

.nft-video {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(139, 92, 246, 0.1) 0%, 
        transparent 50%, 
        rgba(168, 85, 247, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Spotify Section */
.spotify-section {
    padding: 4rem 2rem;
    background: var(--primary-bg);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.spotify-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.spotify-section .section-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.spotify-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
    z-index: 2;
}

.spotify-section .title-underline {
    width: 100px;
    height: 3px;
    background: var(--gradient-1);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
    z-index: 2;
}

.spotify-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
    position: relative;
    z-index: 2;
}

/* Footer */
.main-footer {
    background: var(--primary-bg);
    border-top: 1px solid var(--border-color);
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.5rem;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.social-link:hover {
    color: var(--text-primary);
    border-color: var(--primary-purple);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.2);
    position: relative;
    z-index: 2;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    position: relative;
    z-index: 2;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border: none;
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
    z-index: 1000;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
    z-index: 1000;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
    position: relative;
    z-index: 1000;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .miloverse-text {
        font-size: 4rem;
    }
    
    .section-container {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .miloverse-text {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .content-section {
        padding: 3rem 1rem;
    }
    
    .section-container {
        padding: 2rem 1.5rem;
    }
    
    .tech-stack {
        flex-direction: column;
        align-items: center;
    }
    
    .games-list,
    .artists-list {
        grid-template-columns: 1fr;
    }
    
    .songs-table th,
    .songs-table td {
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .miloverse-text {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .language-selector {
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: 2rem;
        justify-content: center;
    }
    
    .avatar-container {
        width: 150px;
        height: 150px;
    }
    
    .spotify-section {
        padding: 2rem 1rem;
    }
    
    .spotify-section .section-title {
        font-size: 2rem;
    }
} 