:root {
    --primary-purple: #4a1a6b;
    --deep-purple: #2d0f42;
    --accent-orange: #ff6b35;
    --glow-orange: #ff9f1c;
    --dark-bg: #0a0a0f;
    --card-bg: #15151f;
    --text-light: #f0f0f0;
    --text-muted: #a0a0a0;
    --neon-purple: #9b59b6;
    --neon-orange: #e67e22;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Navigation */
.navbar {
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.98) 0%, rgba(10, 10, 15, 0.9) 100%);
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 2px solid var(--accent-orange);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.navbar-brand {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: var(--accent-orange) !important;
    text-shadow: 0 0 10px var(--accent-orange), 0 0 20px var(--accent-orange);
    letter-spacing: 3px;
}

.wolf-icon {
    font-size: 1.8rem;
    margin-right: 0.5rem;
    animation: howl 3s ease-in-out infinite;
}

@keyframes howl {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.nav-link {
    color: var(--text-light) !important;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
    margin: 0 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-orange) !important;
    text-shadow: 0 0 10px var(--accent-orange);
}

.navbar-toggler {
    border-color: var(--accent-orange);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 107, 53, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--dark-bg) 50%, var(--primary-purple) 100%);
    overflow: hidden;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(10, 10, 15, 0.7) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 80px;
}

.hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 5rem;
    color: var(--accent-orange);
    text-shadow: 
        0 0 10px var(--accent-orange),
        0 0 20px var(--accent-orange),
        0 0 40px var(--accent-orange),
        0 0 80px var(--accent-orange);
    margin-bottom: 0.5rem;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 
            0 0 10px var(--accent-orange),
            0 0 20px var(--accent-orange),
            0 0 40px var(--accent-orange);
    }
    to {
        text-shadow: 
            0 0 20px var(--accent-orange),
            0 0 40px var(--accent-orange),
            0 0 60px var(--accent-orange),
            0 0 100px var(--accent-orange);
    }
}

.hero-subtitle {
    font-family: 'Permanent Marker', cursive;
    font-size: 2rem;
    color: var(--neon-purple);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px var(--neon-purple);
}

.hero-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--glow-orange) 100%);
    border: none;
    padding: 1rem 2rem;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.6);
    background: linear-gradient(135deg, var(--glow-orange) 0%, var(--accent-orange) 100%);
}

.btn-outline-light {
    border: 2px solid var(--text-light);
    color: var(--text-light);
    padding: 1rem 2rem;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: var(--text-light);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    border-radius: 20px;
    box-shadow: 
        0 0 30px rgba(255, 107, 53, 0.5),
        0 0 60px rgba(155, 89, 182, 0.3);
    border: 4px solid var(--accent-orange);
    max-width: 450px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-muted);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-indicator span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid var(--accent-orange);
    border-bottom: 3px solid var(--accent-orange);
    transform: rotate(45deg);
    margin: 0 auto;
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--card-bg) 100%);
}

.stat-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--deep-purple) 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Featured Section */
.featured-section {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    color: var(--accent-orange);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--neon-purple));
}

.featured-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.featured-image {
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    max-width: 100%;
}

.vinyl-record {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 50%, #1a1a1a 100%);
    animation: spin 10s linear infinite;
    box-shadow: 
        0 0 20px rgba(255, 107, 53, 0.5),
        inset 0 0 30px rgba(0, 0, 0, 0.8);
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
}

@keyframes spin {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

.vinyl-grooves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.vinyl-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', cursive;
    font-size: 0.8rem;
    color: var(--dark-bg);
}

.featured-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.btn-secondary {
    background: linear-gradient(135deg, var(--neon-purple) 0%, var(--primary-purple) 100%);
    border: none;
    padding: 1rem 2rem;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    color: var(--text-light);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(155, 89, 182, 0.5);
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--neon-purple) 100%);
    color: var(--text-light);
}

/* Radio Waves Section */
.radio-waves-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--card-bg) 0%, var(--dark-bg) 100%);
}

.wave-card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.wave-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-orange), var(--neon-purple));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.wave-card:hover::before {
    transform: scaleX(1);
}

.wave-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent-orange);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.wave-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.wave-card:hover .wave-icon {
    transform: scale(1.2) rotate(10deg);
}

.wave-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.wave-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.wave-link {
    color: var(--neon-purple);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.wave-link:hover {
    color: var(--accent-orange);
    transform: translateX(5px);
}

/* Quote Section */
.quote-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--primary-purple) 100%);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff6b35' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.quote-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: rgba(21, 21, 31, 0.8);
    border-radius: 20px;
    border: 2px solid var(--accent-orange);
    backdrop-filter: blur(10px);
}

.quote-mark {
    font-family: 'Permanent Marker', cursive;
    font-size: 8rem;
    color: var(--accent-orange);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: 20px;
    line-height: 1;
}

.quote-text {
    font-family: 'Permanent Marker', cursive;
    font-size: 1.8rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.quote-author {
    font-style: normal;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 4rem 0 2rem;
    border-top: 2px solid var(--accent-orange);
}

.footer-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    color: var(--accent-orange);
    margin-bottom: 1.5rem;
}

.footer-text {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-orange);
    padding-left: 10px;
}

.social-links {
    margin-top: 1rem;
}

.social-icon {
    font-size: 2rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-image {
        max-width: 350px;
        margin-top: 2rem;
    }
    
    .vinyl-record {
        width: 150px;
        height: 150px;
        right: -30px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-image {
        max-width: 280px;
    }
    
    .vinyl-record {
        width: 120px;
        height: 120px;
        right: -20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .quote-text {
        font-size: 1.3rem;
    }
    
    .quote-mark {
        font-size: 5rem;
    }
}

@media (max-width: 575px) {
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .wave-card {
        padding: 2rem 1.5rem;
    }
    
    .quote-container {
        padding: 2rem 1rem;
    }
}

/* Page-specific styles */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--primary-purple) 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ff6b35' fill-opacity='0.05'%3E%3Cpath d='M20 20.5V18c0-1.1-.9-2-2-2s-2 .9-2 2v2.5c0 1.1.9 2 2 2s2-.9 2-2zM20 20.5V18c0-1.1-.9-2-2-2s-2 .9-2 2v2.5c0 1.1.9 2 2 2s2-.9 2-2z'/%3E%3C/g%3E%3C/svg%3E");
}

.page-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    color: var(--accent-orange);
    text-shadow: 0 0 20px var(--accent-orange);
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-family: 'Permanent Marker', cursive;
    font-size: 1.5rem;
    color: var(--neon-purple);
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}

.content-section {
    padding: 5rem 0;
}

.content-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    height: 100%;
}

.content-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.content-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.content-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* Timeline styles */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-orange), var(--neon-purple));
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding: 0 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--accent-orange);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--accent-orange);
}

.timeline-content {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--accent-orange);
    position: relative;
}

.timeline-year {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 50%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 50%;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item::before {
        left: 20px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 50px;
        margin-right: 0;
    }
}

/* Gallery styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 15, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    color: var(--text-light);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Audio player styles */
.audio-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--accent-orange);
    margin-bottom: 2rem;
}

.audio-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.audio-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.audio-player {
    width: 100%;
    background: var(--dark-bg);
    border-radius: 10px;
    padding: 1rem;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Card icon styles */
.card-icon, .moment-icon, .impact-icon, .tribute-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--accent-orange);
}

/* Style features */
.style-features {
    margin-top: 2rem;
}

.style-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    border-left: 3px solid var(--accent-orange);
}

.feature-icon {
    font-size: 2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.style-feature h4 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.3rem;
    color: var(--accent-orange);
    margin-bottom: 0.3rem;
}

.style-feature p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Era cards */
.era-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.era-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.era-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--accent-orange), var(--glow-orange));
    color: var(--dark-bg);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.2rem;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.era-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.era-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.era-card:hover .era-image img {
    transform: scale(1.1);
}

.era-content {
    padding: 1.5rem;
}

.era-content h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    color: var(--accent-orange);
    margin-bottom: 0.8rem;
}

.era-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Tribute cards */
.tribute-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--accent-orange);
    transition: all 0.3s ease;
    height: 100%;
}

.tribute-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.tribute-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tribute-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.tribute-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.tribute-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.badge {
    background: rgba(155, 89, 182, 0.2);
    color: var(--neon-purple);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--neon-purple);
}

/* Remembering section */
.remembering-section {
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--primary-purple) 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--accent-orange);
    position: relative;
    overflow: hidden;
}

.remembering-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ff6b35' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.remembering-content {
    position: relative;
    z-index: 1;
}

.remembering-content .lead {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.remembering-content p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

.remembering-quote {
    position: relative;
    z-index: 1;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 107, 53, 0.3);
    text-align: center;
}

.remembering-quote blockquote {
    font-family: 'Permanent Marker', cursive;
    font-size: 1.5rem;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

.remembering-quote cite {
    font-family: 'Oswald', sans-serif;
    color: var(--neon-purple);
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Audio player styles */
.audio-player {
    background: var(--dark-bg);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.audio-player:hover {
    border-color: var(--accent-orange);
    background: rgba(255, 107, 53, 0.1);
}

.play-icon {
    font-size: 1.5rem;
}
