@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600;700&display=swap');

/* ==================== BASE STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
    color: #e0e0e0;
    font-family: 'JetBrains Mono', monospace;
    line-height: 1.8;
    overflow-x: hidden;
    min-height: 100vh;
    padding-top: 100px;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(0, 255, 65, 0.3);
    z-index: 1000;
    animation: slideDown 0.5s ease-out;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-container {
    width: 45px;
    height: 45px;
}

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

.brand-info {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ff41;
    letter-spacing: 0.1em;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.5);
}

.brand-tagline {
    font-size: 0.75rem;
    color: #888;
    margin-top: 2px;
}

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

.nav-link {
    color: #c0c0c0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 8px 16px;
    border: 2px solid transparent;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #00ff41;
    border-color: rgba(0, 255, 65, 0.3);
    background: rgba(0, 255, 65, 0.05);
}

.nav-link.active {
    color: #00ff41;
    border-color: #00ff41;
    background: rgba(0, 255, 65, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
}

.nav-link::before {
    content: '>';
    position: absolute;
    left: 5px;
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-link.active::before {
    opacity: 1;
}

/* ==================== SCAN LINE EFFECT ==================== */
.scan-line {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ff41, transparent);
    animation: scan 3s linear infinite;
    pointer-events: none;
    opacity: 0.3;
    z-index: 10000;
}

/* ==================== CONTAINER ==================== */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 40px;
}

/* ==================== HEADERS ==================== */
.hero-section,
.header-section,
.about-header,
.blog-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.hero-section h1,
.header-section h1,
.about-header h1,
.blog-header h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #00ff41;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 0 30px rgba(0, 255, 65, 0.6);
    animation: fadeInDown 1s ease-out;
}

.hero-section .tagline,
.header-section .subtitle,
.about-header .subtitle,
.blog-header .subtitle {
    font-size: 1.3rem;
    color: #c0c0c0;
    font-weight: 400;
    animation: fadeIn 1.5s ease-out;
}

.hero-section .tagline {
    font-size: 1.4rem;
    margin-bottom: 50px;
}

/* ==================== CONTENT SECTIONS ==================== */
.main-content,
.content-section,
.story-section {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(0, 255, 65, 0.2);
    border-radius: 12px;
    padding: 60px;
    margin-bottom: 40px;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.main-content::before,
.content-section::before,
.story-section::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00ff41, transparent, #00ff41);
    border-radius: 12px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.main-content:hover::before,
.content-section:hover::before,
.story-section:hover::before {
    opacity: 0.1;
}

/* ==================== SECTION TITLES ==================== */
.section-title {
    font-size: 2rem;
    color: #00ff41;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding-left: 25px;
}

.section-title::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #00ff41;
    animation: pulse 2s ease-in-out infinite;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 25px;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #00ff41, transparent);
}

/* ==================== TEXT STYLES ==================== */
.description,
.intro-text {
    font-size: 1.15rem;
    color: #c0c0c0;
    margin-bottom: 30px;
    line-height: 1.9;
}

.highlight {
    color: #00ff41;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
}

.emphasis {
    color: #ffaa00;
    font-weight: 600;
}

/* ==================== INFO BOXES ==================== */
.feature-note,
.mission-box,
.solution-box {
    background: rgba(0, 255, 65, 0.05);
    border-left: 4px solid #00ff41;
    padding: 25px 30px;
    margin-top: 30px;
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 1.05rem;
}

.promise-box {
    background: rgba(0, 255, 65, 0.08);
    border: 3px solid #00ff41;
    padding: 35px 40px;
    margin: 40px 0;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.2);
}

.promise-box::before {
    content: '✓';
    position: absolute;
    top: -20px;
    left: 30px;
    background: #0a0e27;
    color: #00ff41;
    font-size: 2rem;
    font-weight: 700;
    padding: 0 15px;
}

.promise-box p {
    color: #00ff41;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.03em;
}

.future-note,
.problem-box {
    background: rgba(255, 170, 0, 0.05);
    border-left: 4px solid #ffaa00;
    padding: 25px 30px;
    margin: 35px 0;
    border-radius: 8px;
}

.future-note p,
.problem-box p {
    color: #e0e0e0;
    font-size: 1.05rem;
}

.problem-box p {
    font-style: italic;
}

.info-block {
    margin-bottom: 35px;
}

.info-block p {
    font-size: 1.1rem;
    color: #c0c0c0;
    line-height: 1.9;
    margin-bottom: 20px;
}

.info-block p:last-child {
    margin-bottom: 0;
}

/* ==================== CONTACT BOX ==================== */
.contact-box {
    text-align: center;
    margin-top: 50px;
    padding: 35px;
    background: rgba(0, 255, 65, 0.03);
    border: 2px solid rgba(0, 255, 65, 0.3);
    border-radius: 12px;
}

.contact-box p {
    color: #c0c0c0;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-box a {
    color: #00ff41;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
    transition: all 0.3s ease;
}

.contact-box a:hover {
    color: #00cc33;
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
}

/* ==================== BLOG STYLES ==================== */
.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-post-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(0, 255, 65, 0.2);
    border-radius: 12px;
    padding: 40px;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out;
}

.blog-post-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00ff41, transparent, #00ff41);
    border-radius: 12px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.blog-post-card:hover {
    border-color: rgba(0, 255, 65, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 255, 65, 0.2);
}

.blog-post-card:hover::before {
    opacity: 0.15;
}

.post-title {
    font-size: 2.5rem;
    color: #00ff41;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
}

.post-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, #00ff41, transparent);
}

.post-meta {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.post-date {
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-date::before {
    content: '📅';
}

.post-snippet {
    font-size: 1.1rem;
    color: #c0c0c0;
    line-height: 1.9;
    margin-bottom: 20px;
}

.read-more {
    display: inline-block;
    color: #00ff41;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    padding: 8px 16px;
    border: 2px solid #00ff41;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.read-more:hover {
    background: rgba(0, 255, 65, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
}

/* ==================== MODAL STYLES ==================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    overflow-y: auto;
    animation: fadeIn 0.3s ease-out;
}

.modal.active {
    display: block;
}

.modal-content {
    max-width: 900px;
    margin: 50px auto;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
    border: 2px solid rgba(0, 255, 65, 0.3);
    border-radius: 12px;
    padding: 60px;
    position: relative;
    animation: slideUp 0.4s ease-out;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: #00ff41;
    cursor: pointer;
    border: 2px solid #00ff41;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: rgba(0, 255, 65, 0.05);
}

.modal-close:hover {
    background: rgba(0, 255, 65, 0.15);
    transform: rotate(90deg);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
}

.modal-header {
    text-align: center;
    margin-bottom: 50px;
}

.modal-header h1 {
    font-size: 3.5rem;
    color: #00ff41;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
}

.modal-header .subtitle {
    font-size: 1rem;
    color: #888;
}

.share-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 255, 65, 0.2);
}

.share-btn {
    padding: 10px 20px;
    border: 2px solid rgba(0, 255, 65, 0.3);
    background: rgba(0, 255, 65, 0.05);
    color: #00ff41;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.share-btn:hover {
    background: rgba(0, 255, 65, 0.15);
    border-color: #00ff41;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
}

/* ==================== BLOG POST CONTENT ==================== */
.chapter {
    margin-bottom: 50px;
    position: relative;
    padding-left: 30px;
}

.chapter::before {
    content: '▸';
    position: absolute;
    left: 0;
    top: 5px;
    color: #00ff41;
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.chapter-title {
    font-size: 1.6rem;
    color: #00ff41;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    position: relative;
}

.chapter-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, #00ff41, transparent);
}

.chapter p {
    font-size: 1.05rem;
    color: #c0c0c0;
    margin-bottom: 20px;
    line-height: 1.9;
}

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

.year-badge {
    display: inline-block;
    background: linear-gradient(135deg, #00ff41, #00cc33);
    color: #000;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-right: 8px;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.4);
}

.closing {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: rgba(0, 255, 65, 0.03);
    border: 2px solid rgba(0, 255, 65, 0.3);
    border-radius: 12px;
}

.closing p {
    font-size: 1.3rem;
    color: #00ff41;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.closing span {
    font-size: 1rem;
    color: #888;
    font-weight: 400;
    display: block;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes scan {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100vh);
    }
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    body {
        padding-top: 140px;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }
    
    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
    
    .container {
        padding: 40px 20px;
    }
    
    .hero-section h1,
    .header-section h1,
    .about-header h1,
    .blog-header h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .tagline,
    .header-section .subtitle,
    .about-header .subtitle,
    .blog-header .subtitle {
        font-size: 1.1rem;
    }
    
    .main-content,
    .content-section,
    .story-section {
        padding: 40px 30px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .description,
    .intro-text,
    .mission-box p,
    .info-block p {
        font-size: 1rem;
    }
    
    .promise-box {
        padding: 30px 25px;
    }
    
    .promise-box p {
        font-size: 1.1rem;
    }
    
    .post-title {
        font-size: 2rem;
    }
    
    .modal-content {
        margin: 20px;
        padding: 40px 30px;
    }
    
    .modal-header h1 {
        font-size: 2.5rem;
    }
    
    .chapter-title {
        font-size: 1.3rem;
    }
    
    .chapter p {
        font-size: 1rem;
    }
}