/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6b00; /* Turuncu ton */
    --secondary-color: #00bcd4; /* Turkuaz ton */
    --dark-color: #1f2937;
    --light-color: #f9fafb;
    --grey-color: #6b7280;
    --danger-color: #ef4444;
    --success-color: #10b981;
    
    /* Dark Theme Colors */
    --dark-bg: #121212;
    --dark-surface: #1e1e1e;
    --dark-surface-2: #2c2c2c;
    --dark-text: #e0e0e0;
    --dark-text-secondary: #a0a0a0;
    --dark-border: #333333;
    --dark-primary: #ff7e1f; /* Turuncu tonu */
    --dark-secondary: #00e5ff; /* Turkuaz ton */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Light Theme Styles */
.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border-radius: 0.5rem;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-top: 4px solid transparent;
    border-image: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-image-slice: 1;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    z-index: 1;
}

.feature-card h4 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--dark-primary);
}

.feature-card p {
    text-align: center;
    margin-bottom: 1rem;
    flex-grow: 1;
}

/* Dark Theme Styles */
body.dark-theme {
    background-color: var(--dark-bg);
    color: var(--dark-text);
}

body.dark-theme a {
    color: var(--dark-primary);
}

body.dark-theme .header,
body.dark-theme .feature-card,
body.dark-theme .guide-card,
body.dark-theme .pricing-card,
body.dark-theme .update-item,
body.dark-theme .faq-item,
body.dark-theme .download {
    background-color: var(--dark-surface);
    color: var(--dark-text);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

body.dark-theme .quick-start,
body.dark-theme .about,
body.dark-theme .faq,
body.dark-theme .updates {
    background-color: var(--dark-bg);
}

body.dark-theme .special-card {
    background-color: var(--dark-surface-2);
}

body.dark-theme .footer {
    background-color: var(--dark-bg);
    border-top: 1px solid var(--dark-border);
}

body.dark-theme .feature-tags span {
    background-color: var(--dark-surface-2);
    color: var(--dark-text-secondary);
}

body.dark-theme .version {
    background-color: var(--dark-surface-2);
    color: var(--dark-text-secondary);
}

body.dark-theme .update-item ul {
    color: var(--dark-text);
}

body.dark-theme .btn-outline {
    border-color: var(--dark-primary);
    color: var(--dark-primary);
}

body.dark-theme .btn-outline:hover {
    background-color: var(--dark-primary);
    color: white;
}

body.dark-theme .btn-primary {
    background-color: rgba(52, 56, 145, 1);
    color: white;
    font-weight: bold;
    text-shadow: none;
    border-color: rgba(52, 56, 145, 1);
}

body.dark-theme .btn-secondary {
    background-color: rgba(52, 56, 145, 1);
    color: white;
    font-weight: bold;
    text-shadow: none;
    border-color: rgba(52, 56, 145, 1);
}

body.dark-theme .footer-links a {
    color: var(--dark-text-secondary);
}

body.dark-theme .footer-links a:hover {
    color: var(--dark-text);
}

body.dark-theme .back-to-top a {
    color: var(--dark-text-secondary);
}

body.dark-theme .back-to-top a:hover {
    color: var(--dark-text);
}

body.dark-theme .hero {
    background: #181818;
    padding-top: 0;
}

body.dark-theme .menu-toggle {
    color: var(--dark-text);
}

body.dark-theme .logo a {
    color: var(--dark-text);
}

body.dark-theme .btn-primary,
body.dark-theme .btn-secondary,
body.dark-theme .btn-download {
    background-color: rgba(52, 56, 145, 1);
    color: white;
    border-color: rgba(52, 56, 145, 1);
}

body.dark-theme .btn-primary:hover,
body.dark-theme .btn-secondary:hover,
body.dark-theme .btn-download:hover {
    background-color: rgba(62, 67, 170, 1);
    border-color: rgba(62, 67, 170, 1);
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Logo Stilleri */
.logo-img {
    max-height: 80px;
    width: auto;
}

/* Banner Stilleri */
.banner-container {
    width: 100%;
    margin-bottom: 2rem;
    text-align: center;
}

.hero-banner {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* Düğme Stilleri */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    text-shadow: none;
}

.btn-primary {
    background-color: rgba(52, 56, 145, 1);
    color: white;
    font-weight: bold;
    letter-spacing: 0.5px;
    border: 2px solid rgba(52, 56, 145, 1);
}

.btn-primary:hover {
    background-color: rgba(62, 67, 170, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 56, 145, 0.4);
    border-color: rgba(62, 67, 170, 1);
}

.btn-secondary {
    background-color: rgba(52, 56, 145, 1);
    color: white;
    font-weight: bold;
    letter-spacing: 0.5px;
    border: 2px solid rgba(52, 56, 145, 1);
}

.btn-secondary:hover {
    background-color: rgba(62, 67, 170, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 56, 145, 0.4);
    border-color: rgba(62, 67, 170, 1);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: bold;
    letter-spacing: 0.5px;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.4);
}

.btn-download {
    background-color: #10b981;
    color: white;
    font-size: 1.1rem;
    padding: 0.8rem 2rem;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.btn-download:hover {
    background-color: #0ed996;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

body.dark-theme .btn-download {
    background-color: #10b981;
    color: white;
    border-color: #10b981;
}

body.dark-theme .btn-download:hover {
    background-color: #0ed996;
    border-color: #0ed996;
}

/* Header Stilleri */
.header {
    background-color: var(--dark-surface);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0.5rem 0;
}

.header .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 1rem;
}

.logo {
    position: absolute;
    left: 1rem;
}

.logo a {
    display: flex;
    align-items: center;
    color: var(--dark-color);
}

.logo h1 {
    font-size: 1.8rem;
    margin-left: 0.5rem;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.nav-list li a {
    color: var(--dark-text);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-list li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-list li a:hover {
    color: var(--primary-color);
}

.nav-list li a:hover:after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-color);
}

/* Hero Bölümü */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 8px;
    background-color: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.hero-logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.hero-logo {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.hero h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.hero-tags {
    font-size: 0.9rem;
    color: var(--dark-text-secondary);
    margin-bottom: 1.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.hero-buttons .btn {
    min-width: 150px;
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
}

/* İndirme Bölümü */
.download {
    background-color: var(--dark-surface);
    padding: 2rem 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.download h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-primary);
}

.special-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
    margin-top: 0.5rem;
}

/* Hızlı Başlangıç Bölümü */
.quick-start {
    padding: 3rem 1rem;
    background-color: var(--dark-bg);
}

.quick-start h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: var(--dark-primary);
}

.guides {
    padding: 3rem 0;
}

.guides h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.guide-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.guide-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.guide-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.guide-card h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.guide-card p {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--grey-color);
}

.guide-content {
    display: none;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.guide-card.active .guide-content {
    display: block;
}

.guide-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.guide-card ul, .guide-card ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.guide-card ul li, .guide-card ol li {
    margin-bottom: 0.5rem;
}

.guide-image {
    margin: 1.5rem 0;
    text-align: center;
}

.guide-image img {
    max-width: 100%;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.guide-video {
    text-align: center;
    margin-top: 1.5rem;
}

.back-to-home {
    text-align: center;
    margin-top: 2rem;
}

body.dark-theme .guide-card {
    background-color: var(--dark-surface);
}

body.dark-theme .guide-card h3,
body.dark-theme .guide-card h4 {
    color: var(--dark-text);
}

body.dark-theme .guide-card p {
    color: var(--dark-text-secondary);
}

body.dark-theme .guide-card .guide-content {
    border-top-color: var(--dark-border);
}

body.dark-theme .guide-card ul li,
body.dark-theme .guide-card ol li {
    color: var(--dark-text);
}

.logo-center {
    text-align: center;
    margin-bottom: 2rem;
}

.logo-center img {
    max-height: 80px;
}

/* Özellikler Bölümü */
.features {
    padding: 3rem 1rem;
    background-color: var(--dark-bg);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

body.dark-theme .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    background-color: #252525;
}

body.dark-theme .feature-card {
    background-color: var(--dark-surface);
    color: var(--dark-text);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.feature-links {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
}

.feature-links a {
    color: var(--dark-secondary);
    font-weight: bold;
}

.feature-links a:hover {
    text-decoration: underline;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
}

.feature-tags span {
    background-color: var(--dark-surface-2);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    color: var(--dark-text-secondary);
}

.more-features {
    text-align: center;
    margin-top: 2rem;
}

/* Özellik İkon Stilleri */
.feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    margin: 0 auto 1rem auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    padding: 10px;
}

.feature-icon i {
    font-size: 28px;
    color: white;
}

.feature-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    color: white;
    stroke: white;
}

/* Hakkında Bölümü */
.about {
    padding: 3rem 1rem;
    background-color: var(--dark-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.about-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-item i {
    font-size: 2rem;
    color: var(--dark-primary);
}

/* Fiyatlandırma Bölümü */
.pricing {
    padding: 3rem 1rem;
    text-align: center;
    background-color: var(--dark-bg);
}

.pricing h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
    color: var(--dark-primary);
}

.pricing-subtitle {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--dark-primary);
    text-align: center;
    position: relative;
}

.pricing-subtitle:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.pricing-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
}

.pricing-card {
    background-color: var(--dark-surface);
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--dark-border);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.pricing-card h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.pricing-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-primary);
    position: relative;
}

/* Pricing image styles */
.pricing-image {
    margin-bottom: 15px;
    text-align: center;
    overflow: hidden;
    border-radius: 8px;
}

.price-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
    max-height: 150px;
    object-fit: contain;
}

.pricing-card:hover .price-img {
    transform: scale(1.05);
}

/* Güncellemeler Bölümü */
.updates {
    padding: 3rem 1rem;
    background-color: var(--dark-bg);
}

.updates h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--dark-primary);
}

.update-list {
    max-width: 800px;
    margin: 0 auto;
}

.update-item {
    background-color: var(--dark-surface);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    border: 1px solid var(--dark-border);
}

.update-item h3 {
    margin-bottom: 1rem;
    color: var(--dark-primary);
}

.update-item ul {
    margin-left: 1.5rem;
    list-style-type: disc;
    color: var(--dark-text);
}

.update-item li {
    margin-bottom: 0.5rem;
}

.version {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.25rem 0.75rem;
    background-color: var(--dark-surface-2);
    border-radius: 9999px;
    font-size: 0.85rem;
    color: var(--dark-text-secondary);
}

.more-updates {
    text-align: center;
    margin-top: 2rem;
}

/* S.S.S. Bölümü */
.faq {
    padding: 3rem 1rem;
    background-color: var(--dark-bg);
}

.faq h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--dark-primary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--dark-surface);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border: 1px solid var(--dark-border);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
}

.faq-question h4 {
    font-size: 1.1rem;
    color: var(--dark-primary);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--dark-primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding: 1rem 1.5rem 1.5rem;
    max-height: 1000px; /* Increase max height to accommodate longer content */
    opacity: 1;
}

.more-faq {
    text-align: center;
    margin-top: 2rem;
}

/* Footer Bölümü */
.footer {
    background-color: #1c1c1c;
    color: #fff;
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 0 0 25%;
    margin-bottom: 30px;
}

.footer-logo h3 {
    margin: 15px 0 10px;
    color: #f06815;
    font-size: 24px;
}

.footer-logo p {
    color: #b0b0b0;
    font-size: 14px;
}

.footer-links, .footer-contact, .footer-download {
    flex: 0 0 22%;
    margin-bottom: 30px;
}

.footer h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #f06815;
}

.footer-links ul, .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: 12px;
}

.footer-links a, .footer-contact a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover, .footer-contact a:hover {
    color: #f06815;
}

.footer-contact i {
    width: 20px;
    color: #f06815;
    margin-right: 10px;
}

.footer-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 25px;
    background-color: #f06815;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.footer-btn:hover {
    background-color: #d55400;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.copyright {
    flex: 1;
    font-size: 14px;
    color: #777;
}

.footer-policy-links {
    margin: 0 30px;
}

.footer-policy-links a {
    color: #b0b0b0;
    text-decoration: none;
    margin-left: 20px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-policy-links a:hover {
    color: #f06815;
}

.back-to-top a {
    display: flex;
    align-items: center;
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.back-to-top a:hover {
    color: #f06815;
}

.back-to-top i {
    margin-right: 8px;
}

@media (max-width: 991px) {
    .footer-logo, .footer-links, .footer-contact, .footer-download {
        flex: 0 0 48%;
    }
}

@media (max-width: 767px) {
    .footer-logo, .footer-links, .footer-contact, .footer-download {
        flex: 0 0 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .copyright, .footer-policy-links, .back-to-top {
        margin: 10px 0;
    }
    
    .footer-policy-links a {
        margin: 0 10px;
    }
}

/* Medya Sorguları */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-list {
        position: fixed;
        top: 72px;
        right: -100%;
        background-color: var(--dark-surface);
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 72px);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
        gap: 1.5rem;
    }

    .nav-list.active {
        right: 0;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h2 {
        font-size: 2rem;
    }

    .pricing-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-banner {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .download h3 {
        font-size: 1.2rem;
    }

    .update-item {
        padding: 1rem;
    }

    .version {
        position: static;
        display: inline-block;
        margin-top: 1rem;
    }

    .footer .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .pricing-options {
        grid-template-columns: 1fr;
    }
}

/* Animasyonlar */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card, .guide-card, .pricing-card, .update-item, .faq-item, .about-item {
    animation: fadeIn 0.6s ease-out;
}

/* Main Section */
.main-section {
    padding: 35px 0 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.download-info {
    text-align: center;
    margin: 10px 0 20px 0;
    color: var(--dark-primary);
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 6px;
    background-color: rgba(255, 126, 31, 0.1);
    display: inline-block;
    max-width: 100%;
    width: auto;
    margin-left: auto;
    margin-right: auto;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 0 30px 0;
    width: 100%;
}

.content-right {
    width: 100%;
    max-width: 800px;
}

.main-content-layout {
    display: flex;
    flex-direction: row;
    margin-top: 10px;
}

/* Quick Start Sidebar Stilleri */
.quick-start-sidebar {
    width: 250px;
    padding: 20px;
    background-color: var(--dark-surface);
    border-radius: 8px;
    margin-right: 20px;
}

.guide-list {
    display: flex;
    flex-direction: column;
}

.guide-item {
    background-color: var(--dark-surface-2);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.guide-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.guide-item h4 {
    color: var(--dark-text);
    text-align: center;
}

/* Buton Stilleri Güncelleme */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    margin: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
}

.btn-download {
    background-color: var(--success-color);
    color: white;
    border: 2px solid var(--success-color);
}

.btn-download:hover {
    background-color: transparent;
    color: white;
}

.btn-secondary {
    background-color: rgba(52, 56, 145, 1);
    color: white;
    border-color: rgba(52, 56, 145, 1);
}

.btn-secondary:hover {
    background-color: transparent;
    color: white;
}

/* İkon Renkleri */
.btn i {
    margin-right: 5px;
    color: white;
}

@media (max-width: 992px) {
    .main-content-layout {
        flex-direction: column;
    }
    
    .quick-start-sidebar {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
}

/* Menu Buttons Styling */
.menu-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.menu-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    background-color: var(--dark-surface-2);
    border-radius: 6px;
    color: var(--dark-text);
    font-weight: 600;
    transition: all 0.3s ease;
}

.menu-btn:hover {
    background-color: var(--dark-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.menu-btn i {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Title and description styling */
.title-orange {
    color: var(--primary-color);
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.main-description {
    font-size: 1.2rem;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tags {
    font-size: 0.95rem;
    color: var(--dark-text-secondary);
    margin-bottom: 2.5rem;
    letter-spacing: 0.5px;
}

/* Quick start feature card styling */
.quick-start-card {
    border-top-color: var(--secondary-color);
    position: relative;
}

.quick-start-card::before {
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

.quick-start-card .feature-icon {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.quick-start-card h4 {
    color: var(--secondary-color);
}

/* Skillbar Showcase */
.skillbar-showcase {
    padding: 60px 0;
    background-color: var(--dark-surface);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slideshow-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.skillbar-slide {
    position: relative;
    width: 100%;
    height: auto;
    text-align: center;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skillbar-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: none;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease-in-out;
    width: 100%;
    object-fit: contain;
    max-height: 400px;
}

.skillbar-image.active {
    display: block;
    opacity: 1;
    position: relative;
}

/* Special styling for banner image in slideshow */
.skillbar-image[alt="AnnihilatorPedal Banner"] {
    width: 100%;
    object-fit: contain;
    max-height: 400px;
}

/* Slideshow navigation controls */
.slideshow-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

.slideshow-nav-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.slideshow-nav-btn:hover {
    background-color: #ff8533;
    transform: scale(1.1);
}

body.dark-theme .slideshow-nav-btn {
    background-color: var(--dark-primary);
}

body.dark-theme .slideshow-nav-btn:hover {
    background-color: #ff9e5e;
}

.slideshow-indicators {
    display: flex;
    gap: 8px;
    margin: 0 15px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

body.dark-theme .indicator {
    background-color: #555;
}

body.dark-theme .indicator.active {
    background-color: var(--dark-primary);
}

/* Theme toggle button */
.theme-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
}

body.dark-theme .theme-toggle {
    background-color: var(--dark-primary);
}

body.dark-theme .theme-toggle i.fa-sun {
    display: inline-block;
}

body.dark-theme .theme-toggle i.fa-moon {
    display: none;
}

.theme-toggle i.fa-sun {
    display: none;
}

.theme-toggle i.fa-moon {
    display: inline-block;
}

/* Blog Section Styles */
.blog {
    padding: 60px 0;
    background-color: var(--dark-bg);
}

.blog h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: var(--dark-primary);
    position: relative;
}

.blog h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: var(--dark-surface);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.blog-card:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.blog-card:hover:after {
    opacity: 1;
}

/* Original blog image styles */
.blog-image {
    height: auto;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.blog-img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    transition: transform 0.5s ease;
    border-radius: 8px;
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.blog-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-primary);
}

.blog-excerpt {
    color: var(--dark-text);
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    color: var(--dark-text-secondary);
    font-size: 0.9rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
}

.blog-meta i {
    margin-right: 5px;
    color: var(--dark-primary);
}

.blog-btn {
    align-self: flex-start;
    margin-top: auto;
    padding: 8px 16px;
    font-size: 0.95rem;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px;
    justify-content: center;
}

.blog-tags span {
    background-color: var(--dark-surface-2);
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 0.9rem;
    color: var(--dark-text-secondary);
    transition: all 0.3s ease;
}

.blog-tags span:hover {
    background-color: var(--dark-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

/* Modified styles for images in blog cards */
.blog-image.pricing-image {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    overflow: visible;
}

.blog-image.pricing-image .price-img {
    max-width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.step .pricing-image {
    margin-bottom: 15px;
    text-align: center;
    overflow: hidden;
    border-radius: 8px;
}

.step .pricing-image .price-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
    max-height: 250px;
    object-fit: contain;
}

/* Özel olarak adım 3 ve adım 4 için daha büyük resimler */
.step:nth-child(3) .pricing-image .price-img,
.step:nth-child(4) .pricing-image .price-img {
    max-height: 350px;
}

.step p {
    margin: 0;
    line-height: 1.5;
}

.step strong {
    color: var(--dark-primary);
}

.blog-conclusion {
    font-weight: 600;
    margin-top: 20px;
    font-size: 1.1em;
    color: var(--dark-primary);
}

@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Blog Page Specific Styles */
.blog-page {
    padding: 60px 0;
    background-color: var(--dark-bg);
}

.blog-section-title {
    font-size: 1.8rem;
    margin: 50px 0 30px;
    color: var(--dark-primary);
    position: relative;
    padding-left: 15px;
}

.blog-section-title:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background-color: var(--dark-primary);
    border-radius: 3px;
}

.blog-featured {
    margin-bottom: 50px;
}

.blog-card.featured {
    display: flex;
    flex-direction: row;
    background-color: var(--dark-surface);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    height: auto;
}

.blog-card.featured .blog-image {
    flex: 0 0 40%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.blog-card.featured .blog-content {
    flex: 0 0 60%;
    padding: 30px;
}

.blog-card.featured h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

/* Modified styles for images in blog cards */
.blog-image.pricing-image {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    overflow: visible;
}

.blog-image.pricing-image .price-img {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.step .pricing-image {
    margin-bottom: 15px;
    text-align: center;
    overflow: hidden;
    border-radius: 8px;
}

.step .pricing-image .price-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
    max-height: 250px;
    object-fit: contain;
}

/* Özel olarak adım 3 ve adım 4 için daha büyük resimler */
.step:nth-child(3) .pricing-image .price-img,
.step:nth-child(4) .pricing-image .price-img {
    max-height: 300px;
}

.blog-card:hover .price-img {
    transform: scale(1.05);
}

.blog-category {
    display: inline-block;
    background-color: var(--dark-primary);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.blog-categories {
    margin-top: 50px;
    padding: 20px;
    background-color: var(--dark-surface);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blog-categories h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark-primary);
    position: relative;
    padding-bottom: 10px;
}

.blog-categories h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--dark-primary);
}

.blog-categories ul {
    list-style: none;
    padding: 0;
}

.blog-categories li {
    margin-bottom: 12px;
}

.blog-categories a {
    color: var(--dark-text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.blog-categories a:hover {
    color: var(--dark-primary);
}

.blog-categories i {
    margin-right: 10px;
    color: var(--dark-primary);
}

@media (max-width: 991px) {
    .blog-card.featured {
        flex-direction: column;
    }
    
    .blog-card.featured .blog-image {
        flex: 0 0 100%;
        height: auto;
    }
    
    .blog-card.featured .blog-content {
        flex: 0 0 100%;
    }
}

@media (max-width: 767px) {    .blog-grid {        grid-template-columns: 1fr;    }}

/* Installation Steps Styles */
.installation-steps {
    margin: 20px 0;
}

.step {
    margin-bottom: 25px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.step-img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.step p {
    margin: 0;
    line-height: 1.5;
}

.step strong {
    color: var(--dark-primary);
}

.blog-conclusion {
    font-weight: 600;
    margin-top: 20px;
    font-size: 1.1em;
    color: var(--dark-primary);
}

@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.blog-card.featured .blog-content.full-width {
    flex: 1;
    width: 100%;
    padding: 30px;
} 