<!--
/* Reset and Base Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
  --primary-color: #e50914;      
  --primary-light: #e50914;
  --primary-dark: #e50914;
  --secondary-color: #221f1f;     
  --accent-color: #ffffff;        
  --text-primary: #ffffff;        
  --text-secondary: #b3b3b3;      
  --text-light: #757575;
  --background: #141414;          
  --background-alt: #1e1e1e;      
  --background-dark: #000000;     
  --border-color: #333333;       
  --shadow: 0 4px 6px rgba(0,0,0,0.3);
  --shadow-lg: 0 20px 25px rgba(0,0,0,0.3);
}

html {
scroll-behavior: smooth;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 600; 
  line-height: 1.6;
  color: var(--text-primary);
  overflow-x: hidden;
}

body * {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 600;
  color: inherit; 
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
width: 100%;
box-sizing: border-box;
}
/* Typography */
.gradient-text {
color: #ffffff;
font-weight: 700;
}  
.section-title {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 1rem;
text-align: center;
}
.section-description {
font-size: 1.1rem;
color: var(--text-secondary);
text-align: center;
margin-bottom: 3rem;
}
.section-header {
margin-bottom: 4rem;
}
/* Buttons */
.btn {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.75rem 1.5rem;
border: none;
border-radius: 0.5rem;
font-weight: 500;
text-decoration: none;
transition: all 0.3s ease;
cursor: pointer;
font-size: 0.95rem;
} a {
  cursor: pointer;
}
.btn-primary {
background: var(--gradient-primary);
color: white;
box-shadow: var(--shadow);
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-lg);
}
.btn-secondary {
background: transparent;
color: var(--primary-color);
border: 2px solid var(--primary-color);
}
.btn-secondary:hover {
background: var(--primary-color);
color: white;
}
.btn-large {
padding: 1rem 2rem;
font-size: 1.1rem;
}
/* Navigation */
.navbar {
position: fixed;
top: 0;
left: 0;
right: 0;
width: 100%;
height: auto;
min-height: 80px;
background: #000000;
background: #000000;
backdrop-filter: blur(10px);
border-bottom: none !important;
z-index: 1000;
transition: all 0.3s ease;
 box-shadow: none;
}
.navbar-inner {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
padding: 1.5rem 20px;
min-height: 80px;
height: auto;
width: 100%;
box-sizing: border-box;
}
.nav-brand {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 1.5rem;
font-weight: 700;
color: var(--primary-color);
height: 100%;
}
.nav-brand i {
font-size: 2rem;
}
.nav-menu {
display: flex;
align-items: center;
gap: 2rem;
}
.nav-link {
text-decoration: none;
color: var(--text-primary);
font-weight: 500;
transition: color 0.3s ease;
position: relative;
}
.nav-link:hover {
color: var(--primary-color);
}
.nav-link::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: var(--gradient-primary);
transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 100%;
}
/* Premium link special styling */
.premium-link {
color: #fffb00 !important;
font-weight: 600 !important;
position: relative;
}
.premium-link::before {
content: "\2B50";
margin-right: 5px;
}
.premium-link:hover {
color: #ff0505 !important;
transform: scale(1.05);
}
.nav-toggle {
display: none;
flex-direction: column;
cursor: pointer;
gap: 4px;
padding: 8px;
border-radius: 4px;
transition: background-color 0.3s ease;
min-height: 40px;
justify-content: center;
}
.nav-toggle:hover {
background-color: rgba(99, 102, 241, 0.1);
}
.nav-toggle span {
width: 25px;
height: 3px;
background: var(--text-primary);
transition: all 0.3s ease;
border-radius: 2px;
}
/* Hero Section */
.hero {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
overflow: hidden;
background: var(--gradient-bg);
padding-top: 100px;
}
.hero-background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
/* Önceki background-color satırlarını sil */
background: linear-gradient(-45deg, #000000, #000000, #E50914, #020003);
background-size: 900% 1000%;
animation: netfBG 8s ease infinite;

/* Animasyon keyframes */
@keyframes netfBG {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


}
.hero-content {
position: relative;
z-index: 2;
text-align: center;
color: white;
max-width: 800px;
margin: 0 auto;
}
.hero-title {
font-size: 3.5rem;
font-weight: 800;
margin-bottom: 1.5rem;
line-height: 1.2;
}
.hero-description {
font-size: 1.2rem;
margin-bottom: 2.5rem;
opacity: 0.9;
line-height: 1.6;
}
.hero-buttons {
display: flex;
gap: 1rem;
justify-content: center;
margin-bottom: 2rem;
flex-wrap: wrap;
}
.apk-btn {
background: linear-gradient(135deg, #141414, #141414);
color: white;
border: none;
}
.apk-btn:hover {
background: linear-gradient(135deg, #d97706, #b45309);
color: white;
}
.version-info {
text-align: center;
margin-bottom: 2rem;
}
.version-badge {
display: inline-block;
background: rgba(255, 255, 255, 0.2);
backdrop-filter: blur(10px);
padding: 0.5rem 1.5rem;
border-radius: 2rem;
color: white;
font-weight: 600;
font-size: 0.9rem;
border: 1px solid rgba(255, 255, 255, 0.3);
margin-bottom: 0.5rem;
}
.version-description {
color: rgba(255, 255, 255, 0.8);
font-size: 1rem;
margin: 0;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.stat-box {
  background: #1e1e2f;
  border-radius: 12px;
  padding: 20px 30px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 150px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

.stat-number {
  font-size: 28px;
  font-weight: 700;
  color: #00ffc3;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 15px;
  color: #cccccc;
}


.stat-label {
font-size: 0.9rem;
opacity: 0.8;
}
.scroll-indicator {
position: absolute;
bottom: 2rem;
left: 50%;
transform: translateX(-50%);
color: white;
opacity: 0.7;
}
.scroll-arrow {
width: 20px;
height: 20px;
border-right: 2px solid white;
border-bottom: 2px solid white;
transform: rotate(45deg);
animation: bounce 2s infinite;
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% {
transform: translateY(0) rotate(45deg);
}
40% {
transform: translateY(-10px) rotate(45deg);
}
60% {
transform: translateY(-5px) rotate(45deg);
}
}
/* Features Section */
.features {
padding: 6rem 0;
background: var(--background);
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.feature-card {
background: white;
padding: 2rem;
border-radius: 1rem;
box-shadow: var(--shadow);
text-align: center;
transition: all 0.3s ease;
border: 1px solid var(--border-color);
}
.feature-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-lg);
}
.feature-icon {
width: 80px;
height: 80px;
margin: 0 auto 1.5rem;
background: var(--gradient-primary);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 2rem;
}
.feature-card h3 {
font-size: 1.3rem;
font-weight: 600;
margin-bottom: 1rem;
color: var(--text-primary);
}
.feature-card p {
color: var(--text-secondary);
line-height: 1.6;
}
/* Content Categories */
.content-categories {
padding: 6rem 0;
background: var(--background-alt);
}
.categories-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 2rem;
}
.category-card {
  background: linear-gradient(135deg, #e50914, #000000);
  color: white;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.category-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(229, 9, 20, 0.6);
}

.category-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-lg);
}
.category-image {
width: 100px;
height: 100px;
margin: 0 auto 1.5rem;
background: var(--gradient-secondary);
border-radius: 1rem;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 2.5rem;
}
.category-card h3 {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 1rem;
text-align: center;
}
.category-card p {
color: var(--text-secondary);
margin-bottom: 1.5rem;
text-align: center;
}
.category-card ul {
list-style: none;
}
.category-card li {
padding: 0.5rem 0;
color: var(--text-secondary);
position: relative;
padding-left: 1.5rem;
}
.category-card li {
color: var(--text-secondary);
position: relative;
padding-left: 0;
}
/* FAQ Section */
.faq {
padding: 6rem 0;
background: var(--background);
}
.faq-container {
max-width: 800px;
margin: 0 auto;
}
.faq-item {
background: white;
border-radius: 0.75rem;
margin-bottom: 1rem;
box-shadow: var(--shadow);
overflow: hidden;
border: 1px solid var(--border-color);
}
.faq-question {
padding: 1.5rem;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
transition: all 0.3s ease;
}
.faq-question:hover {
background: var(--background-alt);
}
.faq-question h3 {
font-size: 1.1rem;
font-weight: 600;
color: var(--text-primary);
}
.faq-question i {
color: var(--primary-color);
transition: transform 0.3s ease;
}
.faq-item.active .faq-question i {
transform: rotate(180deg);
}
.faq-answer {
padding: 0 1.5rem;
max-height: 0;
overflow: hidden;
transition: all 0.3s ease;
}
.faq-item.active .faq-answer {
padding: 0 1.5rem 1.5rem;
max-height: 200px;
}
.faq-answer p {
color: var(--text-secondary);
line-height: 1.6;
}
.premium-link {
color: var(--primary-color);
text-decoration: none;
font-weight: 500;
transition: all 0.3s ease;
border-bottom: 1px solid transparent;
}
.premium-link:hover {
color: var(--primary-dark);
border-bottom-color: var(--primary-color);
transform: translateY(-1px);
}
/* Contact Section */
.contact {
padding: 6rem 0;
background: var(--background-alt);
}
.contact-content {
display: flex;
justify-content: center;
align-items: center;
}
.contact-info {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
max-width: 1000px;
width: 100%;
}
.contact-item {
display: flex;
align-items: center;
gap: 1rem;
padding: 1.5rem;
background: white;
border-radius: 0.75rem;
box-shadow: var(--shadow);
}
.contact-item i {
width: 50px;
height: 50px;
background: var(--gradient-primary);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 1.2rem;
}
.contact-item h4 {
font-size: 1.1rem;
font-weight: 600;
margin-bottom: 0.25rem;
}
.contact-item p {
color: var(--text-secondary);
}
/* Footer */
.footer {
background: var(--background-dark);
color: white;
padding: 3rem 0 1rem;
}
.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-bottom: 2rem;
}
.footer-section h4 {
font-size: 1.2rem;
font-weight: 600;
margin-bottom: 1rem;
}
.footer-brand {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 1rem;
}
.footer-brand i {
font-size: 2rem;
color: var(--primary-light);
}
.footer-section p {
color: #9ca3af;
line-height: 1.6;
margin-bottom: 1.5rem;
}
.footer-section ul {
list-style: none;
}
.footer-section li {
margin-bottom: 0.5rem;
}
.footer-section a {
color: #9ca3af;
text-decoration: none;
transition: color 0.3s ease;
}
.footer-section a:hover {
color: var(--primary-light);
}
/* Footer Premium Link */
.footer-premium-link {
color: #fbbf24 !important;
font-weight: 600 !important;
}
.footer-premium-link:hover {
color: #f59e0b !important;
transform: scale(1.05) !important;
}
.social-links {
display: flex;
gap: 1rem;
}
.social-links a {
width: 40px;
height: 40px;
background: var(--gradient-primary);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 1.1rem;
transition: transform 0.3s ease;
}
.social-links a:hover {
transform: translateY(-2px);
}
.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid #374151;
color: #9ca3af;
}
/* Site name link styling */
.site_name {
color: var(--primary-color);
text-decoration: none;
font-weight: 600;
transition: color 0.3s ease;
}
.site_name:hover {
color: var(--primary-light);
text-decoration: underline;
}
/* X Icon Styling */
.x-icon {
display: inline-block;
font-size: 1.2rem;
font-weight: bold;
color: currentColor;
font-family: "Segoe UI", Arial, sans-serif;
width: 1em;
height: 1em;
text-align: center;
line-height: 1;
}
.social-links .x-icon {
font-size: 1.5rem;
}
.contact-item .x-icon {
font-size: 1.5rem;
margin-right: 1rem;
color: var(--primary-color);
}
/* Navigation Fixes */
/* Ensure full width navbar */
body {
margin: 0;
padding: 0;
}
.navbar {
margin: 0;
padding: 0;
}
.nav-menu {
list-style: none;
margin: 0;
padding: 0;
}
.nav-brand {
flex: 0 0 auto;
}
.nav-menu {
flex: 1;
justify-content: center;
}
.nav-toggle {
flex: 0 0 auto;
margin-left: auto;
}
/* Responsive Design */
@media (max-width: 768px) {
.nav-brand {
flex: 0 0 auto;
}
.nav-menu {
flex: none;
}
.nav-toggle {
display: flex !important;
z-index: 1001;
position: relative;
}
.nav-menu {
position: fixed;
top: 80px;
left: 0;
width: 100%;
height: calc(100vh - 80px);
max-height: calc(100vh - 80px);
background: white;
flex-direction: column;
padding: 1.5rem 2rem 2rem 2rem;
box-shadow: var(--shadow-lg);
transform: translateY(-100%);
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
z-index: 999;
border-bottom: 1px solid var(--border-color);
overflow-y: auto;
justify-content: flex-start;
align-items: center;
}
.nav-menu.active {
transform: translateY(0);
opacity: 1;
visibility: visible;
}
.nav-toggle.active span:nth-child(1) {
transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
transform: rotate(-45deg) translate(7px, -6px);
}
.nav-link {
padding: 1rem 0;
border-bottom: 1px solid var(--border-color);
text-align: center;
}
.nav-link:last-child {
border-bottom: none;
}
.navbar-inner .btn {
margin-top: 1.5rem;
margin-bottom: 1rem;
align-self: center;
width: 100%;
max-width: 280px;
justify-content: center;
}
.hero {
min-height: calc(100vh - 80px);
padding-top: 120px;
padding-bottom: 2rem;
}
.hero-content {
max-width: 90%;
padding: 0 1rem;
}
.hero-title {
font-size: 2.2rem;
margin-bottom: 1rem;
line-height: 1.3;
}
.hero-description {
font-size: 1rem;
margin-bottom: 2rem;
line-height: 1.5;
}
.hero-buttons {
flex-direction: column;
align-items: center;
gap: 0.75rem;
margin-bottom: 1.5rem;
text-align: center;
}
.hero-buttons .btn {
width: 280px;
max-width: 100%;
text-align: center;
justify-content: center;
}
.section-title {
font-size: 2rem;
}
.contact-info {
grid-template-columns: 1fr;
gap: 1.5rem;
}
.hero-stats {
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
}
.features-grid {
grid-template-columns: 1fr;
}
.categories-grid {
grid-template-columns: 1fr;
}
}
/* Desktop Styles */
@media (min-width: 769px) {
.nav-toggle {
display: none !important;
}
.nav-menu {
display: flex !important;
position: static !important;
background: transparent !important;
flex-direction: row !important;
padding: 0 !important;
box-shadow: none !important;
transform: none !important;
opacity: 1 !important;
visibility: visible !important;
z-index: auto !important;
border-bottom: none !important;
}
}
@media (max-width: 480px) {
.container {
padding: 0 15px;
}
.nav-brand {
font-size: 1.3rem;
}
.nav-brand i {
font-size: 1.8rem;
}
.nav-toggle {
padding: 8px;
}
.nav-toggle span {
width: 22px;
height: 2px;
}
.hero-title {
font-size: 2rem;
}
.hero-description {
font-size: 1rem;
}
.btn-large {
padding: 0.875rem 1.5rem;
font-size: 1rem;
}
.feature-card,
.category-card {
padding: 1.5rem;
}
.contact-info {
grid-template-columns: 1fr;
gap: 1rem;
}
/* Mobile nav menu optimization for smaller screens */
.nav-menu {
padding: 1rem 1.5rem 1.5rem 1.5rem;
height: calc(100vh - 80px);
max-height: calc(100vh - 80px);
}
.nav-link {
padding: 0.75rem 0;
font-size: 0.95rem;
}
.navbar-inner .btn {
margin-top: 1rem;
margin-bottom: 0.5rem;
padding: 0.75rem 1.5rem;
font-size: 0.95rem;
}
}
/* Loading and Animation States */
.fade-in {
opacity: 0;
transform: translateY(30px);
animation: fadeInUp 0.6s ease forwards;
}
@keyframes fadeInUp {
to {
opacity: 1;
transform: translateY(0);
}
}
/* Accessibility */
@media (prefers-reduced-motion: reduce) {
* {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
}
}
/* Focus styles */
.btn:focus,
input:focus,
select:focus,
textarea:focus {
outline: 2px solid var(--primary-color);
outline-offset: 2px;
}
/* Dark mode support */
@media (prefers-color-scheme: dark) {
:root {
--text-primary: #f9fafb;
--text-secondary: #d1d5db;
--background: #111827;
--background-alt: #1f2937;
--border-color: #374151;
}
}
/* Hide Blogger required sections */
.main, .sidebar {
display: none !important;
}

-->

  body { background-color: #121212; }
  .faq { padding: 6rem 0; background: var(--background, #121212); }
  .faq-container { max-width: 800px; margin: 0 auto; }
  .faq-item { background: #1e1e1e; border-radius: 0.75rem; margin-bottom: 1rem; box-shadow: 0 2px 6px rgba(0,0,0,0.3); overflow: hidden; border: 1px solid #333; }
  .faq-question { padding: 1.5rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: all 0.3s ease; }
  .faq-question:hover { background: #2a2a2a; }
  .faq-question h3 { font-size: 1.1rem; font-weight: 600; color: #ffffff; }
  .faq-question i { color: #e50914; transition: transform 0.3s ease; }
  .faq-item.active .faq-question i { transform: rotate(180deg); }
  .faq-answer { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: all 0.3s ease; }
  .faq-item.active .faq-answer { padding: 0 1.5rem 1.5rem; max-height: 200px; }
  .faq-answer p { color: #ffffff; line-height: 1.6; }
  .premium-link { color: #0099ff; text-decoration: none; font-weight: 500; border-bottom: 1px solid transparent; transition: all 0.3s ease; }
  .premium-link:hover { color: #0088cc; border-bottom-color: #00aaff; transform: translateY(-1px); }


    /* Dark mode support */
    @media (prefers-color-scheme: dark) {
        :root {
            --text-primary: #f9fafb;
            --text-secondary: #d1d5db;
            --text-light: #9ca3af;
            --background: #0f172a;
            --background-alt: #1e293b;
            --background-dark: #020617;
            --border-color: #334155;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.4);
        }

        body {
            background-color: var(--background);
            color: var(--text-primary);
        }

        /* Navbar dark mode */
        .navbar {
    /* gradient */
 background: linear-gradient(-45deg, #000000, #000000, #E50914, #020003);
background-size: 900% 1000%;

    animation: netflixBG 20s ease infinite;

    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}



        /* Hero section dark mode */
        .hero {
            background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
        }

        /* Feature cards dark mode */
        .feature-card {
    
    background: linear-gradient(-45deg, #88090f, #141414, #5c0a0e, #141414);
    background-size: 400% 400%;
    animation: moveBG 8s ease infinite;

    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid #222; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover  */
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.7);
}

/* Gradient animasyonu keyframes */
@keyframes moveBG {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


        .feature-card:hover {
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-color);
        }

        /* Category cards dark mode */
        .category-card {
            background: var(--background-alt);
            border: 1px solid var(--border-color);
        }

        .category-card {
  background: linear-gradient(-45deg, #70080d, #141414, #70080d, #000000);
  background-size: 600% 900%;
  animation: moveBG 10s ease infinite;
  color: white;
  padding: 2.5rem;
  border-radius: 1rem;
  border: 1px solid #222;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.category-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(229, 9, 20, 0.6);
}

@keyframes moveBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


        /* FAQ dark mode */
        .faq-question {
            background: var(--background-alt);
            border: 1px solid var(--border-color);
        }

        .faq-question:hover {
            background: var(--background);
            border-color: var(--primary-color);
        }

        .faq-answer {
            background: var(--background-alt);
            border: 1px solid var(--border-color);
            border-top: none;
        }

        /* Contact section dark mode */
        .contact-item {
            background: var(--background-alt);
            border: 1px solid var(--border-color);
        }

        .contact-item:hover {
            border-color: var(--primary-color);
            box-shadow: var(--shadow);
        }

        /* Footer dark mode */
        .footer {
            background: var(--background-dark);
            border-top: 1px solid var(--border-color);
        }

        .footer-bottom {
            border-top: 1px solid var(--border-color);
            color: var(--text-light);
        }

        /* Mobile nav dark mode */
         .nav-menu {
           background: linear-gradient(135deg, #0a0303, #3c0003, #000000);
         border-bottom: 1px solid var(--border-color);
         }


        .nav-link {
            border-bottom: 1px solid var(--border-color);
        }

        /* Button adjustments for dark mode */
        .btn-secondary {
            border-color: var(--primary-color);
            color: var(--primary-color);
        }

        .btn-secondary:hover {
            background: var(--primary-color);
            color: white;
        }

        /* Version info dark mode */
        .version-badge {
            background: var(--background-alt);
            border: 1px solid var(--border-color);
            color: var(--text-primary);
        }

        /* Stats dark mode */
        .stat {
            background: var(--background-alt);
            border: 1px solid var(--border-color);
        }

        .stat-number {
            color: #ffffff;
        }

        .stat-label {
            color: var(--text-secondary);
        }
    }