/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Code Pro', monospace;
    background: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none; /* Hide default cursor */
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

.custom-cursor.hover {
    transform: scale(2);
}

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

/* Sections */
.section {
    min-height: 100vh;
    padding: 80px 0;
    position: relative;
    display: flex;
    align-items: center;
}

.section-title {
    font-family: 'Special Elite', cursive;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff4444, transparent);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) contrast(1.2) saturate(0.8);
    z-index: 1;
}

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

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(26,26,26,0.7), rgba(45,27,27,0.7), rgba(26,26,26,0.7));
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    z-index: 2;
}

.video-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 3;
}

.hero-content {
    text-align: center;
    z-index: 4;
    position: relative;
}

.hero-title {
    font-family: 'Special Elite', cursive;
    font-size: 4rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from { text-shadow: 3px 3px 6px rgba(0,0,0,0.8), 0 0 20px rgba(255,68,68,0.3); }
    to { text-shadow: 3px 3px 6px rgba(0,0,0,0.8), 0 0 30px rgba(255,68,68,0.6); }
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #ccc;
    font-style: italic;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 15px 30px;
    border: 2px solid #ff4444;
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-family: 'Source Code Pro', monospace;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: #ff4444;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,68,68,0.4);
}

.cta-button.primary {
    background: #ff4444;
}

.cta-button.primary:hover {
    background: #ff6666;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 4;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

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

/* Lore Section */
.lore-section {
    background: linear-gradient(135deg, #0a0a0a, #1a0a0a);
}

.lore-content {
    max-width: 800px;
    margin: 0 auto 60px;
}

.lore-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ccc;
    line-height: 1.8;
}

.lore-quote {
    font-family: 'Special Elite', cursive;
    font-size: 1.5rem;
    color: #ff4444;
    text-align: center;
    margin: 40px 0;
    padding: 20px;
    border-left: 4px solid #ff4444;
    background: rgba(255,68,68,0.1);
}

.chair-animation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
}

.chair {
    width: 40px;
    height: 60px;
    background: #333;
    border: 2px solid #666;
    position: relative;
    opacity: 0;
    transform: scale(0);
    animation: chairFold 3s ease-in-out infinite;
}

.chair::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 10px;
    background: #333;
    border: 2px solid #666;
}

@keyframes chairFold {
    0% { opacity: 0; transform: scale(0) rotate(0deg); }
    20% { opacity: 1; transform: scale(1) rotate(0deg); }
    80% { opacity: 1; transform: scale(1) rotate(0deg); }
    100% { opacity: 0; transform: scale(0) rotate(90deg); }
}

.chair:nth-child(1) { animation-delay: 0s; }
.chair:nth-child(2) { animation-delay: 0.5s; }
.chair:nth-child(3) { animation-delay: 1s; }
.chair:nth-child(4) { animation-delay: 1.5s; }

/* Band Members Section */
.members-section {
    background: linear-gradient(135deg, #0a0a0a, #1a0a1a);
    position: relative;
    overflow: hidden;
}

.members-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.25) contrast(1.1) saturate(0.7) hue-rotate(15deg);
    opacity: 0.4;
}

.members-section .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 0.85), 
        rgba(26, 10, 26, 0.75),
        rgba(255, 68, 68, 0.1)
    );
    z-index: 1;
}

.members-section .container {
    position: relative;
    z-index: 2;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.member-card {
    background: rgba(255,68,68,0.05);
    border: 1px solid rgba(255,68,68,0.2);
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.member-card.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.member-card:hover::before {
    left: 100%;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255,68,68,0.2);
    border-color: rgba(255,68,68,0.5);
}

.member-role {
    font-family: 'Special Elite', cursive;
    color: #ff4444;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.member-description {
    color: #ccc;
    font-family: 'Playfair Display', serif;
    line-height: 1.6;
    font-style: italic;
}

.members-note {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.members-note p {
    color: #ccc;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    line-height: 1.6;
}

.mystery-quote {
    font-family: 'Special Elite', cursive;
    font-size: 1.5rem;
    color: #ff4444;
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    border: 2px solid rgba(255,68,68,0.3);
    background: rgba(255,68,68,0.05);
    border-radius: 10px;
    position: relative;
    animation: quoteGlow 3s ease-in-out infinite alternate;
}

@keyframes quoteGlow {
    from { box-shadow: 0 0 10px rgba(255,68,68,0.2); }
    to { box-shadow: 0 0 20px rgba(255,68,68,0.4); }
}

.mystery-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 3rem;
    color: rgba(255,68,68,0.3);
}

.quote-source {
    color: #666;
    font-family: 'Source Code Pro', monospace;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 10px;
}

/* Timeline Section */
.timeline-section {
    background: linear-gradient(135deg, #0a0a0a, #0a1a0a);
    background-image: url('assets/images/wedding.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,10,10,0.9), rgba(10,26,10,0.9));
    z-index: 1;
}

.timeline-section .container {
    position: relative;
    z-index: 2;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, #ff4444, transparent);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 60px;
    text-align: left;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 60px;
    text-align: right;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 20px;
    height: 20px;
    background: #ff4444;
    border: 3px solid #000;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-content {
    background: rgba(255,68,68,0.1);
    padding: 20px;
    border: 1px solid rgba(255,68,68,0.3);
    border-radius: 5px;
}

.timeline-content h3 {
    font-family: 'Special Elite', cursive;
    color: #ff4444;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #ccc;
    font-family: 'Playfair Display', serif;
}

/* Interviews Section */
.interviews-section {
    background: linear-gradient(135deg, #0a0a0a, #1a0a1a);
    padding: 80px 0;
    margin: 40px 0;
}

.interviews-intro {
    text-align: center;
    margin-bottom: 50px;
}

.interviews-intro .intro-text {
    color: #ccc;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

.interviews-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.interview-magazine {
    display: none;
    animation: fadeInUp 0.6s ease forwards;
}

.interview-magazine.active {
    display: block;
}

.magazine-header {
    background: linear-gradient(135deg, #1a1a1a, #2a1a2a);
    border: 2px solid rgba(255,68,68,0.3);
    border-radius: 15px 15px 0 0;
    padding: 30px;
    margin-bottom: 0;
}

.magazine-logo h3 {
    color: #ff4444;
    font-family: 'Special Elite', cursive;
    font-size: 2rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.issue-info {
    color: #ccc;
    font-family: 'Source Code Pro', monospace;
    font-size: 0.9rem;
    opacity: 0.8;
}

.headline h4 {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-style: italic;
    margin-top: 20px;
    line-height: 1.4;
    text-align: center;
}

.interview-content {
    background: rgba(255,68,68,0.05);
    border-left: 2px solid rgba(255,68,68,0.3);
    border-right: 2px solid rgba(255,68,68,0.3);
    padding: 40px;
}

.interview-q-a {
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.interview-q-a:nth-child(1) { animation-delay: 0.1s; }
.interview-q-a:nth-child(2) { animation-delay: 0.2s; }
.interview-q-a:nth-child(3) { animation-delay: 0.3s; }
.interview-q-a:nth-child(4) { animation-delay: 0.4s; }
.interview-q-a:nth-child(5) { animation-delay: 0.5s; }

.question {
    margin-bottom: 20px;
}

.q-label {
    color: #ff4444;
    font-family: 'Special Elite', cursive;
    font-size: 1.1rem;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.question p {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    padding-left: 20px;
    border-left: 3px solid rgba(255,68,68,0.5);
}

.answer {
    background: rgba(0,0,0,0.3);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255,68,68,0.2);
}

.a-label {
    color: #ff4444;
    font-family: 'Special Elite', cursive;
    font-size: 1rem;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.answer p {
    color: #ccc;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.interview-footer {
    background: linear-gradient(135deg, #1a1a1a, #2a1a2a);
    border: 2px solid rgba(255,68,68,0.3);
    border-radius: 0 0 15px 15px;
    padding: 20px 30px;
}

.interview-meta {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.meta-item {
    color: #ccc;
    font-family: 'Source Code Pro', monospace;
    font-size: 0.8rem;
    opacity: 0.8;
}

.interviews-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.nav-btn {
    background: rgba(255,68,68,0.05);
    border: 2px solid rgba(255,68,68,0.3);
    color: #ccc;
    padding: 15px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Special Elite', cursive;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

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

.nav-btn:hover {
    border-color: rgba(255,68,68,0.6);
    color: #ff4444;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,68,68,0.2);
}

.nav-btn.active {
    background: rgba(255,68,68,0.15);
    border-color: #ff4444;
    color: #ff4444;
    box-shadow: 0 0 20px rgba(255,68,68,0.3);
}

.interviews-footer {
    text-align: center;
    margin-top: 40px;
}

.interviews-note {
    color: #666;
    font-family: 'Source Code Pro', monospace;
    font-size: 0.9rem;
    font-style: italic;
}

/* Fan Theories Section */
.fan-theories-section {
    background: linear-gradient(135deg, #0a0a0a, #0a0a1a);
    position: relative;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.theories-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.2) contrast(1.2) saturate(0.8) hue-rotate(10deg);
    opacity: 0.5;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 0.9), 
        rgba(26, 10, 26, 0.8),
        rgba(255, 68, 68, 0.15)
    );
    z-index: 1;
}

.fan-theories-section .container {
    position: relative;
    z-index: 2;
}

/* Fire Ember Animation */
@keyframes emberFloat {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

.ember {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #ff4444, #ff6666, transparent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    animation: emberFloat 8s linear infinite;
}

.ember:nth-child(1) { left: 10%; animation-delay: 0s; }
.ember:nth-child(2) { left: 20%; animation-delay: 2s; }
.ember:nth-child(3) { left: 30%; animation-delay: 4s; }
.ember:nth-child(4) { left: 40%; animation-delay: 1s; }
.ember:nth-child(5) { left: 50%; animation-delay: 3s; }
.ember:nth-child(6) { left: 60%; animation-delay: 5s; }
.ember:nth-child(7) { left: 70%; animation-delay: 2s; }
.ember:nth-child(8) { left: 80%; animation-delay: 4s; }
.ember:nth-child(9) { left: 90%; animation-delay: 1s; }
.ember:nth-child(10) { left: 15%; animation-delay: 6s; }

.theories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.theory-card {
    background: rgba(255,68,68,0.05);
    border: 1px solid rgba(255,68,68,0.2);
    padding: 30px;
    border-radius: 10px;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

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

.theory-card:hover::before {
    left: 100%;
}

.theory-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255,68,68,0.2);
    border-color: rgba(255,68,68,0.5);
}

.theory-card.revealed {
    background: rgba(255,68,68,0.1);
    border-color: rgba(255,68,68,0.6);
    transform: scale(1.02);
}

.theory-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.theory-header h3 {
    font-family: 'Special Elite', cursive;
    color: #ff4444;
    font-size: 1.3rem;
    margin: 0;
    flex: 1;
}

.theory-icon {
    font-size: 1.5rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.theory-card:hover .theory-icon {
    opacity: 1;
    transform: scale(1.1);
}

.theory-text {
    color: #ccc;
    font-family: 'Playfair Display', serif;
    line-height: 1.6;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.theory-reveal {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    opacity: 0;
}

.theory-card.revealed .theory-reveal {
    max-height: 200px;
    opacity: 1;
    margin-top: 20px;
}

.reveal-text {
    color: #ff4444;
    font-family: 'Special Elite', cursive;
    font-style: italic;
    margin-bottom: 10px;
    padding: 15px;
    background: rgba(255,68,68,0.1);
    border-left: 3px solid #ff4444;
    border-radius: 5px;
}

.reveal-source {
    color: #666;
    font-family: 'Source Code Pro', monospace;
    font-size: 0.8rem;
    font-style: italic;
}

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

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

.theory-card.revealed .theory-overlay {
    opacity: 0;
    pointer-events: none;
}

.hover-text {
    color: #ff4444;
    font-family: 'Special Elite', cursive;
    font-size: 1.1rem;
    text-align: center;
    padding: 20px;
    border: 2px solid rgba(255,68,68,0.3);
    border-radius: 10px;
    background: rgba(0,0,0,0.9);
}

.theories-footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    border-top: 1px solid rgba(255,68,68,0.2);
}

.theories-note {
    color: #666;
    font-family: 'Source Code Pro', monospace;
    font-style: italic;
    font-size: 0.9rem;
}

/* Feuds Section */
.feuds-section {
    background: linear-gradient(135deg, #0a0a0a, #1a0a0a);
}

.feuds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feud-card {
    background: rgba(255,68,68,0.05);
    border: 1px solid rgba(255,68,68,0.2);
    padding: 30px;
    border-radius: 10px;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

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

.feud-card:hover::before {
    left: 100%;
}

.feud-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255,68,68,0.2);
    border-color: rgba(255,68,68,0.5);
}

.feud-card.revealed {
    background: rgba(255,68,68,0.1);
    border-color: rgba(255,68,68,0.6);
    transform: scale(1.02);
}

.feud-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.feud-header h3 {
    font-family: 'Special Elite', cursive;
    color: #ff4444;
    font-size: 1.3rem;
    margin: 0;
    flex: 1;
}

.feud-icon {
    font-size: 1.5rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.feud-card:hover .feud-icon {
    opacity: 1;
    transform: scale(1.1);
}

.feud-text {
    color: #ccc;
    font-family: 'Playfair Display', serif;
    line-height: 1.6;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feud-reveal {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    opacity: 0;
}

.feud-card.revealed .feud-reveal {
    max-height: 600px;
    opacity: 1;
    margin-top: 20px;
}

.feud-timeline {
    margin-bottom: 20px;
}

.feud-timeline .timeline-item {
    display: flex;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(0,0,0,0.3);
    border-radius: 5px;
    border-left: 3px solid #ff4444;
}

.feud-timeline .date {
    font-family: 'Source Code Pro', monospace;
    color: #ff4444;
    font-weight: bold;
    min-width: 60px;
    margin-right: 15px;
}

.feud-timeline .event {
    color: #ccc;
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
}

.voicemail-transcript {
    margin-bottom: 20px;
}

.voicemail-transcript h4 {
    font-family: 'Special Elite', cursive;
    color: #ff4444;
    margin-bottom: 10px;
    font-size: 1rem;
}

.voicemail-transcript p {
    color: #ccc;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(0,0,0,0.3);
    border-radius: 5px;
    border-left: 3px solid #666;
}

.drummer-story {
    margin-bottom: 20px;
}

.story-fragment {
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(0,0,0,0.3);
    border-radius: 5px;
    border-left: 3px solid #ff4444;
    animation: fragmentFadeIn 0.5s ease forwards;
    opacity: 0;
    transform: translateX(-20px);
}

.story-fragment:nth-child(1) { animation-delay: 0.2s; }
.story-fragment:nth-child(2) { animation-delay: 0.4s; }
.story-fragment:nth-child(3) { animation-delay: 0.6s; }

@keyframes fragmentFadeIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fragment-text {
    color: #ccc;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.feud-quote {
    font-family: 'Special Elite', cursive;
    font-size: 1.2rem;
    color: #ff4444;
    text-align: center;
    margin: 20px 0;
    padding: 15px;
    background: rgba(255,68,68,0.1);
    border: 2px solid rgba(255,68,68,0.3);
    border-radius: 10px;
    position: relative;
}

.feud-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 2.5rem;
    color: rgba(255,68,68,0.3);
}

.feud-source {
    color: #666;
    font-family: 'Source Code Pro', monospace;
    font-size: 0.8rem;
    font-style: italic;
    text-align: center;
    margin-top: 10px;
}

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

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

.feud-card.revealed .feud-overlay {
    opacity: 0;
    pointer-events: none;
}

.feuds-footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    border-top: 1px solid rgba(255,68,68,0.2);
}

.feuds-note {
    color: #666;
    font-family: 'Source Code Pro', monospace;
    font-style: italic;
    font-size: 0.9rem;
}

.empty-chair-animation {
    display: none;
    width: 100%;
    height: 100px;
    background: #333;
    margin-top: 20px;
    border-radius: 5px;
    position: relative;
    animation: emptyChairPulse 2s ease-in-out infinite;
}

.feud-card.revealed .empty-chair-animation {
    display: block;
}

@keyframes emptyChairPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* Albums Section */
.albums-section {
    background: linear-gradient(135deg, #0a0a0a, #0a1a0a);
    background-image: url('assets/images/chairdark.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.albums-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,10,10,0.9), rgba(10,26,10,0.9));
    z-index: 1;
}

.albums-section .container {
    position: relative;
    z-index: 2;
}

/* Album Intro */
.album-intro {
    background: rgba(255,68,68,0.05);
    border: 1px solid rgba(255,68,68,0.2);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 60px;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 150px;
}

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

.album-intro:hover::before {
    left: 100%;
}

.album-intro:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255,68,68,0.2);
    border-color: rgba(255,68,68,0.5);
}

.album-intro.revealed {
    background: rgba(255,68,68,0.1);
    border-color: rgba(255,68,68,0.6);
    transform: scale(1.02);
}

.intro-text {
    color: #ccc;
    font-family: 'Playfair Display', serif;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.intro-text em {
    color: #ff4444;
    font-style: italic;
    font-weight: 600;
}

.intro-reveal {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    opacity: 0;
}

.album-intro.revealed .intro-reveal {
    max-height: 300px;
    opacity: 1;
    margin-top: 20px;
}

.reveal-text {
    color: #ccc;
    font-family: 'Playfair Display', serif;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.reveal-text em {
    color: #ff4444;
    font-style: italic;
    font-weight: 600;
}

.band-quote {
    color: #ff4444;
    font-family: 'Special Elite', cursive;
    font-size: 1.3rem;
    text-align: center;
    padding: 20px;
    background: rgba(255,68,68,0.1);
    border: 2px solid rgba(255,68,68,0.3);
    border-radius: 10px;
    position: relative;
    animation: quoteGlow 3s ease-in-out infinite alternate;
}

.band-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 2.5rem;
    color: rgba(255,68,68,0.3);
}

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

.album-intro:hover .intro-overlay {
    opacity: 1;
}

.album-intro.revealed .intro-overlay {
    opacity: 0;
    pointer-events: none;
}

.albums-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-top: 60px;
}

.album-card {
    background: rgba(255,68,68,0.05);
    border: 1px solid rgba(255,68,68,0.2);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.album-card:first-child .album-card::before {
    display: none;
}

.album-card:first-child:hover .album-card::before {
    left: -100%;
}

.album-card:first-child:hover::before {
    left: -100%;
}

.album-card:hover::before {
    left: 100%;
}

.album-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255,68,68,0.2);
    border-color: rgba(255,68,68,0.6);
}

.album-card:first-child {
    border-color: rgba(255,68,68,0.3);
    background: rgba(255,68,68,0.08);
}

.album-card:first-child::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,68,68,0.1), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.album-card:first-child:hover::after {
    left: 100%;
}

.album-card:first-child::before {
    content: 'EP';
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,68,68,0.2);
    color: #ff4444;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: 'Special Elite', cursive;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 10;
    pointer-events: none;
}

.album-header {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.album-artwork {
    position: relative;
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.album-artwork:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255,68,68,0.3);
}

.album-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.album-artwork:hover .album-overlay {
    opacity: 1;
}

.play-button {
    color: #ff4444;
    font-size: 3rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.2);
    color: #fff;
}

.album-info {
    flex: 1;
}

.album-info h3 {
    color: #ff4444;
    font-family: 'Special Elite', cursive;
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.album-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.album-meta span {
    color: #ccc;
    font-family: 'Source Code Pro', monospace;
    font-size: 0.9rem;
    padding: 5px 12px;
    background: rgba(255,68,68,0.1);
    border: 1px solid rgba(255,68,68,0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.album-meta span:hover {
    background: rgba(255,68,68,0.2);
    border-color: rgba(255,68,68,0.6);
    transform: translateY(-2px);
}

.album-description {
    color: #ccc;
    font-family: 'Playfair Display', serif;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 0;
    font-style: italic;
}

.album-tracks {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.track {
    display: flex;
    align-items: center;
    padding: 15px;
    background: rgba(0,0,0,0.3);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.track:hover {
    background: rgba(255,68,68,0.1);
    border-left-color: #ff4444;
    transform: translateX(5px);
}

.track-number {
    font-family: 'Source Code Pro', monospace;
    color: #666;
    width: 40px;
    font-size: 0.9rem;
}

.track-title {
    flex: 1;
    font-family: 'Playfair Display', serif;
    color: #fff;
    margin-left: 15px;
}

.track-duration {
    font-family: 'Source Code Pro', monospace;
    color: #666;
    font-size: 0.9rem;
}

/* Join Section */
.join-section {
    background-image: url('assets/images/empty.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.join-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8), rgba(26, 10, 26, 0.8));
    z-index: 1;
}

.join-section .container {
    position: relative;
    z-index: 2;
}

.join-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.mailing-list h3 {
    font-family: 'Special Elite', cursive;
    color: #ff4444;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.signup-form input {
    padding: 15px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,68,68,0.3);
    color: #fff;
    font-family: 'Source Code Pro', monospace;
    border-radius: 5px;
}

.signup-form input::placeholder {
    color: #666;
}

.signup-form button {
    padding: 15px;
    background: #ff4444;
    border: none;
    color: #fff;
    font-family: 'Source Code Pro', monospace;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.signup-form button:hover {
    background: #ff6666;
    transform: translateY(-2px);
}

.merch-section h3 {
    font-family: 'Special Elite', cursive;
    color: #ff4444;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.merch-item {
    text-align: center;
    padding: 20px;
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.merch-item:hover {
    transform: translateY(-5px);
    background: rgba(255,68,68,0.1);
}

.merch-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.merch-item h4 {
    font-family: 'Special Elite', cursive;
    color: #ff4444;
    margin-bottom: 10px;
}

.merch-item p {
    color: #ccc;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #000;
    padding: 40px 0;
    border-top: 1px solid rgba(255,68,68,0.3);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #ccc;
    text-decoration: none;
    font-family: 'Source Code Pro', monospace;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ff4444;
}

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

.social-links a {
    color: #ccc;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ff4444;
}

.footer-disclaimer {
    text-align: center;
    color: #666;
    font-family: 'Source Code Pro', monospace;
    font-size: 0.9rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #1a1a1a;
    margin: 5% auto;
    padding: 40px;
    border: 1px solid rgba(255,68,68,0.3);
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
    position: relative;
    color: #fff;
}

.close {
    color: #ff4444;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
}

.close:hover {
    color: #ff6666;
}

/* Audio Player Modal */
.audio-player {
    max-width: 500px;
    background: linear-gradient(135deg, #1a1a1a, #2a1a2a);
    border: 2px solid rgba(255,68,68,0.3);
}

.player-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255,68,68,0.3);
    padding-bottom: 20px;
}

.player-header h3 {
    color: #ff4444;
    font-family: 'Special Elite', cursive;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.player-header p {
    color: #ccc;
    font-family: 'Source Code Pro', monospace;
    font-size: 0.9rem;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
}

.player-btn {
    background: #ff4444;
    color: #000;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-btn:hover {
    background: #ff6666;
    transform: scale(1.1);
}

.track-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.current-track {
    color: #ff4444;
    font-family: 'Source Code Pro', monospace;
    font-size: 0.9rem;
    font-weight: bold;
}

.track-time {
    color: #ccc;
    font-family: 'Source Code Pro', monospace;
    font-size: 0.8rem;
}

.track-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.track-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,68,68,0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Caveat', cursive;
    font-size: 0.9rem;
}

.track-item:hover {
    background: rgba(255,68,68,0.1);
    border-color: rgba(255,68,68,0.5);
    transform: translateX(5px);
}

.track-item.playing {
    background: rgba(255,68,68,0.2);
    border-color: #ff4444;
    animation: trackGlow 2s ease-in-out infinite;
}

.track-item .track-number {
    color: #ff4444;
    font-family: 'Source Code Pro', monospace;
    width: 30px;
    font-size: 0.8rem;
    font-weight: bold;
}

.track-item .track-title {
    flex: 1;
    color: #ccc;
    margin-left: 15px;
    line-height: 1.3;
}

.track-item .track-duration {
    color: #666;
    font-family: 'Source Code Pro', monospace;
    font-size: 0.8rem;
}

#modalTitle {
    font-family: 'Special Elite', cursive;
    color: #ff4444;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

#modalLyrics {
    font-family: 'Playfair Display', serif;
    line-height: 1.8;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-video {
        object-position: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .join-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin: 0 0 0 60px;
        text-align: left;
    }
    
    .albums-container {
        grid-template-columns: 1fr;
    }
    
    .album-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .album-artwork {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }
    
    .album-info h3 {
        font-size: 1.4rem;
    }
    
    .album-meta {
        justify-content: center;
    }
    
    .theory-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .theory-icon {
        align-self: flex-end;
    }
    
    .theory-card {
        min-height: 180px;
        padding: 20px;
    }
    
    .feud-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .feud-icon {
        align-self: flex-end;
    }
    
    .feud-card {
        min-height: 180px;
        padding: 20px;
    }
    
    .feud-timeline .timeline-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .feud-timeline .date {
        min-width: auto;
        margin-right: 0;
    }
    
    .interviews-container {
        padding: 0 20px;
    }
    
    .magazine-header {
        padding: 20px;
    }
    
    .magazine-logo h3 {
        font-size: 1.5rem;
    }
    
    .headline h4 {
        font-size: 1.2rem;
    }
    
    .interview-content {
        padding: 20px;
    }
    
    .interview-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .interviews-nav {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .nav-btn {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .theories-video {
        object-position: center;
    }
    
    .ember {
        width: 3px;
        height: 3px;
    }
    
    .members-video {
        object-position: center;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Audio Stingers */
.audio-stinger {
    position: fixed;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

/* Lyrics hover effect */
.track:hover .track-title {
    color: #ff4444;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #ff4444;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff6666;
}

/* Release Party Countdown Banner */
.release-party-banner {
    background: linear-gradient(135deg, #1a0a1a 80%, #2a1a2a 100%);
    padding: 50px 0 30px 0;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.5);
}
.release-title {
    color: #fff;
    font-family: 'Special Elite', cursive;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #ff4444, 0 0 2px #fff;
}
.countdown-timer {
    font-family: 'Source Code Pro', monospace;
    color: #ff4444;
    font-size: 2.2rem;
    letter-spacing: 2px;
    text-shadow: 0 0 8px #ff4444, 0 0 2px #fff;
    background: rgba(0,0,0,0.5);
    display: inline-block;
    padding: 18px 36px;
    border-radius: 12px;
    border: 2px solid #ff4444;
    margin-bottom: 10px;
}
@media (max-width: 600px) {
    .release-title { font-size: 1.1rem; }
    .countdown-timer { font-size: 1.2rem; padding: 10px 12px; }
} 