/* ILLUMINATI BROTHERHOOD - Dark Mysterious Theme */
:root {
    --primary: #c9a227;
    --primary-light: #e6c13c;
    --primary-dark: #a68518;
    --accent: #8b0000;
    --accent-light: #b30000;
    --bg-dark: #0a0a0a;
    --bg-secondary: #0d0d0d;
    --surface: #141414;
    --surface-light: #1a1a1a;
    --text: #e8e8e8;
    --text-muted: #888888;
    --border: rgba(201, 162, 39, 0.15);
    --success: #c9a227;
    --font-heading: 'Cinzel', 'Times New Roman', serif;
    --font-body: 'Crimson Text', Georgia, serif;
    --radius-md: 0.25rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-full: 9999px;
    --shadow-glow: 0 0 60px rgba(201, 162, 39, 0.2);
    --shadow-red: 0 0 40px rgba(139, 0, 0, 0.3);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text);
    background: var(--bg-dark);
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: url('../images/general_bg.png');
    background-repeat: repeat;
    background-size: 500px;
    opacity: 0.2;
    z-index: -1;
    pointer-events: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

h1 {
    font-size: clamp(2rem, 6vw, 4rem);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gold {
    color: var(--primary);
}

.text-red {
    color: var(--accent);
}

.text-center {
    text-align: center;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.9;
    font-style: italic;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 3rem 0;
}

@media (min-width: 640px) {
    .section {
        padding: 4rem 0;
    }
}

@media (min-width: 768px) {
    .section {
        padding: 5rem 0;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 7rem 0;
    }
}


.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .grid {
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .grid {
        gap: 2.5rem;
    }
}

.grid-2 {
    grid-template-columns: 1fr;
}

.grid-3 {
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {

    .grid-2,
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.gap-4 {
    gap: 1rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary);
    filter: drop-shadow(0 0 10px rgba(201, 162, 39, 0.5));
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.nav-desktop {
    display: none;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.menu-toggle:hover {
    border-color: var(--primary);
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 1px;
    background: var(--primary);
    transition: 0.3s;
}

.menu-toggle span:nth-child(2) {
    margin: 6px 0;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }
}

.nav-mobile {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.98);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
}

.nav-mobile.active {
    opacity: 1;
    visibility: visible;
}

.nav-mobile a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.nav-mobile a:hover {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 0;
    transition: 0.3s;
    white-space: nowrap;
    border: 1px solid var(--primary);
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-dark);
    box-shadow: 0 0 30px rgba(201, 162, 39, 0.3);
}

.btn-primary:hover {
    background: var(--primary-light);
    box-shadow: 0 0 50px rgba(201, 162, 39, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
}

.btn-secondary:hover {
    background: rgba(201, 162, 39, 0.1);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: var(--text-muted);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 0.9rem;
}

.btn-sm {
    padding: 0.75rem 1.5rem;
    font-size: 0.75rem;
}

.btn-block {
    width: 100%;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(80px + 3rem) 1.5rem 3rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.9) 100%),
        url('../images/hero_gate.png') center/cover fixed;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(201, 162, 39, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--bg-dark), transparent);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.hero-symbol {
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
    animation: pulse 3s ease-in-out infinite;
}

.hero-symbol img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(201, 162, 39, 0.5));
}

.hero h1 {
    margin-bottom: 1.5rem;
    text-shadow: 0 0 60px rgba(201, 162, 39, 0.5);
    animation: fadeInUp 1s ease-out;
}

.hero .lead {
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Eye Symbol */
.eye-symbol {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    position: relative;
    animation: float 4s ease-in-out infinite;
}

.eye-symbol::before {
    content: '△';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: var(--primary);
    filter: drop-shadow(0 0 20px rgba(201, 162, 39, 0.6));
}

.eye-symbol::after {
    content: '👁';
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(201, 162, 39, 0.8));
}

/* Cards */
.feature-card {
    background: linear-gradient(180deg, var(--surface) 0%, var(--bg-secondary) 100%);
    border: 1px solid var(--border);
    padding: 2.5rem;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: 0.4s;
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    border: 1px solid var(--border);
}

.feature-card:hover .feature-icon {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(201, 162, 39, 0.3);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-card p {
    margin-bottom: 0;
}

/* Content Box */
.content-box {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 2.5rem;
}

.content-box h2,
.content-box h3 {
    margin-bottom: 1.5rem;
}

.content-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.content-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-muted);
}

.content-list li i {
    color: var(--primary);
    margin-top: 5px;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, var(--primary), var(--accent), var(--primary));
}

.timeline-item {
    position: relative;
    padding-bottom: 3rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: calc(-3rem - 5px);
    top: 5px;
    width: 11px;
    height: 11px;
    background: var(--primary);
    border-radius: 0;
    transform: rotate(45deg);
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.5);
}

.timeline-date {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.timeline-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.timeline-item p {
    margin-bottom: 0;
}

/* Quote Section */
.quote-section {
    background: linear-gradient(180deg, var(--surface) 0%, var(--bg-dark) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--primary);
    font-style: italic;
    line-height: 1.5;
    max-width: 900px;
    margin: 0 auto;
}

.quote-author {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

/* Stats */
.stats-section {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
    padding: 1.5rem 0.5rem;
}

@media (min-width: 640px) {
    .stat-item {
        padding: 2rem 1rem;
    }
}

@media (min-width: 768px) {
    .stat-item {
        padding: 2.5rem 1rem;
    }
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(201, 162, 39, 0.4);
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

@media (min-width: 640px) {
    .stat-label {
        font-size: 0.8rem;
        letter-spacing: 0.2em;
    }
}

/* CTA */
.cta-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--surface) 50%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(201, 162, 39, 0.05) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 1rem;
    transition: 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.1);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr repeat(3, 1fr);
    }
}

.footer-brand {
    max-width: 350px;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    color: var(--text-muted);
}

.footer-social a:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-legal a:hover {
    color: var(--primary);
}

/* Page Hero */
.page-hero {
    padding: calc(80px + 5rem) 1.5rem 5rem;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-dark) 100%);
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(201, 162, 39, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero h1 {
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    font-family: var(--font-heading);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--primary);
}

/* Testimonials */
.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 2.5rem;
    position: relative;
}

.testimonial-quote {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--bg-dark);
    background: var(--primary);
}

.testimonial-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* FAQ */
.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.05em;
    cursor: pointer;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    transition: 0.3s;
    color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    margin-bottom: 0;
}

/* Alert */
.alert {
    padding: 1.25rem 1.5rem;
    border: 1px solid;
    margin-bottom: 1.5rem;
}

.alert-info {
    border-color: var(--primary);
    background: rgba(201, 162, 39, 0.05);
    color: var(--primary);
}

/* Success */
.success-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
    font-size: 3rem;
    color: var(--primary);
    animation: pulse 2s ease-in-out infinite;
}

/* Brotherhood Image Grid */
.brotherhood-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .brotherhood-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.brotherhood-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border);
    min-height: 200px;
}

@media (min-width: 640px) {
    .brotherhood-image {
        aspect-ratio: 1;
        min-height: 300px;
    }
}

@media (min-width: 768px) {
    .brotherhood-image {
        min-height: 400px;
    }
}

.brotherhood-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%) contrast(1.1);
    transition: 0.4s;
}

.brotherhood-image:hover img {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.05);
}

.brotherhood-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 10, 10, 0.8) 100%);
    pointer-events: none;
}

.brotherhood-section {
    position: relative;
    background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)), url('../images/guardians_bg.png');
    background-size: 400px;
    background-repeat: repeat;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hidden {
    display: none;
}

/* Contact Widget */
.contact-widget {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--bg-dark);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 0 30px rgba(201, 162, 39, 0.4), 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    animation: widgetPulse 3s ease-in-out infinite;
}

@media (min-width: 640px) {
    .contact-widget {
        bottom: 2rem;
        right: 2rem;
        padding: 0.875rem 1.25rem;
        font-size: 0.75rem;
        gap: 0.75rem;
    }
}

.contact-widget:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 60px rgba(201, 162, 39, 0.6), 0 8px 30px rgba(0, 0, 0, 0.5);
}

.contact-widget-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 10, 0.2);
    border-radius: 0;
    font-size: 0.9rem;
}

@media (min-width: 640px) {
    .contact-widget-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

.contact-widget-text {
    display: none;
}

@media (min-width: 640px) {
    .contact-widget-text {
        display: inline;
    }
}

@keyframes widgetPulse {

    0%,
    100% {
        box-shadow: 0 0 40px rgba(201, 162, 39, 0.4), 0 4px 20px rgba(0, 0, 0, 0.4);
    }

    50% {
        box-shadow: 0 0 60px rgba(201, 162, 39, 0.6), 0 4px 20px rgba(0, 0, 0, 0.4);
    }
}

/* Born in Darkness BG */
.born-in-darkness-section {
    position: relative;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.7) 100%),
        url('../images/born_in_darkness_bg.png') center/cover no-repeat;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* Symbols Page */
.symbols-page {
    background: url('../images/symbols_page_bg.png');
    background-repeat: repeat;
    background-size: 500px;
    background-attachment: fixed;
}

.symbols-page::before {
    display: none;
    /* Hide default noise */
}