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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Smoke particles */
.smoke-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.smoke-particle {
    position: absolute;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 30%, transparent 70%);
    border-radius: 50%;
    animation: smokeRise 20s infinite linear;
}

.smoke-particle:nth-child(1) {
    width: 80px;
    height: 80px;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.smoke-particle:nth-child(2) {
    width: 60px;
    height: 60px;
    left: 30%;
    animation-delay: 5s;
    animation-duration: 20s;
}

.smoke-particle:nth-child(3) {
    width: 100px;
    height: 100px;
    left: 60%;
    animation-delay: 10s;
    animation-duration: 30s;
}

.smoke-particle:nth-child(4) {
    width: 70px;
    height: 70px;
    left: 80%;
    animation-delay: 15s;
    animation-duration: 22s;
}

.smoke-particle:nth-child(5) {
    width: 90px;
    height: 90px;
    left: 45%;
    animation-delay: 8s;
    animation-duration: 28s;
}

@keyframes smokeRise {
    0% {
        bottom: -100px;
        opacity: 0;
        transform: translateX(0) scale(0.5);
    }
    10% {
        opacity: 0.7;
    }
    50% {
        opacity: 0.4;
        transform: translateX(50px) scale(1);
    }
    90% {
        opacity: 0.1;
    }
    100% {
        bottom: 100vh;
        opacity: 0;
        transform: translateX(-30px) scale(1.5);
    }
}

@keyframes smokeFloat {
    0% {
        transform: translate(0%, 0%) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(5%, -10%) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(-8%, 5%) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translate(3%, -5%) rotate(270deg) scale(1.05);
    }
    100% {
        transform: translate(0%, 0%) rotate(360deg) scale(1);
    }
}

@keyframes smokeFloat2 {
    0% {
        transform: translate(0%, 0%) rotate(0deg) scale(0.8);
    }
    33% {
        transform: translate(-5%, 8%) rotate(120deg) scale(1.2);
    }
    66% {
        transform: translate(7%, -3%) rotate(240deg) scale(0.7);
    }
    100% {
        transform: translate(0%, 0%) rotate(360deg) scale(0.8);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #4ecdc4;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                radial-gradient(circle at 50% 50%, #ff6b6b 0%, #4ecdc4 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: grain 8s infinite;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -10%); }
    30% { transform: translate(3%, -15%); }
    50% { transform: translate(-5%, 5%); }
    70% { transform: translate(15%, 0%); }
    90% { transform: translate(-10%, 15%); }
}

.hero-content {
    z-index: 2;
    position: relative;
    transition: transform 0.1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #cccccc;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-tagline {
    font-size: 1.2rem;
    color: #4ecdc4;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #1a1a1a;
    transform: translateY(-2px);
}

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

/* Music Section */
.music-section {
    padding: 6rem 0;
    background: #1a1a1a;
}

.music-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.albums-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.album-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.album-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    filter: brightness(1.1);
}

.album-card.featured {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
    border: 1px solid rgba(78, 205, 196, 0.3);
}

.album-cover {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 15px;
    background: linear-gradient(45deg, #333, #666);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.album-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.album-card p {
    text-align: center;
    color: #cccccc;
    margin-bottom: 1rem;
}

.tracks {
    margin: 1.5rem 0;
}

.tracks ul {
    list-style: none;
    padding-left: 1rem;
}

.tracks li {
    color: #cccccc;
    margin: 0.5rem 0;
    position: relative;
}

.tracks li::before {
    content: "♪";
    color: #4ecdc4;
    margin-right: 0.5rem;
}

.streaming-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.streaming-links a {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.streaming-links a:hover {
    background: #4ecdc4;
    color: #1a1a1a;
}

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

.streaming-platforms h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.platform-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.platform-btn {
    padding: 1.5rem 2rem;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.platform-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.platform-btn:hover::before {
    left: 100%;
}

.platform-btn.spotify { 
    background: linear-gradient(135deg, #1DB954, #1ed760);
    border-color: #1ed760;
}

.platform-btn.apple { 
    background: linear-gradient(135deg, #FA243C, #ff4757);
    border-color: #ff4757;
}

.platform-btn.bandcamp { 
    background: linear-gradient(135deg, #629AA0, #74b9c7);
    border-color: #74b9c7;
}

.platform-btn.amazon { 
    background: linear-gradient(135deg, #FF9900, #ffb347);
    border-color: #ffb347;
}

.platform-btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    filter: brightness(1.2) saturate(1.3);
}

.platform-btn:active {
    transform: translateY(-5px) scale(1.02);
}

/* Fundraiser Section */
.fundraiser-section {
    padding: 6rem 0;
    background: #1f1f1f;
}

.fundraiser-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fundraiser-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.fundraiser-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #cccccc;
}

.fundraiser-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.fundraiser-btn {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1), rgba(255, 107, 107, 0.1));
    border: 2px solid rgba(78, 205, 196, 0.3);
    border-radius: 20px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    min-width: 250px;
    text-align: center;
}

.fundraiser-btn:hover {
    transform: translateY(-5px);
    border-color: #4ecdc4;
    box-shadow: 0 15px 40px rgba(78, 205, 196, 0.2);
}

.fundraiser-btn strong {
    font-size: 1.3rem;
    color: #4ecdc4;
    margin-bottom: 0.5rem;
}

.fundraiser-btn span {
    color: #cccccc;
    font-size: 0.9rem;
}

.fundraiser-thanks {
    font-style: italic;
    color: #4ecdc4 !important;
    font-weight: 600;
}

/* Crown Section */
.crown-section {
    padding: 6rem 0;
    background: #1a1a1a;
}

.crown-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.crown-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.crown-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #cccccc;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: #2d2d2d;
}

.about-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #cccccc;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #4ecdc4;
}

.stat-label {
    color: #cccccc;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Lyrics Section */
.lyrics-section {
    padding: 6rem 0;
    background: #333333;
}

.lyrics-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lyrics-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.lyrics-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #cccccc;
}

/* Stream Showcase */
.stream-showcase {
    margin: 2rem 0;
    text-align: center;
}

.stream-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    margin-bottom: 1rem;
    border: 2px solid rgba(78, 205, 196, 0.3);
}

.stream-caption {
    font-style: italic;
    color: #4ecdc4;
    font-size: 1rem;
    margin-top: 1rem;
}

/* Battle Embed */
.battle-embed {
    margin: 2rem 0;
    text-align: center;
}

.battle-embed iframe {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 2px solid rgba(255, 107, 107, 0.3);
}

.battle-caption {
    font-style: italic;
    color: #ff6b6b;
    font-size: 1rem;
    margin-top: 1rem;
}

/* Controversies Section */
.controversies-section {
    padding: 6rem 0;
    background: #2a2a2a;
}

.controversies-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.controversy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.controversy-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.controversy-image {
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 2px solid rgba(255, 107, 107, 0.3);
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.controversy-image:hover {
    transform: scale(1.05);
}

.controversy-text {
    flex: 1;
}

.controversy-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #cccccc;
}

.controversy-text strong {
    color: #ff6b6b;
}

.video-embed {
    max-width: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 2px solid rgba(255, 107, 107, 0.3);
    flex-shrink: 0;
}

.video-embed iframe {
    width: 100%;
    height: 200px;
    border: none;
}

/* Connect Section */
.connect-section {
    padding: 6rem 0;
    background: #1a1a1a;
}

.connect-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.social-links .social-btn {
    position: relative !important;
    transform: none !important;
}

.social-btn {
    display: block;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.social-btn.instagram:hover { border-color: #E4405F; }
.social-btn.tiktok:hover { border-color: #000000; }
.social-btn.facebook:hover { border-color: #1877F2; }
.social-btn.twitter:hover { border-color: #1DA1F2; }

.social-btn span {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.social-btn small {
    color: #cccccc;
    font-size: 0.9rem;
}

.contact-info {
    text-align: center;
    color: #cccccc;
}

.contact-info p {
    margin: 1rem 0;
}

.location {
    font-size: 1.1rem;
    color: #4ecdc4;
}

/* Footer */
.footer {
    background: #000000;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
    color: #cccccc;
    margin: 0.5rem 0;
}

.footer-tagline {
    color: #4ecdc4;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .albums-grid {
        grid-template-columns: 1fr;
    }
    
    .platform-links {
        flex-direction: column;
        align-items: center;
    }
    
    .stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .social-links {
        grid-template-columns: 1fr;
    }
    
    .fundraiser-links {
        flex-direction: column;
        align-items: center;
    }
    
    .controversy-item {
        flex-direction: column;
        text-align: center;
    }
    
    .controversy-image {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .video-embed {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .battle-embed iframe {
        width: 100%;
        max-width: 800px;
        height: 450px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .music-section h2,
    .about-section h2,
    .connect-section h2 {
        font-size: 2rem;
    }
}

/* Image Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s;
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    background: rgba(0,0,0,0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: rgba(255,0,0,0.7);
}

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