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

:root {
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --red-accent: #8b0000;
    --dark-red: #5a0000;
    --blood-red: #cc0000;
    --bright-red: #ff1a1a;
    --text-primary: #e0e0e0;
    --text-secondary: #b0b0b0;
    --card-bg: #1a1a1a;
    --card-bg-dark: #151515;
    --border-color: #2a2a2a;
    --glow-red: rgba(204, 0, 0, 0.4);
    --glow-red-strong: rgba(255, 26, 26, 0.6);
}

body {
    font-family: 'Roboto Condensed', sans-serif;
    background: var(--dark-bg);
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(139, 0, 0, 0.15) 1px, transparent 0);
    background-size: 40px 40px;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at top left, rgba(204, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(139, 0, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: 
        linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 50%, var(--darker-bg) 100%),
        radial-gradient(ellipse at center, rgba(139, 0, 0, 0.2) 0%, transparent 70%);
    padding: 60px 20px 120px;
    overflow: hidden;
    isolation: isolate;
    z-index: 0;
    margin-bottom: 0;
}


.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, var(--glow-red-strong) 0%, transparent 60%),
        radial-gradient(circle at 80% 50%, var(--glow-red-strong) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(139, 0, 0, 0.1) 0%, transparent 70%);
    opacity: 0.5;
    z-index: 0;
    animation: pulseGlow 4s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(139, 0, 0, 0.03) 2px,
            rgba(139, 0, 0, 0.03) 4px
        );
    z-index: 0;
    pointer-events: none;
}


.hero-split {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-text-side {
    flex: 1;
    text-align: left;
    animation: fadeInLeft 1s ease-out;
}

.hero-image-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out 0.2s both;
}

.hero-image-frame {
    position: relative;
    width: 100%;
    max-width: 550px;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border: 4px solid var(--blood-red);
    box-shadow: 
        0 0 40px rgba(204, 0, 0, 0.8),
        0 0 80px rgba(204, 0, 0, 0.5),
        0 20px 60px rgba(0, 0, 0, 0.9);
    filter: 
        brightness(0.85) 
        contrast(1.3) 
        saturate(1.4);
    position: relative;
    z-index: 1;
}

.image-overlay-red {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 40% 50%, rgba(204, 0, 0, 0.7) 0%, rgba(139, 0, 0, 0.5) 50%, transparent 80%),
        linear-gradient(135deg, rgba(139, 0, 0, 0.4) 0%, transparent 60%);
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: multiply;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.main-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3.5rem, 9vw, 6.5rem);
    font-weight: 700;
    color: var(--blood-red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    line-height: 0.95;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.9),
        0 0 10px rgba(204, 0, 0, 0.4),
        0 0 20px rgba(204, 0, 0, 0.2);
    animation: titleGlow 3s ease-in-out infinite;
}

.main-subtitle {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 30px;
    line-height: 1.1;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(204, 0, 0, 0.2);
}

.hero-divider {
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--blood-red), transparent);
    margin: 0 0 30px 0;
    box-shadow: 0 0 20px var(--blood-red);
    animation: dividerPulse 2s ease-in-out infinite;
}

.hero-tagline {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 300;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    opacity: 0.85;
    white-space: nowrap;
    margin-bottom: 30px;
}

.join-fight-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--blood-red) 0%, var(--dark-red) 100%);
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 2px solid var(--blood-red);
    border-radius: 4px;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(204, 0, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.join-fight-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
    z-index: -1;
}

.join-fight-btn:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(135deg, var(--bright-red) 0%, var(--blood-red) 100%);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(204, 0, 0, 0.6),
        inset 0 0 20px rgba(255, 26, 26, 0.2);
    border-color: var(--bright-red);
}

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

.join-fight-btn:active {
    transform: translateY(-1px) scale(1.02);
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.9),
            0 0 10px rgba(204, 0, 0, 0.4),
            0 0 20px rgba(204, 0, 0, 0.2);
    }
    50% {
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.9),
            0 0 15px rgba(204, 0, 0, 0.5),
            0 0 30px rgba(204, 0, 0, 0.3);
    }
}

@keyframes dividerPulse {
    0%, 100% {
        box-shadow: 0 0 20px var(--blood-red);
        opacity: 1;
    }
    50% {
        box-shadow: 0 0 30px var(--bright-red);
        opacity: 0.9;
    }
}

@keyframes imagePulse {
    0%, 100% {
        box-shadow: 
            0 0 30px rgba(204, 0, 0, 0.6),
            0 0 60px rgba(204, 0, 0, 0.4),
            0 10px 40px rgba(0, 0, 0, 0.8);
        filter: 
            brightness(0.9) 
            contrast(1.2) 
            saturate(1.3);
    }
    50% {
        box-shadow: 
            0 0 40px rgba(255, 26, 26, 0.8),
            0 0 80px rgba(204, 0, 0, 0.6),
            0 15px 50px rgba(0, 0, 0, 0.9);
        filter: 
            brightness(1.0) 
            contrast(1.3) 
            saturate(1.4);
    }
}

.scrolling-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px 0;
    background: linear-gradient(180deg, transparent 0%, var(--darker-bg) 30%, var(--darker-bg) 100%);
    border-top: 3px solid var(--red-accent);
    box-shadow: 0 -5px 20px rgba(139, 0, 0, 0.3);
    overflow: hidden;
    z-index: 1;
}

.scrolling-text span {
    display: inline-block;
    white-space: nowrap;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: var(--blood-red);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    animation: scroll 60s linear infinite;
    padding-left: 100%;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

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

@keyframes pulse {
    0%, 100% {
        text-shadow: 
            0 0 15px var(--blood-red),
            0 0 30px var(--glow-red),
            0 0 50px rgba(204, 0, 0, 0.5),
            0 2px 4px rgba(0, 0, 0, 0.8);
    }
    50% {
        text-shadow: 
            0 0 20px var(--bright-red),
            0 0 40px var(--glow-red),
            0 0 70px rgba(255, 26, 26, 0.6),
            0 2px 4px rgba(0, 0, 0, 0.8);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.7;
    }
}

/* Navigation */
.nav {
    position: sticky;
    top: 0;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.98) 0%, rgba(10, 10, 10, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--red-accent);
    border-top: 1px solid rgba(139, 0, 0, 0.3);
    padding: 18px 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(139, 0, 0, 0.2);
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 10px 20px;
    border: 1px solid rgba(139, 0, 0, 0.3);
    background: rgba(26, 26, 26, 0.5);
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--blood-red);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--blood-red);
    border-color: var(--blood-red);
    background: rgba(139, 0, 0, 0.2);
    box-shadow: 
        0 0 15px rgba(204, 0, 0, 0.4),
        inset 0 0 10px rgba(204, 0, 0, 0.1);
    transform: translateY(-2px);
}

.nav-link:hover::after {
    width: 80%;
}

/* Main Content */
main {
    position: relative;
    z-index: 1;
    isolation: isolate;
}

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, transparent 0%, rgba(139, 0, 0, 0.02) 50%, transparent 100%);
    isolation: isolate;
    z-index: 1;
    min-height: auto;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(139, 0, 0, 0.3) 20%,
        var(--red-accent) 50%,
        rgba(139, 0, 0, 0.3) 80%,
        transparent 100%);
    box-shadow: 0 0 10px rgba(139, 0, 0, 0.5);
}


.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--blood-red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    text-shadow: 
        0 0 10px var(--blood-red),
        0 0 20px var(--glow-red),
        0 0 40px rgba(204, 0, 0, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    display: inline-block;
    padding: 0 30px;
}

.section-title::before,
.section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--blood-red));
    opacity: 0.6;
}

.section-title::before {
    left: -60px;
    transform: translateY(-50%);
}

.section-title::after {
    right: -60px;
    transform: translateY(-50%) scaleX(-1);
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* Video Container */
.video-container {
    max-width: 900px;
    margin: 50px auto;
    position: relative;
    z-index: 1;
}

.section-video {
    width: 100%;
    height: auto;
    display: block;
    border: 3px solid var(--blood-red);
    box-shadow: 
        0 0 30px rgba(204, 0, 0, 0.6),
        0 0 60px rgba(204, 0, 0, 0.4),
        0 10px 40px rgba(0, 0, 0, 0.8);
    filter: 
        brightness(0.9) 
        contrast(1.1) 
        saturate(1.2);
    background: var(--darker-bg);
}

.quote-section {
    max-width: 900px;
    margin: 50px auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.quote-section h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: var(--blood-red);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 
        0 0 15px rgba(204, 0, 0, 0.6),
        0 2px 4px rgba(0, 0, 0, 0.8);
}

.quote-section blockquote {
    margin: 30px 0;
    padding: 30px 40px;
    border-left: 5px solid var(--blood-red);
    border-right: 5px solid var(--blood-red);
    background: rgba(139, 0, 0, 0.15);
    position: relative;
    font-style: italic;
    text-align: left;
}

.quote-section blockquote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 6rem;
    color: var(--blood-red);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.quote-section blockquote p {
    margin-bottom: 20px;
    color: var(--text-primary);
    font-size: 1.3rem;
    line-height: 1.9;
    font-weight: 500;
}

.quote-section blockquote p:last-child {
    margin-bottom: 0;
}

.quote-section .source {
    margin-top: 25px;
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-style: italic;
    text-align: center;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--card-bg-dark) 100%);
    border: 1px solid var(--border-color);
    border-left: 5px solid var(--red-accent);
    padding: 35px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.5),
        inset 0 0 1px rgba(139, 0, 0, 0.1);
    -webkit-tap-highlight-color: transparent;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(204, 0, 0, 0.05) 0%, 
        transparent 50%,
        rgba(139, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(204, 0, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: var(--blood-red);
    border-left-width: 6px;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.7),
        0 0 30px rgba(204, 0, 0, 0.4),
        inset 0 0 20px rgba(204, 0, 0, 0.1);
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.95) 0%, 
        rgba(21, 21, 21, 0.98) 100%);
    z-index: 10;
    position: relative;
}

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

.card:hover::after {
    opacity: 1;
}

.card > * {
    position: relative;
    z-index: 1;
}

.card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    color: var(--blood-red);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 
        0 0 10px rgba(204, 0, 0, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(139, 0, 0, 0.3);
}

.card p {
    color: var(--text-primary);
    margin-bottom: 18px;
    line-height: 1.9;
    font-size: 1.05rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.card blockquote {
    margin: 25px 0;
    padding: 20px 25px;
    border-left: 4px solid var(--blood-red);
    background: rgba(139, 0, 0, 0.1);
    position: relative;
    font-style: italic;
}

.card blockquote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 10px;
    font-size: 4rem;
    color: var(--blood-red);
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.card blockquote p {
    margin-bottom: 15px;
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.card blockquote p:last-child {
    margin-bottom: 0;
}

.card strong {
    color: var(--bright-red);
    font-weight: 700;
    text-shadow: 0 0 8px rgba(255, 26, 26, 0.6);
    font-size: 1.1em;
}

.card .quote {
    font-style: italic;
    color: var(--text-secondary);
    border-left: 4px solid var(--blood-red);
    padding: 15px 20px;
    margin: 25px 0;
    background: rgba(139, 0, 0, 0.1);
    box-shadow: 
        inset 4px 0 0 var(--blood-red),
        inset 0 0 20px rgba(139, 0, 0, 0.1);
    position: relative;
}

.card .quote::before {
    content: '"';
    position: absolute;
    top: -5px;
    left: 10px;
    font-size: 3rem;
    color: rgba(204, 0, 0, 0.3);
    font-family: serif;
}

.highlight-card {
    border-left-color: var(--bright-red);
    border-left-width: 6px;
    background: linear-gradient(135deg, 
        rgba(26, 21, 21, 0.95) 0%, 
        rgba(31, 20, 20, 0.98) 100%);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(204, 0, 0, 0.2),
        inset 0 0 1px rgba(255, 26, 26, 0.2);
}

.highlight-card h3 {
    color: var(--bright-red);
    text-shadow: 
        0 0 15px rgba(255, 26, 26, 0.8),
        0 0 30px rgba(204, 0, 0, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.8);
    border-bottom-color: rgba(255, 26, 26, 0.4);
}

.highlight-card:hover {
    border-left-width: 8px;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(255, 26, 26, 0.5),
        inset 0 0 30px rgba(255, 26, 26, 0.15);
}

.source {
    margin-top: 25px;
    padding-top: 15px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
    border-top: 1px solid rgba(139, 0, 0, 0.2);
    opacity: 0.8;
}

/* Stay Informed Form Section */
.stay-informed-section {
    background: linear-gradient(180deg, transparent 0%, rgba(139, 0, 0, 0.05) 50%, transparent 100%);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-form {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--card-bg-dark) 100%);
    border: 1px solid var(--border-color);
    border-left: 5px solid var(--red-accent);
    padding: 40px;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.5),
        inset 0 0 1px rgba(139, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: var(--darker-bg);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--red-accent);
    color: var(--text-primary);
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blood-red);
    border-left-color: var(--bright-red);
    box-shadow: 
        inset 0 2px 5px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(204, 0, 0, 0.3);
    background: rgba(26, 26, 26, 0.8);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--blood-red) 0%, var(--red-accent) 100%);
    border: 2px solid var(--blood-red);
    color: var(--text-primary);
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    box-shadow: 
        0 4px 15px rgba(204, 0, 0, 0.4),
        inset 0 0 10px rgba(139, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

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

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

.submit-btn:hover {
    background: linear-gradient(135deg, var(--bright-red) 0%, var(--blood-red) 100%);
    box-shadow: 
        0 6px 20px rgba(255, 26, 26, 0.6),
        inset 0 0 15px rgba(139, 0, 0, 0.3);
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    text-align: center;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.95rem;
    border-radius: 4px;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(0, 139, 0, 0.2);
    border: 1px solid rgba(0, 139, 0, 0.5);
    color: #90ee90;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.form-message.error {
    display: block;
    background: rgba(139, 0, 0, 0.2);
    border: 1px solid rgba(204, 0, 0, 0.5);
    color: var(--bright-red);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, transparent 0%, var(--darker-bg) 20%, var(--darker-bg) 100%);
    border-top: 3px solid var(--red-accent);
    border-bottom: 3px solid var(--red-accent);
    padding: 50px 20px;
    text-align: center;
    margin-top: 100px;
    box-shadow: 
        0 -5px 30px rgba(139, 0, 0, 0.3),
        inset 0 0 50px rgba(139, 0, 0, 0.1);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--blood-red) 50%,
        transparent 100%);
    box-shadow: 0 0 10px var(--blood-red);
}

.footer p {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 15px;
    text-shadow: 
        0 0 10px rgba(204, 0, 0, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.8);
}

.footer-small {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.footer-disclaimer {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 300;
    font-style: italic;
    margin-top: 20px;
    opacity: 0.7;
    letter-spacing: 0.05em;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        min-height: 80vh;
        padding: 40px 15px;
    }
    
    .main-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
        letter-spacing: 0.1em;
        margin-bottom: 15px;
    }
    
    .main-subtitle {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
        letter-spacing: 0.15em;
        margin-bottom: 30px;
    }
    
    .hero {
        padding: 40px 15px 100px;
        min-height: auto;
    }
    
    .hero-split {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 0;
        margin-bottom: 40px;
    }
    
    .hero-text-side {
        text-align: center;
        width: 100%;
        margin-bottom: 0;
    }
    
    .hero-image-side {
        width: 100%;
        margin-bottom: 20px;
        margin-top: 0;
    }
    
    .main-subtitle {
        margin-bottom: 15px;
    }
    
    .hero-divider {
        margin: 0 auto 15px;
        width: 120px;
    }
    
    .hero-tagline {
        margin-bottom: 20px;
        white-space: normal;
        font-size: clamp(0.7rem, 2vw, 0.9rem);
        letter-spacing: 0.08em;
        line-height: 1.6;
        word-spacing: 0.1em;
    }
    
    .join-fight-btn {
        padding: 12px 30px;
        font-size: 1rem;
        letter-spacing: 0.08em;
        display: block;
        width: fit-content;
        margin: 0 auto;
    }
    
    .mobile-break {
        display: none;
    }
    
    @media (max-width: 480px) {
        .mobile-break {
            display: block;
        }
        
        .hero-tagline {
            letter-spacing: 0.05em;
            font-size: clamp(0.65rem, 1.8vw, 0.85rem);
        }
    }
    
    .hero-image-frame {
        max-width: 100%;
        margin: 0 auto 30px;
    }
    
    .hero-image {
        width: 100%;
        max-width: 100%;
    }
    
    .main-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
        margin-bottom: 15px;
    }
    
    .main-subtitle {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
        margin-bottom: 25px;
    }
    
    .hero-tagline {
        font-size: clamp(0.85rem, 3vw, 1.1rem);
        letter-spacing: 0.15em;
    }
    
    .scrolling-text {
        padding: 20px 0;
    }
    
    .scrolling-text span {
        font-size: 0.9rem;
        letter-spacing: 0.15em;
    }
    
    .nav {
        padding: 12px 0;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .nav-link {
        font-size: 0.7rem;
        padding: 8px 12px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        padding: 0 20px;
    }
    
    .section-title::before,
    .section-title::after {
        width: 20px;
    }
    
    .section-title::before {
        left: -30px;
    }
    
    .section-title::after {
        right: -30px;
    }
    
    .section-subtitle {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }
    
    .video-container {
        margin: 30px auto;
        max-width: 100%;
    }
    
    .section-video {
        border-width: 2px;
    }
    
    .quote-section {
        margin: 30px auto;
        padding: 0 15px;
    }
    
    .quote-section h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .quote-section blockquote {
        padding: 20px 20px;
        margin: 20px 0;
    }
    
    .quote-section blockquote::before {
        font-size: 4rem;
        top: -10px;
        left: 10px;
    }
    
    .quote-section blockquote p {
        font-size: 1.1rem;
    }
    
    .quote-section .source {
        font-size: 0.95rem;
        margin-top: 20px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }
    
    .card {
        padding: 25px 20px;
    }
    
    .card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .card p {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 15px;
    }
    
    .card strong {
        font-size: 1.05em;
    }
    
    .card .quote {
        padding: 12px 15px;
        margin: 20px 0;
    }
    
    .source {
        font-size: 0.8rem;
        margin-top: 20px;
        padding-top: 12px;
    }
    
    .footer {
        padding: 40px 15px;
        margin-top: 60px;
    }
    
    .footer p {
        font-size: 1.1rem;
        letter-spacing: 0.1em;
    }
    
    .footer-small {
        font-size: 0.85rem;
    }
    
    .form-container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .contact-form {
        padding: 30px 25px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 13px 25px;
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 70vh;
        padding: 30px 10px;
    }
    
    .main-title {
        font-size: clamp(2rem, 12vw, 3rem);
        letter-spacing: 0.08em;
    }
    
    .main-subtitle {
        font-size: clamp(1.2rem, 7vw, 2rem);
    }
    
    .hero-image-frame {
        max-width: 300px;
    }
    
    .hero-divider {
        width: 120px;
    }
    
    .scrolling-text span {
        font-size: 0.8rem;
    }
    
    .nav-link {
        font-size: 0.65rem;
        padding: 6px 10px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .card {
        padding: 20px 15px;
    }
    
    .card h3 {
        font-size: 1.2rem;
    }
    
    .form-container {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* First Visit Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup-overlay.show {
    display: flex;
    opacity: 1;
}

.popup-content {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--card-bg-dark) 100%);
    border: 3px solid var(--blood-red);
    border-radius: 8px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 
        0 0 50px rgba(204, 0, 0, 0.6),
        0 0 100px rgba(204, 0, 0, 0.4),
        inset 0 0 20px rgba(139, 0, 0, 0.2);
    animation: popupSlideIn 0.4s ease-out;
    -webkit-overflow-scrolling: touch;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.popup-close:hover {
    color: var(--blood-red);
    transform: rotate(90deg) scale(1.1);
    text-shadow: 
        0 0 15px rgba(204, 0, 0, 0.8),
        0 2px 4px rgba(0, 0, 0, 0.8);
}

.popup-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--blood-red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 
        0 0 15px rgba(204, 0, 0, 0.6),
        0 2px 4px rgba(0, 0, 0, 0.8);
}

.popup-text {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
}

.popup-video-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 30px;
    position: relative;
}

.popup-video {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border: 2px solid var(--blood-red);
    box-shadow: 
        0 0 30px rgba(204, 0, 0, 0.6),
        0 0 60px rgba(204, 0, 0, 0.4);
    background: var(--darker-bg);
    border-radius: 4px;
    object-fit: cover;
}

.popup-video[poster] {
    background-size: cover;
    background-position: center;
}

.popup-contact-btn {
    display: block;
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--blood-red) 0%, var(--dark-red) 100%);
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    border: 2px solid var(--blood-red);
    border-radius: 4px;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(204, 0, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
}

.popup-contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
    z-index: -1;
}

.popup-contact-btn:hover {
    transform: translateY(-3px) scale(1.02);
    background: linear-gradient(135deg, var(--bright-red) 0%, var(--blood-red) 100%);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(204, 0, 0, 0.6),
        inset 0 0 20px rgba(255, 26, 26, 0.2);
    border-color: var(--bright-red);
}

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

.popup-contact-btn:active {
    transform: translateY(-1px) scale(1.01);
}

@media (max-width: 768px) {
    .popup-content {
        padding: 30px 25px;
        width: 95%;
        max-width: 95%;
    }
    
    .popup-close {
        top: 10px;
        right: 15px;
        font-size: 2rem;
        width: 35px;
        height: 35px;
    }
    
    .popup-title {
        margin-bottom: 15px;
        padding-right: 40px;
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .popup-text {
        margin-bottom: 20px;
        font-size: 1rem;
    }
    
    .popup-video-container {
        max-width: 100%;
        margin-bottom: 25px;
    }
    
    .popup-video {
        border-width: 2px;
    }
    
    .popup-contact-btn {
        padding: 12px 25px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .popup-content {
        padding: 25px 15px;
        width: 95%;
        max-width: 95%;
        max-height: 95vh;
    }
    
    .popup-close {
        top: 8px;
        right: 12px;
        font-size: 1.8rem;
        width: 30px;
        height: 30px;
    }
    
    .popup-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
        padding-right: 35px;
        line-height: 1.2;
        word-spacing: 0.05em;
    }
    
    .popup-text {
        font-size: 0.9rem;
        margin-bottom: 18px;
        line-height: 1.5;
    }
    
    .popup-video-container {
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .popup-video {
        border-width: 1.5px;
        border-radius: 3px;
    }
    
    .popup-contact-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
        letter-spacing: 0.08em;
    }
}

