/* Base Styles */
:root {
    --primary-color: #00ff66;
    --primary-dark: #00cc33;
    --secondary-color: #111111;
    --text-color: #ffffff;
    --text-secondary: #cccccc;
    --background-dark: #000000;
    --background-light: #181818;
    --accent-color: #1DB954;
    --section-padding: 100px 0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-dark);
    color: var(--text-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

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

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    letter-spacing: 1px;
}

.section-title span {
    color: var(--primary-color);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 255, 102, 0.2);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.9)), url('https://via.placeholder.com/1920x1080');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(0, 255, 102, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

/* About Section */
.about-section {
    padding: var(--section-padding);
    background-color: var(--background-light);
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.5);
}

.about-image::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-color);
    border-radius: 10px;
    z-index: -1;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.about-text .subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat h4 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Music Section */
.music-section {
    padding: var(--section-padding);
    background-color: var(--background-dark);
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.music-card {
    background-color: var(--background-light);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.music-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 255, 102, 0.2);
}

.music-thumb {
    position: relative;
    overflow: hidden;
}

.music-thumb img {
    width: 100%;
    transition: all 0.5s ease;
}

.music-card:hover .music-thumb img {
    transform: scale(1.05);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.play-btn i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.music-card:hover .play-btn {
    opacity: 1;
}

.music-card h3 {
    padding: 20px 20px 5px;
}

.music-card p {
    padding: 0 20px 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Concert Section */
.concert-section {
    padding: var(--section-padding);
    background-color: var(--background-light);
}

.concert-grid {
    display: grid;
    gap: 20px;
}

.concert-card {
    display: flex;
    background-color: var(--background-dark);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.concert-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 20px rgba(0, 255, 102, 0.1);
}

.date {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 100px;
}

.date h3 {
    font-size: 2rem;
    font-weight: 700;
}

.concert-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.concert-info h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.concert-info p {
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.concert-info i {
    margin-right: 10px;
    color: var(--primary-color);
}

/* Merchandise Section */
.merch-section {
    padding: var(--section-padding);
    background-color: var(--background-dark);
}

.merch-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-secondary);
}

.merch-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.merch-card {
    background-color: var(--background-light);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.merch-image {
    position: relative;
    overflow: hidden;
}

.merch-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.merch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.merch-card:hover .merch-overlay {
    opacity: 1;
}

.merch-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.2rem;
}

.merch-card p {
    padding: 0 20px 15px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.price {
    padding: 0 20px 20px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Glow Effect for Merchandise */
.merch-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 30%;
    bottom: -10px;
    left: 0;
    background: radial-gradient(ellipse at center, rgba(0, 255, 102, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(20px);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: -1;
}

.merch-card:hover::before {
    opacity: 1;
}

/* Blogs Section */
.blogs-section {
    padding: var(--section-padding);
    background-color: var(--background-light);
}

.blogs-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: var(--background-dark);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-date {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.blog-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.blog-content p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    position: relative;
}

.read-more::after {
    content: "→";
    margin-left: 5px;
    transition: all 0.3s ease;
}

.read-more:hover::after {
    margin-left: 10px;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    padding: 80px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-logo p {
    color: var(--text-secondary);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--background-light);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.social-links i {
    font-size: 1.2rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-bottom a {
    color: var(--primary-color);
}

/* Media Queries */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-image::before {
        display: none;
    }
    
    .stats {
        justify-content: center;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .concert-card {
        flex-direction: column;
    }
    
    .date {
        min-width: auto;
        padding: 10px;
        flex-direction: row;
        gap: 10px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Animations & Special Effects */
@keyframes glow {
    0% {
        box-shadow: 0 0 5px var(--primary-color);
    }
    50% {
        box-shadow: 0 0 20px var(--primary-color), 0 0 30px var(--primary-color);
    }
    100% {
        box-shadow: 0 0 5px var(--primary-color);
    }
}

.merch-card:hover .merch-image {
    animation: glow 2s infinite;
}

/* Holographic Effect */
.merch-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
                rgba(255, 255, 255, 0) 0%, 
                rgba(255, 255, 255, 0.1) 25%, 
                rgba(0, 255, 102, 0.1) 50%,
                rgba(255, 255, 255, 0.1) 75%,
                rgba(255, 255, 255, 0) 100%);
    background-size: 200% 200%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.merch-card:hover .merch-image::after {
    opacity: 1;
    animation: holographic 1.5s ease infinite;
}

@keyframes holographic {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

/* Buy Now Button */
.buy-now-container {
    margin-top: 15px;
    text-align: center;
}

.buy-now-btn {
    width: 100%;
    padding: 10px 20px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 255, 102, 0.2);
    transition: all 0.3s ease;
}

.buy-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 255, 102, 0.3);
} 