/* Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* Renk Paleti */
:root {
    --primary-color: #00ff88;        /* Canlı Yeşil */
    --secondary-color: #ffffff;      /* Beyaz */
    --bg-color: #000000;             /* Siyah */
    --text-color: #ffffff;           /* Beyaz metin */
}

/* Genel Stillendirme */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

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

/* Navigasyon */
.navbar {
    background-color: #000000;
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.logo {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
    white-space: nowrap;
}

.navbar-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Burger Menu Button */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
}

.burger-menu span {
    width: 25px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    display: block;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(2px, 4px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -7px);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: space-between;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

/* Butonlar */
.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-color);
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #16a085;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 188, 156, 0.4);
}

/* Hero Bölümü */
.hero {
    padding: 80px 0;
    background: #000000;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    order: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    animation: fadeInDown 0.8s ease;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #cccccc;
    animation: fadeInUp 0.8s ease;
}

.hero .btn-primary {
    width: fit-content;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-box {
    order: 2;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

/* Stock Selector - Removed */
/* Stock Option - Removed */
/* Stock Content - Removed */

/* Hakkında Bölümü */
.about {
    padding: 60px 0;
    background-color: var(--bg-color);
}

.about h2 {
    font-size: 2rem;
    text-align: left;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.about-content {
    max-width: 900px;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 1.5rem;
}

/* Özellikler Bölümü */
.features {
    padding: 100px 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.features::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.features-header {
    position: relative;
    z-index: 1;
    margin-bottom: 4rem;
    text-align: left;
}

.features h2 {
    font-size: 2.8rem;
    background: linear-gradient(135deg, #ffffff 0%, #00ff88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.features-subtitle {
    display: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: #000000;
    border: none;
    padding: 2.5rem;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 255, 136, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-card:hover {
    border-color: rgba(0, 255, 136, 0.6);
    background: #000000;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.15);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 255, 136, 0.05) 100%);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2) 0%, rgba(0, 255, 136, 0.1) 100%);
    border-color: rgba(0, 255, 136, 0.4);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
}

.feature-icon .material-icons {
    font-size: 32px;
    color: currentColor;
}

.feature-card h3 {
    color: var(--text-color);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
    text-align: center;
    width: 100%;
}

.feature-card:hover h3 {
    color: var(--primary-color);
}

.feature-card p {
    color: #999999;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.feature-card:hover p {
    color: #b3b3b3;
}

.feature-image-wrapper {
    width: 250px;
    height: 250px;
    background: transparent;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto -0.5rem;
    padding: 10px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-image-wrapper {
    background: transparent;
    border-color: transparent;
}

.feature-image {
    width: auto;
    height: auto;
    max-width: 220px;
    max-height: 220px;
    object-fit: contain;
    object-position: center;
}

.feature-badge {
    display: none;
}

/* Video Hero Section */
.video-hero {
    padding: 100px 0;
    background-color: #000000;
    position: relative;
    overflow: hidden;
}

.video-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.video-hero .container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.video-hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.video-hero h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.video-hero p {
    font-size: 1.1rem;
    color: #999999;
    line-height: 1.8;
    margin-bottom: 0;
    max-width: 700px;
}

.video-container-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    background: transparent;
}

.video-player {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background-color: #000000;
}

.video-control-btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.3) 0%, rgba(0, 255, 136, 0.1) 100%);
    border: 1.5px solid rgba(0, 255, 136, 0.6);
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 0;
}

.video-control-btn .material-icons {
    font-size: 28px;
    color: var(--primary-color);
}

.video-control-btn:hover {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.5) 0%, rgba(0, 255, 136, 0.2) 100%);
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
    transform: scale(1.1);
}

.video-control-btn.playing {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.3) 0%, rgba(0, 255, 136, 0.1) 100%);
}

/* Responsive Video Hero */
@media (max-width: 768px) {
    .video-hero {
        padding: 60px 0;
    }

    .video-hero .container {
        gap: 2.5rem;
    }

    .video-hero h2 {
        font-size: 2rem;
    }

    .video-hero p {
        font-size: 1rem;
    }

    .video-container-wrapper {
        aspect-ratio: 9 / 16;
        max-width: 100%;
        width: 100%;
    }

    .video-control-btn {
        width: 48px;
        height: 48px;
    }

    .video-control-btn .material-icons {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .video-hero h2 {
        font-size: 1.6rem;
    }

    .video-hero p {
        font-size: 0.95rem;
    }

    .video-container-wrapper {
        border-radius: 12px;
        aspect-ratio: 9 / 16;
    }

    .video-control-btn {
        width: 44px;
        height: 44px;
        bottom: 15px;
        left: 15px;
    }

    .video-control-btn .material-icons {
        font-size: 20px;
    }
}
.contact {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.contact h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.subtitle {
    text-align: center;
    color: #999999;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

/* Form Stilleri */
.contact-form {
    background-color: #000000;
    padding: 2rem;
    border-radius: 8px;
}

.contact-form h2 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    background-color: #000000;
    border: 1px solid #1a1a1a;
    border-radius: 4px;
    color: var(--text-color);
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(26, 188, 156, 0.3);
}

/* İletişim Bilgileri */
.contact-info {
    background-color: #000000;
    padding: 2rem;
    border-radius: 8px;
}

.contact-info h2 {
    color: var(--text-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.info-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
}

.info-item h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-item p {
    color: #cccccc;
}

.info-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #ffffff;
}

/* Footer */
.footer {
    background-color: #000000;
    padding: 2rem 0;
    color: #999999;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer p {
    text-align: left;
}

.footer-links {
    flex: 1;
}

.legal-links {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.legal-links a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #ffffff;
}

.legal-links span {
    color: #666666;
    margin: 0 0.5rem;
}

.ssl-badge {
    width: 120px;
    height: auto;
    object-fit: contain;
}

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

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

/* Responsive Tasarım */
@media (max-width: 768px) {
    /* Burger Menu */
    .burger-menu {
        display: flex;
    }

    .navbar-container {
        flex-wrap: wrap;
        gap: 0;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background-color: #000000;
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 999;
        width: 100%;
        height: calc(100vh - 60px);
    }

    .nav-menu.active {
        max-height: 100vh;
        overflow-y: auto;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 1rem;
    }

    .nav-links li {
        border-bottom: 1px solid #1a1a1a;
        padding: 1rem 0;
    }

    .nav-links li:first-child {
        padding-top: 0;
    }

    .language-switcher-desktop {
        display: none !important;
    }

    .language-switcher-mobile {
        display: none !important;
    }

    .nav-lang-item {
        display: block !important;
        padding: 1rem 0 0 0 !important;
        border-bottom: none !important;
    }

    /* Hero Section */
    .hero .container {
        display: block !important;
    }

    .hero {
        padding: 30px 0;
    }

    .hero-content {
        order: 0;
        margin-bottom: 0;
        width: 100%;
    }

    .hero-box {
        order: 0;
        width: 100%;
        aspect-ratio: 3 / 2;
        height: auto;
        padding: 0;
        margin-bottom: 2rem;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    /* Features */
    .features h2 {
        font-size: 2rem;
    }

    .features {
        padding: 60px 0;
    }

    .features-subtitle {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon svg {
        width: 28px;
        height: 28px;
    }

    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact h1 {
        font-size: 2rem;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer p {
        order: 1;
    }

    .ssl-badge {
        width: 100px;
        order: 2;
    }
}

@media (max-width: 480px) {
    .navbar-logo {
        width: 50px;
        height: 50px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .features h2 {
        font-size: 1.8rem;
    }

    .btn-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .stock-option {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .feature-card {
        padding: 1.5rem;
    }
}


/* ============= WAITLIST MODAL ============= */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    cursor: pointer;
}

.modal-content {
    position: relative;
    background: #1a1a1a;
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    animation: slideUp 0.3s ease;
    font-family: var(--font-main);
}

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #cccccc;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.modal-header h2 {
    font-size: 1.8rem;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    font-family: var(--font-main);
}

.modal-header p {
    color: #999999;
    font-size: 0.95rem;
    margin: 0;
    font-family: var(--font-main);
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #cccccc;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: var(--font-main);
}

.form-group input,
.form-group select {
    padding: 0.75rem;
    border: 1.5px solid #333333;
    border-radius: 6px;
    font-size: 0.95rem;
    color: #cccccc;
    background: #0d0d0d;
    transition: border-color 0.2s;
    font-family: var(--font-main);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.form-group input::placeholder {
    color: #666666;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cccccc' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.25rem;
    padding-right: 2.5rem;
}

.btn-submit {
    padding: 0.9rem 2rem;
    background: var(--primary-color);
    color: var(--bg-color);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 0.5rem;
    font-family: var(--font-main);
}

.btn-submit:hover {
    background: #16a085;
}

.btn-submit:active {
    transform: scale(0.98);
}

.btn-submit:disabled {
    background: #666666;
    cursor: not-allowed;
}

.form-message {
    padding: 1rem;
    border-radius: 6px;
    font-size: 0.95rem;
    text-align: center;
    margin-top: 1rem;
    font-family: var(--font-main);
}

.form-message.success {
    background: #1a4d2a;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.form-message.error {
    background: #4d1a1a;
    color: #ff6b6b;
    border: 1px solid #ff6b6b;
}

/* ============= MODAL RESPONSIVE ============= */
@media (max-width: 768px) {
    .modal-content {
        padding: 2rem;
        max-width: 95%;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .form-group input,
    .form-group select {
        font-size: 16px; /* Prevent zoom on iOS */
    }
}

/* ============= END MODAL ============= */

.legal-content {
    padding: 60px 0;
    background-color: var(--bg-color);
    min-height: 600px;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    text-align: left;
}

.legal-content .container {
    max-width: 900px;
}

#terms-content,
#privacy-content {
    background-color: #000000;
    padding: 2rem;
    border-radius: 8px;
    color: #cccccc;
    line-height: 1.8;
    font-size: 0.95rem;
}

#terms-content h2,
#privacy-content h2 {
    color: var(--text-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

#terms-content h3,
#privacy-content h3 {
    color: #ffffff;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

#terms-content p,
#privacy-content p {
    margin-bottom: 1rem;
}

#terms-content ul,
#privacy-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

#terms-content li,
#privacy-content li {
    margin-bottom: 0.5rem;
}

.content-loader {
    text-align: left;
    padding: 2rem;
}


/* Language Switcher */
.language-switcher-desktop {
    display: flex;
    gap: 0.5rem;
    position: relative;
}

.lang-toggle {
    background-color: transparent;
    color: var(--primary-color);
    border: none;
    padding: 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
}

.lang-toggle:hover {
    opacity: 0.8;
}

.lang-toggle svg {
    width: 24px;
    height: 24px;
}

/* Language Menu Dropdown */
.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #1a1a1a;
    border-radius: 8px;
    min-width: 200px;
    margin-top: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.language-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: none;
    border: none;
    color: #cccccc;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}

.lang-option:hover {
    background-color: #2a2a2a;
    color: var(--primary-color);
}

.lang-option:first-child {
    border-radius: 8px 8px 0 0;
}

.lang-option:last-child {
    border-radius: 0 0 8px 8px;
}

.lang-flag {
    font-size: 1.2rem;
}

.lang-name {
    flex: 1;
}

.lang-check {
    color: var(--primary-color);
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* Markdown Body Styles */
.markdown-body {
    color: #cccccc;
}

.markdown-body h1 {
    color: var(--text-color);
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #333333;
    padding-bottom: 0.5rem;
}

.markdown-body h2 {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.markdown-body h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.markdown-body h4,
.markdown-body h5,
.markdown-body h6 {
    color: #ffffff;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.markdown-body p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.markdown-body ul,
.markdown-body ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.markdown-body li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.markdown-body blockquote {
    border-left: 4px solid #333333;
    padding-left: 1rem;
    margin-left: 0;
    margin-bottom: 1rem;
    color: #999999;
}

.markdown-body code {
    background-color: #111111;
    color: #cccccc;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.markdown-body pre {
    background-color: #111111;
    border: 1px solid #333333;
    border-radius: 6px;
    padding: 1rem;
    overflow-x: auto;
    margin-bottom: 1rem;
}

.markdown-body pre code {
    background-color: transparent;
    color: #cccccc;
    padding: 0;
}

.markdown-body a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.markdown-body a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.markdown-body table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 1rem;
}

.markdown-body th,
.markdown-body td {
    border: 1px solid #333333;
    padding: 0.75rem;
    text-align: left;
}

.markdown-body th {
    background-color: #111111;
    color: var(--text-color);
}

.markdown-body hr {
    border: none;
    border-top: 2px solid #333333;
    margin: 2rem 0;
}

/* Mobile Language Switcher */
.language-switcher-mobile {
    display: none;
}

/* nav-lang-item desktop'ta gizli */
.nav-lang-item {
    display: none;
}

.lang-toggle-mobile {
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    padding: 0;
    width: 100%;
    text-align: left;
    transition: color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lang-toggle-mobile:hover {
    color: var(--primary-color);
}

.lang-toggle-mobile .arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    color: #999999;
    flex-shrink: 0;
}

.lang-toggle-mobile.open .arrow {
    transform: rotate(180deg);
}

.language-menu-mobile {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
    background-color: #0d0d0d;
    border-radius: 8px;
    margin-top: 0.75rem;
    overflow: hidden;
}

.language-menu-mobile.active {
    grid-template-rows: 1fr;
}

.language-menu-mobile > .lang-menu-inner {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.lang-option-mobile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.85rem 1rem;
    background: none;
    border: none;
    border-bottom: 1px solid #1a1a1a;
    color: #cccccc;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}

.lang-option-mobile:last-child {
    border-bottom: none;
}

.lang-option-mobile:hover {
    background-color: #1a1a1a;
    color: var(--primary-color);
}

.lang-option-mobile .lang-flag {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.lang-option-mobile .lang-name {
    flex: 1;
}

.lang-option-mobile .lang-check {
    color: var(--primary-color);
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.2s ease;
}

    .features-grid {


/* Markdown Styles for Dynamic Content */
#typewriter strong {
    color: var(--primary-color);
    font-weight: 700;
}

#typewriter em {
    color: #ffaa00;
    font-style: italic;
}

#typewriter code {
    background-color: #111111;
    color: var(--primary-color);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

#typewriter br {
    display: block;
    content: '';
    margin: 0.5rem 0;
}
