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

:root {
    --primary-red: #c41e1e;
    --deep-red: #8b0000;
    --gold: #d4af37;
    --light-gold: #f4d77e;
    --dark-bg: #0a0a0a;
    --lighter-bg: #1a1a1a;
    --card-bg: #2a2416;
    --text-light: #f5f5f5;
    --text-muted: #c9c9c9;
    --accent-brown: #8b6f47;
    --leather: #654321;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #0a0a0a;
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(139, 111, 71, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(196, 30, 30, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #1a1004 50%, #0a0a0a 100%);
    animation: bgShift 20s ease infinite;
}

@keyframes bgShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Decorative Western Border Pattern */
.western-border {
    position: relative;
}

.western-border::before,
.western-border::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        var(--gold) 0px,
        var(--gold) 15px,
        transparent 15px,
        transparent 20px,
        var(--leather) 20px,
        var(--leather) 25px,
        transparent 25px,
        transparent 30px
    );
}

.western-border::before { top: 0; }
.western-border::after { bottom: 0; }

/* Leather texture overlay */
.leather-texture {
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(139, 111, 71, 0.03) 2px, rgba(139, 111, 71, 0.03) 4px),
        repeating-linear-gradient(-45deg, transparent, transparent 2px, rgba(101, 67, 33, 0.03) 2px, rgba(101, 67, 33, 0.03) 4px);
}

/* Header */
header {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(26, 20, 4, 0.95) 100%);
    padding: 2rem 0;
    text-align: center;
    border-bottom: 4px solid var(--gold);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.8),
        inset 0 -2px 8px rgba(212, 175, 55, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--gold) 20%,
        var(--light-gold) 50%,
        var(--gold) 80%,
        transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.logo-container {
    max-width: 1000px;
    margin: 0 auto 1.5rem;
    filter: drop-shadow(0 8px 24px rgba(212, 175, 55, 0.6));
    animation: logoGlow 4s ease-in-out infinite;
    position: relative;
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 8px 24px rgba(212, 175, 55, 0.4));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 12px 32px rgba(212, 175, 55, 0.7));
        transform: scale(1.02);
    }
}

.logo-container img {
    width: 100%;
    height: auto;
}

nav {
    margin-top: 1.5rem;
    position: relative;
}

@keyframes starPulse {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.2); }
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    margin: 0 2rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.4s ease;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--light-gold), var(--gold));
    transform: translateX(-50%);
    transition: width 0.4s ease;
}

nav a:hover {
    color: var(--gold);
    text-shadow:
        0 0 20px rgba(212, 175, 55, 0.8),
        0 0 40px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

nav a:hover::after {
    width: 100%;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    padding: 6rem 2rem;
    text-align: center;
    background:
        radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%),
        linear-gradient(180deg, rgba(139, 111, 71, 0.05) 0%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '★ ★ ★';
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 1.5rem;
    opacity: 0.3;
    letter-spacing: 2rem;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

h1, h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--light-gold) 0%, var(--gold) 50%, var(--leather) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 4px;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

h2 {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 3px;
}

@keyframes titleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

h1::before,
h1::after,
h2::before,
h2::after {
    content: '━━━';
    position: absolute;
    top: 50%;
    color: var(--gold);
    font-size: 0.3em;
    opacity: 0.5;
}

h1::before,
h2::before {
    left: -150px;
}

h1::after,
h2::after {
    right: -150px;
}

.divider {
    height: 3px;
    background: linear-gradient(90deg,
        transparent,
        var(--leather) 10%,
        var(--gold) 30%,
        var(--light-gold) 50%,
        var(--gold) 70%,
        var(--leather) 90%,
        transparent);
    margin: 2rem auto;
    max-width: 400px;
    position: relative;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.divider::before,
.divider::after {
    content: '◆';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 0.8rem;
}

.divider::before { left: -20px; }
.divider::after { right: -20px; }

.hero p {
    font-size: 1.4rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 2;
    font-style: italic;
    position: relative;
    padding: 1rem 0;
}

.hero p::before,
.hero p::after {
    content: '"';
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.3;
    font-family: Georgia, serif;
}

/* Tagline */
.tagline {
    margin-top: 3rem;
    font-size: 1.1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    font-family: 'Cinzel', serif;
    animation: fadeInUp 1.5s ease;
}

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

/* About Section */
.about {
    padding: 6rem 2rem;
    background:
        linear-gradient(135deg, rgba(26, 20, 4, 0.4) 0%, rgba(42, 36, 22, 0.3) 100%);
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
    position: relative;
    box-shadow:
        inset 0 10px 30px rgba(0, 0, 0, 0.5),
        inset 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(212, 175, 55, 0.02) 2px,
        rgba(212, 175, 55, 0.02) 4px
    );
    pointer-events: none;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(26, 20, 4, 0.6) 0%, rgba(42, 36, 22, 0.4) 100%);
    padding: 3rem;
    border-radius: 10px;
    border: 2px solid var(--gold);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(212, 175, 55, 0.2);
    position: relative;
}

.about-content::before,
.about-content::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid var(--gold);
}

.about-content::before {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
}

.about-content::after {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
}

.about-content p {
    font-size: 1.3rem;
    line-height: 2;
    color: var(--text-muted);
    text-align: center;
}

.about-content p:first-child {
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Brothers highlight */
.brothers {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.brother-card {
    background: linear-gradient(135deg, rgba(42, 36, 22, 0.8) 0%, rgba(26, 20, 4, 0.6) 100%);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--gold);
    min-width: 250px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.brother-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    transition: transform 0.6s ease;
}

.brother-card:hover {
    transform: translateY(-10px);
    border-color: var(--light-gold);
    box-shadow:
        0 20px 60px rgba(212, 175, 55, 0.3),
        0 0 40px rgba(212, 175, 55, 0.2);
}

.brother-card:hover::before {
    transform: rotate(180deg);
}

.brother-card h3 {
    font-size: 2rem;
    color: var(--gold);
    font-family: 'Cinzel', serif;
    margin-bottom: 0.5rem;
    position: relative;
}

.brother-card p {
    color: var(--text-muted);
    font-style: italic;
}

/* Videos Section */
.videos {
    padding: 6rem 2rem;
    background: radial-gradient(ellipse at center, rgba(139, 111, 71, 0.05) 0%, transparent 70%);
    position: relative;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.video-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 0 2px var(--gold);
    transition: all 0.4s ease;
    background: var(--card-bg);
}

.video-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(212, 175, 55, 0.1),
        transparent 60deg
    );
    animation: videoShine 4s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

@keyframes videoShine {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 30px 80px rgba(212, 175, 55, 0.3),
        0 0 0 3px var(--light-gold),
        0 0 40px rgba(212, 175, 55, 0.4);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.loading {
    text-align: center;
    color: var(--gold);
    font-size: 1.2rem;
    padding: 3rem;
}

.youtube-link {
    text-align: center;
    margin-top: 4rem;
}

.youtube-link a {
    display: inline-block;
    padding: 1.5rem 4rem;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--deep-red) 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    border: 3px solid var(--primary-red);
    box-shadow:
        0 10px 40px rgba(196, 30, 30, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    font-family: 'Cinzel', serif;
}

.youtube-link a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.youtube-link a:hover::before {
    width: 400px;
    height: 400px;
}

.youtube-link a:hover {
    background: linear-gradient(135deg, var(--deep-red) 0%, var(--primary-red) 100%);
    border-color: var(--gold);
    color: var(--gold);
    box-shadow:
        0 15px 60px rgba(212, 175, 55, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.youtube-link a span {
    position: relative;
    z-index: 1;
}

/* Social Links */
.social {
    padding: 6rem 2rem;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(26, 20, 4, 0.5) 0%, rgba(42, 36, 22, 0.4) 100%);
    border-top: 3px solid var(--gold);
    position: relative;
}

.social::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(ellipse at top, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(42, 36, 22, 0.9) 0%, rgba(26, 20, 4, 0.8) 100%);
    border-radius: 50%;
    color: var(--gold);
    text-decoration: none;
    font-size: 2.2rem;
    transition: all 0.5s ease;
    border: 3px solid var(--gold);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.5),
        inset 0 2px 5px rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, var(--gold) 0%, var(--light-gold) 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    opacity: 0.2;
}

.social-icon:hover::before {
    width: 200px;
    height: 200px;
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
    color: var(--dark-bg);
    transform: translateY(-15px) rotate(360deg);
    box-shadow:
        0 20px 60px rgba(212, 175, 55, 0.6),
        0 0 50px rgba(212, 175, 55, 0.4),
        inset 0 2px 10px rgba(255, 255, 255, 0.3);
    border-color: var(--light-gold);
}

.social-icon span {
    position: relative;
    z-index: 1;
}

/* Decorative stars */
.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.star {
    position: absolute;
    color: var(--gold);
    opacity: 0.2;
    animation: twinkle 3s ease-in-out infinite;
}

.star:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.star:nth-child(2) { top: 20%; right: 15%; animation-delay: 0.5s; }
.star:nth-child(3) { top: 60%; left: 20%; animation-delay: 1s; }
.star:nth-child(4) { top: 70%; right: 25%; animation-delay: 1.5s; }
.star:nth-child(5) { top: 40%; left: 50%; animation-delay: 2s; }

@keyframes twinkle {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.2); }
}

/* Footer */
footer {
    padding: 3rem 2rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(0, 0, 0, 1) 100%);
    border-top: 4px solid var(--gold);
    color: var(--text-muted);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--gold) 50%,
        transparent 100%);
}

footer p {
    font-size: 1rem;
    letter-spacing: 1px;
}

footer p:first-child {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-divider {
    width: 100px;
    height: 2px;
    background: var(--gold);
    margin: 1.5rem auto;
}

/* Scroll indicator */
.scroll-indicator {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 2rem;
    animation: bounce 2s ease-in-out infinite;
    z-index: 50;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-15px); }
}

/* Responsive */
@media (max-width: 968px) {
    h1, h2 {
        font-size: 2.5rem;
    }

    h1::before,
    h1::after,
    h2::before,
    h2::after {
        display: none;
    }

    .hero p {
        font-size: 1.2rem;
    }

    nav a {
        display: block;
        margin: 1rem 0;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .brothers {
        gap: 2rem;
    }

    .social-icons {
        gap: 2rem;
    }

    .social-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}

/* Loading animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

body {
    animation: fadeIn 0.8s ease-in;
}
