/* ===========================================
   CSS VARIABLES & RESET - CLEAN FORMAT
   =========================================== */
:root {
    --pure-black: #000000;
    --dark-gray: #111111;
    --medium-gray: #222222;
    --light-gray: #333333;
    --white: #ffffff;
    --off-white: #f0f0f0;
    --pure-white: #ffffff;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #999999;
    --border-color: #444444;
    --hover-gray: #2a2a2a;
    --shadow-black: rgba(0, 0, 0, 0.5);
    --shadow-white: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'JetBrains Mono', monospace;
    background-color: var(--pure-black);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

.logo img {
    height: 40px; /* Adjust as needed */
    width: auto;
    vertical-align: middle;
}

/* For the sideloading page navigation */
.sideloading-logo img {
    height: 30px; /* Adjust as needed */
    width: auto;
    vertical-align: middle;
    margin-right: 10px;
}

/* ===========================================
   NAVIGATION - CLEAN & SIMPLE
   =========================================== */
.cyber-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--white);
    z-index: 1000;
    padding: 1rem 2rem;
}

.nav-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: 1px solid var(--white);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.7rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: var(--white);
    color: var(--pure-black);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-top: 1px solid var(--white);
    z-index: 999;
}

.mobile-menu.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    color: var(--white);
    text-decoration: none;
    padding: 1rem;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
}

.mobile-nav-link:hover {
    border-left: 3px solid var(--white);
    background: rgba(255, 255, 255, 0.1);
}

/* ===========================================
   HERO SECTION
   =========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 3rem;
    position: relative;
    background: var(--pure-black);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

.hero-content {
    max-width: 1200px;
    text-align: center;
    z-index: 1;
    position: relative;
    padding: 0 1rem;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
    word-wrap: break-word;
    hyphens: auto;
    overflow-wrap: break-word;
    word-break: break-word;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    word-wrap: break-word;
}

.hero-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3rem;
}

.tag {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--white);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tag:hover {
    background: var(--white);
    color: var(--pure-black);
    transform: translateY(-3px);
}

/* ===========================================
   SECTION COMMON STYLES
   =========================================== */
.section {
    padding: 5rem 2rem;
    position: relative;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 1rem;
    word-wrap: break-word;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--white);
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ===========================================
   ABOUT SECTION
   =========================================== */
.about-section {
    background: var(--dark-gray);
}

.about-content {
    text-align: center;
}

.about-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    word-wrap: break-word;
}


/* ===========================================
   RESEARCH SECTION
   =========================================== */
.research-section {
    background: var(--pure-black);
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.research-card {
    background: var(--medium-gray);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.research-card:hover {
    border-color: var(--white);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow-black);
}

.research-icon {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 80px;
    border: 2px solid var(--white);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.research-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-wrap: break-word;
}

.research-desc {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9rem;
    text-align: center;
    word-wrap: break-word;
}

/* ===========================================
   TOPICS SECTION
   =========================================== */
.topics-section {
    background: var(--dark-gray);
    padding: 5rem 2rem;
}

.topics-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.topic-item {
    background: var(--medium-gray);
    padding: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.topic-item:hover {
    background: var(--light-gray);
}

.topic-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
}

.topic-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    color: var(--white);
    font-weight: bold;
    min-width: 40px;
}

.topic-main-title {
    flex: 1;
    padding: 0 2rem;
}

.topic-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-wrap: break-word;
    hyphens: auto;
    line-height: 1.3;
}

.topic-date {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.topic-toggle {
    color: var(--white);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    min-width: 40px;
    text-align: center;
}

.topic-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: var(--light-gray);
}

.topic-item.active .topic-content {
    max-height: 500px;
}

.topic-item.active .topic-toggle {
    transform: rotate(180deg);
}

.topic-description {
    padding: 2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
    border-top: 1px solid var(--border-color);
}

.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding: 15px;
}

.pagination-btn {
    background: var(--medium-gray);
    color: var(--white);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'JetBrains Mono', monospace;
    transition: all 0.3s ease;
    min-width: 120px;
}

.pagination-btn:hover:not(:disabled) {
    background: var(--white);
    color: var(--pure-black);
    border-color: var(--white);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-info {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.view-all-btn {
    background: var(--white);
    color: var(--pure-black);
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 20px;
    display: inline-block;
}

.view-all-btn:hover {
    background: var(--off-white);
    transform: translateY(-2px);
}

/* ===========================================
   PRICING SECTION
   =========================================== */
.pricing-section {
    background: var(--dark-gray);
    padding: 5rem 2rem;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-category {
    margin-bottom: 4rem;
}

.pricing-category:last-child {
    margin-bottom: 0;
}

.pricing-category-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 1rem;
}

.pricing-category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: var(--medium-gray);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 10px 30px var(--shadow-black);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    color: var(--pure-black);
    padding: 5px 15px;
    border-radius: 20px;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    font-size: 0.8rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.pricing-header h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: var(--white);
    font-weight: bold;
}

.price-subtext {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.features-list li i {
    color: var(--white);
}

.view-features-btn,
.view-syllabus-btn {
    background: var(--white);
    color: var(--pure-black);
    border: none;
    padding: 12px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
}

.view-features-btn:hover,
.view-syllabus-btn:hover {
    background: var(--off-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-black);
}


/* ===========================================
   CONNECT SECTION - COMPLETE SOCIAL LINKS
   =========================================== */
.connect-section {
    background: var(--pure-black);
    padding: 3rem 1rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.social-card {
    text-align: center;
    padding: 1rem 0.8rem;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.social-card:hover {
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.03);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 0.7rem;
    transition: all 0.3s ease;
}

/* Platform-specific icon styles */
.social-card.youtube .social-icon {
    background-color: rgba(255, 0, 0, 0.12);
    color: #FF0000;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.social-card.github .social-icon {
    background-color: rgba(240, 246, 252, 0.12);
    color: #f0f6fc;
    border: 1px solid rgba(240, 246, 252, 0.3);
}

.social-card.linkedin .social-icon {
    background-color: rgba(10, 102, 194, 0.12);
    color: #0A66C2;
    border: 1px solid rgba(10, 102, 194, 0.3);
}

.social-card.instagram .social-icon {
    background-color: rgba(225, 48, 108, 0.12);
    color: #E1306C;
    border: 1px solid rgba(225, 48, 108, 0.3);
}

/* Special for second Instagram */
.social-card.instagram2 .social-icon {
    background-color: rgba(131, 58, 180, 0.12);
    color: #833AB4;
    border: 1px solid rgba(131, 58, 180, 0.3);
}

.social-card.email .social-icon {
    background-color: rgba(234, 67, 53, 0.12);
    color: #EA4335;
    border: 1px solid rgba(234, 67, 53, 0.3);
}

.social-card.facebook .social-icon {
    background-color: rgba(24, 119, 242, 0.12);
    color: #1877F2;
    border: 1px solid rgba(24, 119, 242, 0.3);
}

.social-card.telegram .social-icon {
    background-color: rgba(0, 136, 204, 0.12);
    color: #0088CC;
    border: 1px solid rgba(0, 136, 204, 0.3);
}

.social-card:hover .social-icon {
    transform: scale(1.1);
    box-shadow: 0 0 15px currentColor;
}

.social-card h4 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 0.25rem;
    color: var(--white);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.social-card .handle {
    color: var(--text-secondary);
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
    word-break: break-word;
    line-height: 1.2;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.social-card .account-type {
    color: var(--text-muted);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.3rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.1rem 0.5rem;
    border-radius: 10px;
    display: inline-block;
}

/* Platform-specific hover effects */
.social-card.youtube:hover {
    border-color: #FF0000;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.15);
}

.social-card.github:hover {
    border-color: #f0f6fc;
    box-shadow: 0 8px 20px rgba(240, 246, 252, 0.15);
}

.social-card.linkedin:hover {
    border-color: #0A66C2;
    box-shadow: 0 8px 20px rgba(10, 102, 194, 0.15);
}

.social-card.instagram:hover {
    border-color: #E1306C;
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.15);
}

.social-card.instagram2:hover {
    border-color: #833AB4;
    box-shadow: 0 8px 20px rgba(131, 58, 180, 0.15);
}

.social-card.email:hover {
    border-color: #EA4335;
    box-shadow: 0 8px 20px rgba(234, 67, 53, 0.15);
}

.social-card.facebook:hover {
    border-color: #1877F2;
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.15);
}

.social-card.telegram:hover {
    border-color: #0088CC;
    box-shadow: 0 8px 20px rgba(0, 136, 204, 0.15);
}

/* Mobile responsiveness */
@media (max-width: 1024px) {
    .social-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 700px;
        gap: 0.9rem;
    }
    
    .social-card {
        min-height: 115px;
        padding: 0.9rem 0.7rem;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }
    
    .social-card h4 {
        font-size: 0.8rem;
    }
    
    .social-card .handle {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .connect-section {
        padding: 2.5rem 0.8rem;
    }
    
    .social-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 500px;
        gap: 0.8rem;
    }
    
    .social-card {
        min-height: 110px;
        padding: 0.8rem 0.6rem;
    }
    
    .social-icon {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
}

@media (max-width: 480px) {
    .connect-section {
        padding: 2rem 0.5rem;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 320px;
        gap: 0.7rem;
    }
    
    .social-card {
        min-height: 100px;
        padding: 0.7rem 0.5rem;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .social-card h4 {
        font-size: 0.75rem;
    }
    
    .social-card .handle {
        font-size: 0.65rem;
    }
    
    .social-card .account-type {
        font-size: 0.6rem;
    }
}


/* Mobile responsiveness */
@media (max-width: 768px) {
    .connect-section {
        padding: 2rem 0.8rem;
    }
    
    .social-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.8rem;
        max-width: 400px;
    }
    
    .social-card {
        padding: 0.8rem 0.6rem;
        min-height: 100px;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .social-card h4 {
        font-size: 0.75rem;
    }
    
    .social-card .handle {
        font-size: 0.65rem;
    }
    
    .social-card .account-type {
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 280px;
        gap: 0.7rem;
    }
    
    .social-card {
        min-height: 95px;
        padding: 0.7rem 0.5rem;
    }
    
    .social-icon {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }
}

/* ===========================================
   MALWARE DEV FOOTER
   =========================================== */
.malware-dev-footer {
    background: var(--pure-black);
    padding: 4rem 2rem;
    border-top: 2px solid var(--white);
    text-align: center;
}

.malware-dev-footer h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    word-wrap: break-word;
}

.malware-dev-footer .tagline {
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    word-wrap: break-word;
}

.malware-dev-footer .copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    word-wrap: break-word;
}

/* ===========================================
   TERMS SECTION STYLES
   =========================================== */
.terms-section {
    background: var(--pure-black);
    min-height: 100vh;
    padding-top: 80px;
}

.terms-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    color: var(--text-primary);
}

.terms-header {
    text-align: center;
    margin-bottom: 50px;
}

.terms-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.terms-header .last-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid var(--border-color);
    padding-top: 10px;
    display: inline-block;
}

.terms-content {
    background: var(--dark-gray);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 40px;
}

.terms-section-content {
    margin-bottom: 40px;
}

.terms-section-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--white);
}

.terms-section-content p, 
.terms-section-content ul {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.terms-section-content ul {
    padding-left: 20px;
}

.terms-section-content li {
    margin-bottom: 10px;
}

.warning-box {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid #ff0000;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
}

.warning-box h3 {
    color: #ff0000;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.back-to-home-btn {
    background: var(--white);
    color: var(--pure-black);
    border: 2px solid var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.back-to-home-btn:hover {
    background: var(--pure-black);
    color: var(--white);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .terms-header h1 {
        font-size: 2rem;
    }
    
    .terms-content {
        padding: 25px;
    }
    
    .terms-section-content h2 {
        font-size: 1.3rem;
    }
}

/* ===========================================
   ADMIN CONTROL PANEL (KEPT ORIGINAL)
   =========================================== */
.admin-control-panel {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
}

.admin-toggle-btn {
    background: var(--white);
    color: var(--pure-black);
    border: 2px solid var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px var(--shadow-black);
}

.admin-toggle-btn:hover {
    background: var(--pure-black);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px var(--shadow-black);
}

.login-logout-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10001;
    background: var(--white);
    color: var(--pure-black);
    border: 2px solid var(--white);
    padding: 8px 15px;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px var(--shadow-black);
}

.login-logout-btn:hover {
    background: var(--pure-black);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px var(--shadow-black);
}

.login-logout-btn.logout-btn {
    background: var(--pure-black);
    color: var(--white);
    border-color: var(--white);
}

.login-logout-btn.logout-btn:hover {
    background: #ff0000;
    color: var(--white);
    border-color: #ff0000;
}

.admin-panel {
    position: absolute;
    top: 50px;
    right: 0;
    width: 500px;
    background: var(--pure-black);
    border: 2px solid var(--white);
    border-radius: 10px;
    padding: 25px;
    display: none;
    box-shadow: 0 10px 30px var(--shadow-black);
    max-height: 80vh;
    overflow-y: auto;
}

.admin-panel.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.admin-header h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--white);
    font-size: 1.2rem;
}

.close-admin {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.close-admin:hover {
    color: #ff0000;
}

.admin-tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
    flex-wrap: wrap;
}

.admin-tab {
    flex: 1;
    padding: 10px;
    background: var(--medium-gray);
    border: none;
    color: var(--text-secondary);
    font-family: 'JetBrains Mono', monospace;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 0.9rem;
    min-width: 80px;
}

.admin-tab.active {
    background: var(--white);
    color: var(--pure-black);
    font-weight: bold;
}

.admin-tab:hover:not(.active) {
    background: var(--light-gray);
    color: var(--white);
}

.tab-content {
    display: none;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
}

.tab-content.active {
    display: block;
}

.admin-section {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-control {
    margin-bottom: 15px;
}

.admin-control label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.admin-control input,
.admin-control textarea,
.admin-control select {
    width: 100%;
    padding: 12px;
    background: var(--medium-gray);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--white);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.admin-control input:focus,
.admin-control textarea:focus,
.admin-control select:focus {
    outline: none;
    border-color: var(--white);
    background: var(--light-gray);
}

.admin-control textarea {
    min-height: 100px;
    resize: vertical;
    line-height: 1.5;
}

.color-picker {
    display: flex;
    gap: 10px;
    align-items: center;
}

.color-picker input {
    width: 50px;
    height: 40px;
    padding: 2px;
    cursor: pointer;
}

.admin-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.admin-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-align: center;
}

.btn-save {
    background: var(--white);
    color: var(--pure-black);
}

.btn-save:hover {
    background: var(--off-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-black);
}

.btn-cancel {
    background: var(--medium-gray);
    color: var(--white);
    border: 1px solid var(--border-color);
}

.btn-cancel:hover {
    background: var(--light-gray);
    border-color: var(--white);
}

.btn-delete {
    background: #ff0000;
    color: var(--white);
}

.btn-delete:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

.btn-add {
    background: var(--white);
    color: var(--pure-black);
    width: 100%;
    margin-top: 10px;
}

.btn-add:hover {
    background: var(--off-white);
    transform: translateY(-2px);
}

/* ===========================================
   MULTIPLE SECTIONS STYLES
   =========================================== */
.about-content-section {
    margin-bottom: 3rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--white);
}

.section-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    word-wrap: break-word;
    hyphens: auto;
    line-height: 1.3;
}

.section-actions {
    display: flex;
    gap: 10px;
}

.edit-section-btn,
.delete-section-btn {
    background: none;
    border: 1px solid var(--white);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.edit-section-btn:hover {
    background: var(--white);
    color: var(--pure-black);
}

.delete-section-btn:hover {
    background: #ff0000;
    border-color: #ff0000;
    color: var(--white);
}

/* ===========================================
   MODALS & NOTIFICATIONS
   =========================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--pure-black);
    border: 2px solid var(--white);
    border-radius: 10px;
    padding: 30px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--white);
    font-size: 1.5rem;
}

.close-modal {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

.modal-body {
    color: var(--text-secondary);
    line-height: 1.8;
}

.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.login-modal.active {
    display: flex;
}

.login-box {
    background: var(--pure-black);
    border: 2px solid var(--white);
    border-radius: 10px;
    padding: 30px;
    width: 90%;
    max-width: 400px;
    text-align: center;
}

.login-box h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.login-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background: var(--medium-gray);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--white);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
}

.login-input:focus {
    outline: none;
    border-color: var(--white);
}

.login-btn {
    width: 100%;
    padding: 12px;
    background: var(--white);
    color: var(--pure-black);
    border: none;
    border-radius: 6px;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.login-btn:hover {
    background: var(--off-white);
    transform: translateY(-2px);
}

.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 20px 25px;
    background: var(--white);
    color: var(--pure-black);
    border-radius: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: bold;
    z-index: 9999;
    animation: slideInRight 0.3s ease;
    box-shadow: 0 5px 20px var(--shadow-black);
    max-width: 350px;
    border-left: 4px solid var(--white);
}

.notification.success {
    background: var(--white);
    color: var(--pure-black);
    border-left-color: #00ff00;
}

.notification.error {
    background: var(--white);
    color: var(--pure-black);
    border-left-color: #ff0000;
}

.notification.info {
    background: var(--white);
    color: var(--pure-black);
    border-left-color: #0000ff;
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutRight {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

/* ===========================================
   LOADING OVERLAY
   =========================================== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--pure-black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    flex-direction: column;
    gap: 25px;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--white);
    border-top: 4px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    color: var(--white);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

/* ===========================================
   RESPONSIVE DESIGN
   =========================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.4rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .research-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .nav-links {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
        margin-left: auto;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .cyber-nav {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 15px;
        line-height: 1.6;
    }
    
    .section-title {
        font-size: 1.6rem;
        padding: 0 15px;
        letter-spacing: 1px;
    }
    
    .research-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card.featured {
        transform: scale(1.02);
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .hero {
        padding: 7rem 1rem 2rem;
    }
    
    .section {
        padding: 3rem 1rem;
    }
    
    .admin-panel {
        width: 350px;
        right: -50px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.4rem !important;
        padding: 0 5px;
        line-height: 1.2;
    }
    
    .section {
        padding: 2.5rem 1rem;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .tag {
        font-size: 0.65rem;
        padding: 0.4rem 0.8rem;
    }
    
    .admin-panel {
        width: 300px;
        right: -30px;
        padding: 20px;
    }
}