* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #121212;
    color: #ffffff;
}

/* Static background */
.static-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-color: #000;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('concert-background.jpg');
    background-size: cover;
    background-position: center;
}

h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(90deg, #4ddde0, #52bdfb, #d269e6, #ff3131, #ffd700);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4ddde0, #52bdfb, #d269e6, #ff3131, #ffd700);
    border-radius: 2px;
}

.page-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 20vh; /* Adjust height as needed */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('concert-background.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
}

.banner-content {
    max-width: 800px;
    padding: 20px;
}

.banner-text {
    font-size: 1.2rem;
    margin-top: 10px;
    color: #ddd;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.blog-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.blog-search {
    display: flex;
    max-width: 400px;
}

.blog-search input {
    flex-grow: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 50px 0 0 50px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.blog-search button {
    background: linear-gradient(45deg, #ff3131, #d269e6);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 0 50px 50px 0;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.blog-search button:hover {
    background: linear-gradient(45deg, #d269e6, #ff3131);
}

.blog-filter {
    display: flex;
    gap: 15px;
}

.filter-btn {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover, .filter-btn.active {
    background-color: rgba(210, 105, 230, 0.3);
    color: #ffd700;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.blog-image {
    height: 200px;
    background-color: #333;
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(210, 105, 230, 0.9);
    color: white;
    padding: 5px 15px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.blog-details {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffd700;
}

.blog-excerpt {
    color: #ddd;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #bbb;
    font-size: 0.9rem;
}

.blog-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #d269e6;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.blog-date {
    display: flex;
    align-items: center;
}

.blog-date i {
    margin-right: 5px;
    color: #4ddde0;
}

.read-more {
    display: inline-block;
    margin-top: 20px;
    background: linear-gradient(45deg, #4ddde0, #52bdfb);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    align-self: flex-start;
}

.read-more:hover {
    background: linear-gradient(45deg, #52bdfb, #4ddde0);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.featured-blog {
    margin-bottom: 60px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.featured-blog-image {
    height: 100%;
    min-height: 400px;
    background-color: #333;
    position: relative;
}

.featured-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgba(255, 49, 49, 0.9);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.featured-blog-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-blog-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #ffd700;
    line-height: 1.3;
}

.featured-blog-excerpt {
    color: #ddd;
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.featured-blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    gap: 10px;
}

.page-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.page-btn:hover, .page-btn.active {
    background: linear-gradient(45deg, #ff3131, #d269e6);
}

.social-links {
    display: flex;
    gap: 15px;
}

/* Mobile menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 900px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .featured-blog {
        grid-template-columns: 1fr;
    }
    
    .featured-blog-image {
        height: 250px;
    }
    
    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .blog-controls {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .blog-search {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 600px) {
    .banner-text {
        font-size: 1rem;
    }
    
    .featured-blog-title {
        font-size: 1.5rem;
    }
    
    .featured-blog-excerpt {
        font-size: 1rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
}
