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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Oswald', sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 20, 20, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(184, 134, 11, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(139, 69, 19, 0.2) 0%, transparent 50%);
    animation: backgroundShift 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes backgroundShift {
    0%, 100% { 
        background: 
            radial-gradient(circle at 20% 80%, rgba(120, 20, 20, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(184, 134, 11, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(139, 69, 19, 0.2) 0%, transparent 50%);
    }
    50% { 
        background: 
            radial-gradient(circle at 80% 20%, rgba(120, 20, 20, 0.4) 0%, transparent 50%),
            radial-gradient(circle at 20% 80%, rgba(184, 134, 11, 0.4) 0%, transparent 50%),
            radial-gradient(circle at 60% 60%, rgba(139, 69, 19, 0.3) 0%, transparent 50%);
    }
}

/* Terminal Navigation */
.terminal-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #b8860b;
    z-index: 1000;
    padding: 15px 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #b8860b;
}

.brand-symbol {
    font-size: 2rem;
    animation: symbolGlow 3s ease-in-out infinite;
}

@keyframes symbolGlow {
    0%, 100% { text-shadow: 0 0 10px #b8860b; }
    50% { text-shadow: 0 0 20px #b8860b, 0 0 30px #b8860b; }
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-link:hover {
    color: #b8860b;
}

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

.nav-link.active {
    color: #b8860b;
}

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

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, rgba(120, 20, 20, 0.1) 0%, transparent 50%),
        linear-gradient(-45deg, rgba(184, 134, 11, 0.1) 0%, transparent 50%);
    animation: heroShift 15s ease-in-out infinite;
}

@keyframes heroShift {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(2deg) scale(1.05); }
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.hero-title {
    font-size: 6rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.title-line {
    display: block;
    background: linear-gradient(45deg, #b8860b, #ff6b35, #b8860b);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGradient 4s ease-in-out infinite;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    color: #a01111;;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(184, 134, 11, 0.1);
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(184, 134, 11, 0.2);
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.3);
}

.feature-icon {
    font-size: 2rem;
}

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
}

.dark-section {
    background: rgba(5, 5, 5, 0.8);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #b8860b;
    position: relative;
}

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

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #a01111;;
    line-height: 1.8;
}

.content-image {
    text-align: center;
}

.section-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.section-image:hover {
    transform: scale(1.05);
}

/* Mirrors Section */
.mirrors-content {
    text-align: center;
}

.mirrors-description {
    font-size: 1.2rem;
    color: #a01111;;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mirrors-list {
    background: rgba(184, 134, 11, 0.1);
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    display: inline-block;
}

.mirrors-list a {
    display: block;
    color: #b8860b;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Courier New', monospace;
}

.mirrors-list a:hover {
    background: rgba(184, 134, 11, 0.2);
    transform: translateX(10px);
}

.security-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 10px;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.notice-icon {
    font-size: 1.5rem;
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.process-step {
    background: rgba(184, 134, 11, 0.1);
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-5px);
    background: rgba(184, 134, 11, 0.2);
    box-shadow: 0 15px 35px rgba(184, 134, 11, 0.2);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 30px;
    background: #b8860b;
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.process-step h3 {
    color: #b8860b;
    font-size: 1.3rem;
    margin-bottom: 15px;
    margin-top: 10px;
}

.process-step p {
    color: #a01111;;
    line-height: 1.6;
}

/* Security Grid */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.security-feature {
    background: rgba(120, 20, 20, 0.1);
    border: 1px solid rgba(120, 20, 20, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.security-feature:hover {
    transform: translateY(-5px);
    background: rgba(120, 20, 20, 0.2);
    box-shadow: 0 15px 35px rgba(120, 20, 20, 0.3);
}

.feature-icon-large {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.security-feature h3 {
    color: #ff6b35;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.security-feature p {
    color: #a01111;;
    line-height: 1.6;
}

.security-image {
    text-align: center;
    margin-top: 40px;
}

/* Crypto Section */
.crypto-description {
    font-size: 1.2rem;
    color: #a01111;;
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.crypto-item {
    background: rgba(184, 134, 11, 0.1);
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.crypto-item:hover {
    transform: translateY(-5px);
    background: rgba(184, 134, 11, 0.2);
    box-shadow: 0 15px 35px rgba(184, 134, 11, 0.2);
}

.crypto-icon {
    font-size: 3rem;
    color: #b8860b;
    margin-bottom: 20px;
    display: block;
    font-weight: 700;
}

.crypto-item h3 {
    color: #b8860b;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.crypto-item p {
    color: #a01111;;
    line-height: 1.6;
}

.crypto-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-box {
    background: rgba(139, 69, 19, 0.1);
    border: 1px solid rgba(139, 69, 19, 0.3);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    background: rgba(139, 69, 19, 0.2);
}

.feature-box h4 {
    color: #8b4513;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-box p {
    color: #a01111;;
    line-height: 1.6;
}

/* Vendor Section */
.vendor-intro {
    text-align: center;
    margin-bottom: 50px;
}

.vendor-intro p {
    font-size: 1.2rem;
    color: #a01111;;
    max-width: 800px;
    margin: 0 auto;
}

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

.rule-category {
    background: rgba(120, 20, 20, 0.1);
    border: 1px solid rgba(120, 20, 20, 0.3);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.rule-category:hover {
    transform: translateY(-5px);
    background: rgba(120, 20, 20, 0.2);
}

.rule-category h3 {
    color: #ff6b35;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.rule-category ul {
    list-style: none;
}

.rule-category li {
    color: #a01111;;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.rule-category li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

.vendor-benefits h3 {
    color: #b8860b;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

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

.benefit-item {
    background: rgba(184, 134, 11, 0.1);
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(184, 134, 11, 0.2);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.benefit-item h4 {
    color: #b8860b;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.benefit-item p {
    color: #a01111;;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Mission Section */
.mission-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

.philosophy-block {
    margin-bottom: 40px;
}

.philosophy-block h3 {
    color: #b8860b;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.philosophy-block p {
    color: #a01111;;
    line-height: 1.7;
    font-size: 1.1rem;
}

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

.value-item {
    background: rgba(139, 69, 19, 0.1);
    border: 1px solid rgba(139, 69, 19, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    background: rgba(139, 69, 19, 0.2);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.value-item h4 {
    color: #8b4513;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.value-item p {
    color: #a01111;;
    line-height: 1.5;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.faq-item {
    background: rgba(120, 20, 20, 0.1);
    border: 1px solid rgba(120, 20, 20, 0.3);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    background: rgba(120, 20, 20, 0.2);
}

.faq-item h3 {
    color: #ff6b35;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.faq-item p {
    color: #a01111;;
    line-height: 1.6;
}

.faq-image {
    text-align: center;
}

/* Disclaimer Section */
.disclaimer-section {
    background: rgba(120, 20, 20, 0.2);
    border-top: 3px solid #ff6b35;
    border-bottom: 3px solid #ff6b35;
    padding: 60px 0;
}

.disclaimer-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.disclaimer-content p {
    font-size: 1.1rem;
    color: #a01111;;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Footer */
.footer {
    background: rgba(5, 5, 5, 0.9);
    border-top: 2px solid #b8860b;
    padding: 50px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #b8860b;
}

.footer-tagline {
    color: #a01111;;
    font-size: 1rem;
    font-style: italic;
}

.footer-nav h4 {
    color: #b8860b;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: #a01111;;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #b8860b;
}

.footer-info h4 {
    color: #b8860b;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-info p {
    color: #a01111;;
    font-size: 0.95rem;
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .content-grid,
    .mission-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero-title {
        font-size: 3rem;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .process-grid,
    .security-grid,
    .crypto-grid,
    .rules-grid,
    .benefits-grid,
    .values-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .nav-links {
        gap: 10px;
    }
    
    .nav-link {
        font-size: 0.85rem;
    }
}

