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

@font-face {
    font-family: 'DeathTohm';
    src: url('../font/deathtohm.woff2') format('woff2'),
         url('../font/deathtohm.woff') format('woff'),
         url('../font/deathtohm.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-bg.jpg');
    background-size: 50% auto;
    background-position: center 1px;
    background-attachment: fixed;
    background-repeat: no-repeat;
    opacity: 1.05;
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.36) 0%, rgba(0, 0, 0, 0.42) 100%);
    z-index: -1;
}

/* Typography */
h1, h2, h3, h4, h5, h6, .nav-logo h1, .nav-link {
    font-family: 'DeathTohm', 'Orbitron', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-logo h1, .nav-link {
    font-family: 'Orbitron', monospace;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid #b43522;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 5px rgba(180, 53, 34, 0.5));
}

.nav-logo h1 {
    font-size: 1.5rem;
    color: #b43522;
    text-shadow: 0 0 10px rgba(180, 53, 34, 0.5);
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Orbitron', monospace;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #b43522;
    text-shadow: 0 0 10px rgba(180, 53, 34, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #b43522;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #b43522;
    margin: 3px 0;
    transition: 0.3s;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.3) 0%, rgba(10, 10, 10, 0.5) 100%);
    z-index: -1;
}

.hero-content {
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: #b43522;
    text-shadow: 0 0 20px rgba(180, 53, 34, 0.8);
    margin-bottom: 1rem;
    animation: glow 2s ease-in-out infinite alternate;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #cccccc;
    margin-bottom: 2rem;
    font-family: 'Orbitron', monospace;
    letter-spacing: 3px;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(180, 53, 34, 0.8);
    }
    to {
        text-shadow: 0 0 30px rgba(180, 53, 34, 1), 0 0 40px rgba(180, 53, 34, 0.5);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 10px;
}

.btn-primary {
    background: #b43522;
    color: #ffffff;
    border-color: #b43522;
}

.btn-primary:hover {
    background: transparent;
    color: #b43522;
    box-shadow: 0 0 20px rgba(180, 53, 34, 0.5);
}

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

.btn-secondary:hover {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: #b43522;
    border-color: #b43522;
}

.btn-outline:hover {
    background: #b43522;
    color: #ffffff;
}

.btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* News Section */
.news {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.news h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #b43522;
    margin-bottom: 3rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.news-item {
    background: rgba(17, 17, 17, 0.9);
    padding: 2rem;
    border: 1px solid #333333;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.news-item:hover {
    border-color: #b43522;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(180, 53, 34, 0.2);
}

.news-item h3 {
    color: #b43522;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.news-item p {
    color: #cccccc;
    margin-bottom: 1rem;
}

.read-more {
    color: #b43522;
    text-decoration: none;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.read-more:hover {
    text-shadow: 0 0 10px rgba(180, 53, 34, 0.5);
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.95);
    padding: 50px 0 20px;
    border-top: 2px solid #b43522;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #b43522;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #cccccc;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #b43522;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    color: #cccccc;
    text-decoration: none;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #b43522;
    text-shadow: 0 0 10px rgba(180, 53, 34, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333333;
}

.footer-bottom p {
    color: #666666;
}

/* Page Content Styles */
.page-content {
    margin-top: 70px;
    padding: 100px 0;
    min-height: calc(100vh - 70px);
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 3rem;
    color: #b43522;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    color: #b43522;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.content-section p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Profile Page Styles */
.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.member-card {
    background: rgba(17, 17, 17, 0.9);
    padding: 2rem;
    border: 1px solid #333333;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.member-card:hover {
    border-color: #b43522;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(180, 53, 34, 0.2);
}

.member-photo {
    margin-bottom: 1.5rem;
}

.photo-placeholder {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #333333, #666666);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #b43522;
    margin: 0 auto;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: #b43522;
    text-shadow: 0 0 10px rgba(180, 53, 34, 0.5);
}

.member-card h3 {
    color: #b43522;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.member-card h4 {
    color: #cccccc;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 400;
}

.member-card p {
    color: #cccccc;
    line-height: 1.6;
}

.discography {
    display: grid;
    gap: 1.5rem;
}

.album-item {
    background: rgba(17, 17, 17, 0.9);
    padding: 1.5rem;
    border: 1px solid #333333;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.album-item:hover {
    border-color: #b43522;
}

.album-item h3 {
    color: #b43522;
    margin-bottom: 0.5rem;
}

.album-item p {
    color: #cccccc;
}

/* Live Page Styles */
.tour-dates {
    display: grid;
    gap: 1.5rem;
}

.tour-date {
    background: rgba(17, 17, 17, 0.9);
    padding: 2rem;
    border: 1px solid #333333;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.tour-date:hover {
    border-color: #b43522;
    transform: translateX(5px);
}

.date-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.date {
    text-align: center;
    min-width: 80px;
}

.date .day {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #b43522;
    font-family: 'Orbitron', monospace;
}

.date .month {
    display: block;
    font-size: 0.9rem;
    color: #cccccc;
    font-family: 'Orbitron', monospace;
    letter-spacing: 1px;
}

.venue-info h3 {
    color: #b43522;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.venue-info p {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status.sold-out {
    background: #ff4444;
    color: #ffffff;
}

.status.limited {
    background: #ffaa00;
    color: #000000;
}

.status.available {
    background: #00aa00;
    color: #ffffff;
}

.status.festival {
    background: #b43522;
    color: #ffffff;
}

.ticket-info {
    text-align: right;
}

.ticket-info p {
    color: #cccccc;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.vip-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.vip-feature {
    background: rgba(17, 17, 17, 0.9);
    padding: 1.5rem;
    border: 1px solid #333333;
    text-align: center;
    backdrop-filter: blur(10px);
}

.vip-feature h4 {
    color: #b43522;
    margin-bottom: 1rem;
}

.vip-feature p {
    color: #cccccc;
}

.past-shows {
    display: grid;
    gap: 2rem;
}

.show-item {
    background: rgba(17, 17, 17, 0.9);
    padding: 2rem;
    border: 1px solid #333333;
    backdrop-filter: blur(10px);
}

.show-item h3 {
    color: #b43522;
    margin-bottom: 1rem;
}

.show-item p {
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.show-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.show-stats span {
    background: #333333;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #b43522;
    font-weight: 700;
}

.booking-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.booking-contact h4,
.booking-requirements h4 {
    color: #b43522;
    margin-bottom: 1rem;
}

.booking-contact p,
.booking-requirements ul {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.booking-requirements ul {
    list-style: none;
}

.booking-requirements ul li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.booking-requirements ul li::before {
    content: '•';
    color: #b43522;
    position: absolute;
    left: 0;
}

/* Media Page Styles */
.album-feature {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.album-details h3 {
    color: #b43522;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.album-details p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.streaming-links h4 {
    color: #b43522;
    margin-bottom: 1rem;
}

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

.platform-link {
    display: inline-block;
    padding: 8px 16px;
    background: #333333;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 700;
}

.platform-link:hover {
    background: #b43522;
    transform: translateY(-2px);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.video-item {
    background: rgba(17, 17, 17, 0.9);
    padding: 1.5rem;
    border: 1px solid #333333;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.video-item:hover {
    border-color: #b43522;
    transform: translateY(-5px);
}

.video-thumbnail {
    margin-bottom: 1rem;
}

.thumbnail-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, #333333, #666666);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #b43522;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: #b43522;
    text-shadow: 0 0 10px rgba(180, 53, 34, 0.5);
}

.video-thumbnail.large .thumbnail-placeholder {
    height: 300px;
}

.video-item h3 {
    color: #b43522;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.video-item p {
    color: #cccccc;
    margin-bottom: 1rem;
}

.live-videos {
    margin-bottom: 3rem;
}

.live-video {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    background: rgba(17, 17, 17, 0.9);
    padding: 2rem;
    border: 1px solid #333333;
    backdrop-filter: blur(10px);
}

.video-info h3 {
    color: #b43522;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.video-info p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.video-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.video-stats span {
    background: #333333;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #b43522;
    font-weight: 700;
}

.photo-gallery {
    margin-bottom: 3rem;
}

.gallery-category {
    margin-bottom: 3rem;
}

.gallery-category h3 {
    color: #b43522;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

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

.photo-item {
    aspect-ratio: 1;
}

.photo-item .photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #333333, #666666);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #333333;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: #b43522;
    text-shadow: 0 0 10px rgba(180, 53, 34, 0.5);
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.photo-item:hover .photo-placeholder {
    border-color: #b43522;
    transform: scale(1.05);
}

.press-reviews {
    display: grid;
    gap: 2rem;
}

.review-item {
    background: rgba(17, 17, 17, 0.9);
    padding: 2rem;
    border: 1px solid #333333;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.review-item:hover {
    border-color: #b43522;
}

.review-item h3 {
    color: #b43522;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.review-source {
    color: #666666;
    font-style: italic;
    margin-bottom: 1rem;
}

.review-excerpt {
    color: #cccccc;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.press-kit-downloads {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto 0;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    background: #333333;
    border: 1px solid #666666;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
}

.newsletter-form input::placeholder {
    color: #999999;
}

.newsletter-form button {
    margin: 0;
}

/* Merch Page Styles */
.featured-merch {
    margin-bottom: 3rem;
}

.merch-item.featured {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    background: rgba(17, 17, 17, 0.9);
    padding: 2rem;
    border: 2px solid #b43522;
    backdrop-filter: blur(10px);
}

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

.merch-item {
    background: rgba(17, 17, 17, 0.9);
    padding: 1.5rem;
    border: 1px solid #333333;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.merch-item:hover {
    border-color: #b43522;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(180, 53, 34, 0.2);
}

.merch-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.merch-preview-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #333;
}

.merch-info h3 {
    color: #b43522;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.merch-info p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.merch-options {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.size-select {
    padding: 8px 12px;
    background: #333333;
    border: 1px solid #666666;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    min-width: 120px;
}

.bundles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.bundle-item {
    background: rgba(17, 17, 17, 0.9);
    padding: 2rem;
    border: 2px solid #b43522;
    text-align: center;
    backdrop-filter: blur(10px);
}

.bundle-item h3 {
    color: #b43522;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.bundle-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.original-price {
    text-decoration: line-through;
    color: #666666;
    font-size: 1.2rem;
    margin-left: 1rem;
}

.bundle-item p {
    color: #cccccc;
    margin-bottom: 1rem;
}

.bundle-item ul {
    list-style: none;
    margin-bottom: 2rem;
}

.bundle-item ul li {
    color: #cccccc;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.bundle-item ul li::before {
    content: '✓';
    color: #b43522;
    position: absolute;
    left: 0;
    font-weight: 700;
}

.shipping-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-item {
    background: rgba(17, 17, 17, 0.9);
    padding: 1.5rem;
    border: 1px solid #333333;
    backdrop-filter: blur(10px);
}

.info-item h4 {
    color: #b43522;
    margin-bottom: 1rem;
}

.info-item p {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.size-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(17, 17, 17, 0.9);
    border: 1px solid #333333;
    backdrop-filter: blur(10px);
}

.size-table th,
.size-table td {
    padding: 12px;
    text-align: center;
    border: 1px solid #333333;
}

.size-table th {
    background: #333333;
    color: #b43522;
    font-weight: 700;
}

.size-table td {
    color: #cccccc;
}

/* Contact Page Styles */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-form-section h2,
.contact-info-section h2 {
    color: #b43522;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.contact-form {
    background: rgba(17, 17, 17, 0.9);
    padding: 2rem;
    border: 1px solid #333333;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #b43522;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: #333333;
    border: 1px solid #666666;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b43522;
}

.contact-methods {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    background: rgba(17, 17, 17, 0.9);
    padding: 1.5rem;
    border: 1px solid #333333;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-method:hover {
    border-color: #b43522;
}

.contact-method h3 {
    color: #b43522;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-method p {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.social-media h3 {
    color: #b43522;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.social-links-large {
    display: grid;
    gap: 1rem;
}

.social-link-large {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(17, 17, 17, 0.9);
    border: 1px solid #333333;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link-large:hover {
    border-color: #b43522;
    transform: translateX(5px);
}

.social-link-large .platform {
    color: #b43522;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-link-large .handle {
    color: #cccccc;
    font-size: 0.9rem;
}

.faq-section {
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: rgba(17, 17, 17, 0.9);
    padding: 2rem;
    border: 1px solid #333333;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    border-color: #b43522;
}

.faq-item h3 {
    color: #b43522;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #cccccc;
    line-height: 1.8;
}

.faq-item a {
    color: #b43522;
    text-decoration: none;
}

.faq-item a:hover {
    text-shadow: 0 0 10px rgba(180, 53, 34, 0.5);
}

.newsletter-form-large {
    background: rgba(17, 17, 17, 0.9);
    padding: 2rem;
    border: 1px solid #333333;
    text-align: center;
    backdrop-filter: blur(10px);
}

.newsletter-inputs {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto 1rem;
    flex-wrap: wrap;
}

.newsletter-inputs input {
    flex: 1;
    min-width: 200px;
    padding: 12px;
    background: #333333;
    border: 1px solid #666666;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
}

.newsletter-inputs input::placeholder {
    color: #999999;
}

.newsletter-inputs button {
    margin: 0;
}

.newsletter-note {
    color: #666666;
    font-size: 0.9rem;
    margin: 0;
}

.management-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.management-item {
    background: rgba(17, 17, 17, 0.9);
    padding: 1.5rem;
    border: 1px solid #333333;
    text-align: center;
    backdrop-filter: blur(10px);
}

.management-item h3 {
    color: #b43522;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.management-item p {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

/* Mobile Responsive Design */
/* iPhone 15 Pro Max, iPhone 15 Plus, iPhone 14 Pro Max */
@media (max-width: 430px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
        height: 60px;
    }
    
    .nav-logo-img {
        height: 30px;
    }
    
    .nav-logo h1 {
        font-size: 1.2rem;
    }
    
    .hero {
        margin-top: 60px;
        height: calc(100vh - 60px);
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .members-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .member-card {
        padding: 1rem;
    }
    
    .tour-date {
        flex-direction: column;
        gap: 1rem;
    }
    
    .date-info {
        text-align: center;
    }
    
    .ticket-info {
        text-align: center;
    }
    
    .merch-item.featured {
        flex-direction: column;
        gap: 1rem;
    }
    
    .merch-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .live-video {
        flex-direction: column;
        gap: 1rem;
    }
    
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .newsletter-inputs {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

/* iPhone 15, iPhone 14, iPhone 13 */
@media (min-width: 431px) and (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 0 20px;
        height: 65px;
    }
    
    .nav-logo-img {
        height: 35px;
    }
    
    .nav-logo h1 {
        font-size: 1.3rem;
    }
    
    .hero {
        margin-top: 65px;
        height: calc(100vh - 65px);
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .members-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .merch-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* Samsung Galaxy S24 Ultra, S24+, S23 Ultra */
@media (min-width: 481px) and (max-width: 768px) {
    .container {
        padding: 0 25px;
    }
    
    .nav-container {
        padding: 0 25px;
        height: 70px;
    }
    
    .nav-logo-img {
        height: 40px;
    }
    
    .nav-logo h1 {
        font-size: 1.4rem;
    }
    
    .hero {
        margin-top: 70px;
        height: calc(100vh - 70px);
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .merch-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .photo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .tour-date {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .live-video {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 2.5rem;
    }
}

/* Tablet and Small Desktop */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .nav-container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .members-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .merch-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .photo-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

/* Mobile Navigation Improvements */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
        border-top: 2px solid #b43522;
        padding: 2rem 0;
        gap: 1.5rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 1rem 0;
    }
    
    /* Hamburger Animation */
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Touch-friendly improvements for mobile */
@media (max-width: 768px) {
    .btn {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .size-select {
        min-height: 44px;
        font-size: 1rem;
    }
    
    input, textarea, select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .merch-options {
        gap: 1rem;
    }
    
    .merch-options .btn {
        flex: 1;
    }
}

/* Landscape orientation fixes */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        margin-top: 0;
        padding-top: 70px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .nav-menu {
        top: 60px;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-background {
        background-size: cover;
    }
    
    .image-placeholder,
    .photo-placeholder,
    .thumbnail-placeholder {
        background-size: cover;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-title {
        animation: none;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #0a0a0a;
    }
}

/* Print styles */
@media print {
    .navbar,
    .hamburger,
    .btn,
    .social-links {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero {
        height: auto;
        margin-top: 0;
    }
}

.death-font {
    font-family: 'DeathTohm', 'Orbitron', monospace !important;
}

/* Mobile Performance Optimizations */
@media (max-width: 768px) {
    /* Optimize background images for mobile */
    body::before {
        background-size: cover;
        background-position: center;
        background-attachment: scroll; /* Better performance on mobile */
    }
    
    /* Improve text readability on small screens */
    .content-section p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .member-card p,
    .album-item p,
    .review-excerpt {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Better spacing for mobile */
    .content-section {
        margin-bottom: 2.5rem;
    }
    
    .page-header {
        margin-bottom: 2rem;
    }
    
    /* Improve form elements on mobile */
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 15px;
        border-radius: 8px;
        border: 2px solid #333;
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
        font-size: 16px;
    }
    
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
        outline: none;
        border-color: #b43522;
        box-shadow: 0 0 10px rgba(180, 53, 34, 0.3);
    }
    
    /* Better button styling for mobile */
    .btn {
        border-radius: 8px;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        transition: all 0.3s ease;
    }
    
    .btn:active {
        transform: scale(0.98);
    }
    
    /* Improve card interactions */
    .member-card,
    .merch-item,
    .video-item,
    .album-item {
        border-radius: 12px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .member-card:active,
    .merch-item:active,
    .video-item:active,
    .album-item:active {
        transform: scale(0.98);
    }
    
    /* Better table responsiveness */
    .size-table {
        font-size: 0.9rem;
    }
    
    .size-table th,
    .size-table td {
        padding: 8px 6px;
    }
    
    /* Improve social media links on mobile */
    .social-link-large {
        padding: 15px 20px;
        border-radius: 10px;
        margin-bottom: 1rem;
    }
    
    /* Better newsletter form on mobile */
    .newsletter-form input {
        padding: 15px 20px;
        border-radius: 8px;
        font-size: 16px;
    }
    
    .newsletter-form button {
        padding: 15px 30px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
    }
}

/* Specific improvements for very small screens */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .nav-logo h1 {
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .content-section h2 {
        font-size: 1.4rem;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .photo-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

/* Fix for iOS Safari viewport issues */
@supports (-webkit-touch-callout: none) {
    .hero {
        height: -webkit-fill-available;
    }
    
    .nav-menu {
        height: calc(100vh - 70px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Fix for Android Chrome address bar */
@media screen and (max-height: 600px) {
    .hero {
        height: 100vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* Ensure proper spacing on all mobile devices */
@media (max-width: 768px) {
    .page-content {
        padding-top: 20px;
    }
    
    .footer {
        margin-top: 3rem;
    }
    
    .footer-content {
        padding: 2rem 0;
    }
    
    .footer-bottom {
        padding: 1rem 0;
    }
} 