/* ZX Cheats - Purple themed modern site */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    padding-top: 70px; /* space for navbar */
    background: #0e0b16;
    color: #ffffffcc;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top:0;left:0;right:0;
    height:70px;
    background:#0b0812ee;
    backdrop-filter: blur(6px);
    display:flex;
    align-items:center;
    justify-content: space-between; /* Pushes logo and nav-right to the edges */
    padding:0 2rem;
    z-index:1000;
}
.logo {color:#fff;font-weight:700;font-size:1.2rem;letter-spacing:1px;}
/* Updated Nav-links for oval design */
.nav-links {
    position: absolute; /* Takes the menu out of the document flow */
    left: 50%; /* Positions its left edge to the center of the navbar */
    transform: translateX(-50%); /* Shifts the menu left by 50% of its own width to perfectly center it */
    list-style: none;
    display: flex;
    gap: 0.5rem; /* Adjusted gap */
    background-color: rgba(25, 25, 35, 0.5);
    padding: 0.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.nav-links a {
    color: #ccc;
    text-decoration: none;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #fff;
    background-color: rgba(138, 43, 226, 0.4);
}
.personal-area {background:#6928ff;padding:.5rem 1rem;border-radius:20px;color:#fff;text-decoration:none;font-size:.85rem;transition:background .3s;}
.personal-area:hover {background:#8c52ff;}

/* Hero */
.hero {
    position: relative;
    padding: 10rem 0; /* Dikey ortalamayı kaldırıp üstten/alttan boşluk veriyoruz */
    background: linear-gradient(135deg, #6928ff, #b221ff, #ff21b5, #6928ff);
    background-size: 400% 400%;
    animation: gradient-flow 15s ease infinite;
    text-align: center;
}
.overlay {
    position:absolute;
    inset:0;
    background:url('https://www.transparenttextures.com/patterns/stardust.png') repeat;
    opacity:0.15;
}
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-buttons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.hero h1 {
    font-size: 3rem;
    color:#fff;
    margin-bottom:.5rem;
}
.hero p {color:#e5d0ff; margin-bottom:1.5rem;}
.cta {
    padding: .8rem 2rem;
    background:#fff;
    color:#6928ff;
    border:none;
    border-radius:25px;
    font-weight:600;
    text-decoration:none;
    transition:transform .3s;
}
.cta:hover, .buy-btn:hover, .personal-area:hover, .reseller-link:hover, #unlockBtn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #b57dff, 0 0 25px #b57dff;
}

.hero-buttons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    padding: .8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin: 0;
}

.cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: scale(1.05);
    box-shadow: 0 0 15px #b57dff, 0 0 25px #b57dff;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta-nav {
    padding: 0.6rem 1.2rem; /* Buton boyutunu navigasyona uygun hale getirir */
    font-size: 0.9rem; /* Yazı boyutunu küçültür */
}

/* General Section Styles */
.section-title {
    text-align:center;
    font-size:2rem;
    margin:3rem 0 1.5rem;
    color:#fff;
}

.page-content {
    padding: 4rem 2rem;
}

.section-subtitle {
    text-align: center;
    color: #ccc;
    margin-top: -1rem;
    margin-bottom: 3rem;
}

/* Pricing & General Cards */
.pricing-section {padding:0 1rem 4rem;}
.cards {display:flex;flex-wrap:wrap;gap:1.5rem;justify-content:center;}
.card {
    background:#1a132b;
    border-radius:15px;
    padding:2rem 1.5rem;
    width:260px;
    text-align:center;
    position:relative;
    overflow:hidden;
    transition:transform .3s, box-shadow .3s;
}
.card.highlight {background:#2b1d4d;}
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,.4), 0 0 15px #6928ff;
} 
.card h3 {color:#fff;margin-bottom:.5rem;}
.price {font-size:2rem;color:#b57dff;margin-bottom:1rem; font-weight:600;}
.buy-btn {
    background:#b57dff;
    border:none;
    color:#fff;
    padding:.7rem 1.5rem;
    border-radius:25px;
    cursor:pointer;
    font-weight:600;
    transition:background .3s;
}
.buy-btn:hover {background:#d3a9ff;}

/* Download Section */
.download-section {padding-bottom:4rem;text-align:center;}
.download-section .cta { margin-top: 1rem; }

/* Modal */
.modal {
    display: none; 
    position: fixed; 
    z-index: 1001; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #1a132b;
    margin: 15% auto; 
    padding: 2rem;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 15px;
    text-align: center;
    position: relative;
}

.close-btn {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    transition: color .3s;
}

.close-btn:hover,
.close-btn:focus {
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.modal h2 { color: #fff; margin-bottom: .5rem; }
.modal p { color: #ccc; margin-bottom: 1.5rem; }

.key-form {
    display: flex;
    gap: 10px;
    justify-content: center;
}

#keyInput {
    flex-grow: 1;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #444;
    background: #2b1d4d;
    color: #fff;
    font-size: 1rem;
}

#unlockBtn {
    padding: 12px 20px;
    border: none;
    background: #6928ff;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    transition: background .3s;
}

#unlockBtn:hover { background: #8c52ff; }

.status-message {
    margin-top: 1rem;
    font-weight: bold;
}

.status-message.success { color: #28a745; }
.status-message.error { color: #dc3545; }

/* Features Section */
.features-section {
    padding: 4rem 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: flex-start;
}

.feature-card {
    background-color: #16161d;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(128, 90, 213, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.feature-card .card-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 600;
}

.feature-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.feature-item label,
.feature-item span {
    font-size: 0.9rem;
    color: #ccc;
}

.feature-control {
    display: flex;
    align-items: center;
}

.select-control {
    background-color: #8A2BE2;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-control:hover {
    background-color: #9932CC;
}

.range-control {
    width: 120px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.range-control span {
    display: block;
    height: 100%;
    background-color: #8A2BE2;
    border-radius: 4px;
}

.button-group button {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ccc;
    padding: 5px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button-group button:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.button-group button:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.button-group button.active,
.button-group button:hover {
    background-color: #8A2BE2;
    color: white;
    border-color: #8A2BE2;
}

.color-control {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #ccc;
}

.color-control .color-box {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    margin-right: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.toggle-switch {
    width: 44px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.toggle-switch::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #fff;
    top: 3px;
    left: 3px;
    transition: transform 0.3s ease;
}

.toggle-switch.active {
    background-color: #8A2BE2;
}

.toggle-switch.active::before {
    transform: translateX(20px);
}

/* Preview Card Styles */
.preview-card {
    min-height: 350px;
}

.preview-window {
    background-color: #1a1a2e;
    border-radius: 8px;
    height: 100%;
    min-height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(128, 90, 213, 0.2);
}

.preview-target {
    width: 80px;
    height: 160px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preview-element {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
    transform: scale(0.9);
    color: #fff;
    font-size: 0.8rem;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.7);
}

.preview-element.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

#preview-box-esp {
    width: 100%;
    height: 100%;
    border: 2px solid #00ffff;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

#preview-health-bar {
    bottom: -20px;
    width: 100%;
    height: 8px;
    background-color: #333;
    border: 1px solid #00ffff;
    border-radius: 2px;
}

#preview-health-bar .health {
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, #00ff00, #ffff00);
    border-radius: 1px;
}

#preview-name-esp {
    top: -25px;
}

#preview-distance {
    bottom: -45px;
}

/* Resellers Page */
.resellers-section { padding: 4rem 2rem; }
.reseller-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; align-items: stretch; }
.reseller-card-v2 { background: #16161d; border-radius: 12px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.reseller-card-v2:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(138, 43, 226, 0.3); }
.reseller-banner { width: 100%; height: 100px; object-fit: cover; }
.reseller-info { padding: 1.5rem; }
.reseller-header { display: flex; align-items: center; margin-bottom: 0.5rem; }
.reseller-name { font-size: 1.2rem; color: #fff; margin-right: 0.5rem; }
.verified-icon { color: #28a745; font-size: 1rem; }
.reseller-region { color: #aaa; margin-bottom: 1rem; font-size: 0.9rem; }
.payment-methods { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.payment-icon { font-size: 1.5rem; color: #ccc; }
.reseller-link { display: inline-block; background: #8A2BE2; color: #fff; padding: 0.6rem 1.2rem; border-radius: 8px; text-decoration: none; font-weight: 600; transition: background-color 0.3s ease; }
.reseller-link:hover { background-color: #9932CC; }

/* FAQ Section */
.faq-section { max-width: 800px; margin: 4rem auto; padding: 0 2rem; }
.faq-item { background: #16161d; margin-bottom: 10px; border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.1); overflow: hidden; }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 1.5rem; cursor: pointer; color: #fff; font-weight: 600; }
.faq-question .icon { font-size: 1.2rem; transition: transform 0.3s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out, padding 0.4s ease-out; color: #ccc; }
.faq-answer p { padding: 0 1.5rem 1.2rem; }
.faq-item.active .faq-answer { max-height: 200px; }
.faq-item.active .icon { transform: rotate(45deg); }

/* Footer */
.footer { background: #0b0812; text-align: center; padding: 2rem; margin-top: 4rem; }

/* Scroll Reveal */
.reveal{ position: relative; transform: translateY(100px); opacity: 0; transition: 1s all ease; }
.reveal.active{ transform: translateY(0); opacity: 1; }

/* Keyframe Animations */
@keyframes gradient-flow { 0% {background-position: 0% 50%;} 50% {background-position: 100% 50%;} 100% {background-position: 0% 50%;} }

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar .nav-links { display: none; }
    .menu-toggle { display: block; /* Show hamburger */ }
    .navbar .nav-links.active { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; background: #0b0812; width: 100%; padding: 1rem 0; border-radius: 0; }
    .nav-links li { width: 100%; text-align: center; }
    .nav-links a { padding: 1rem; border-radius: 0; }
}

.menu-toggle { display: none; /* Hide by default */ cursor: pointer; font-size: 1.5rem; color: #fff; }


.reseller-card-v2 {
    background: #18191c; /* Dark background like the image */
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #2a2b2f;
}

.reseller-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.5), 0 0 20px #6928ff;
}

.reseller-banner {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.reseller-info {
    padding: 1.5rem;
}

.reseller-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.reseller-name {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.verified-icon {
    color: #28a745; /* Green checkmark */
    margin-left: 0.5rem;
    font-size: 1.2rem;
}

.reseller-region {
    color: #8e9297; /* Greyish text */
    margin-bottom: 1.5rem;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.payment-tag {
    background: #2b2d31;
    color: #dcddde;
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 500;
}

.store-btn {
    display: block;
    width: 100%;
    background: #5865F2; /* Discord-like purple/blue */
    color: #fff;
    padding: 0.8rem;
    border: none;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s;
}

.store-btn:hover {
    background: #4f5bda;
    transform: scale(1.02);
}

.store-btn .fa-store {
    margin-right: 0.5rem;
}

/* FAQ Page */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #1a132b;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 1.5rem;
    color: #ccc;
    background: #110d1f;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Adjust height if needed for longer answers */
    padding: 1.5rem;
}

.faq-item.active .faq-icon {
    transform: rotate(135deg); /* Rotates '+' to 'x' */
}

.faq-answer p {
    max-height: 200px; /* Adjust as needed */
    padding: 1.5rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer p {
    padding: 1.5rem;
    color: #ccc;
    line-height: 1.6;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Adjust as needed */
}


/* Status Page */
.status-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

.status-card {
    background: #1a132b;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.status-indicator-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
}

.status-indicator-dot {
    width: 20px;
    height: 20px;
    background-color: #28a745; /* Green for UD */
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.status-indicator-ring {
    width: 100px;
    height: 100px;
    border: 3px solid #28a745;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

.status-text {
    font-size: 2.5rem;
    color: #28a745;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.status-game {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.status-last-updated {
    font-size: 0.9rem;
    color: #777;
}


/* Scroll Animations */
.reveal {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal.active {
  transform: translateY(0);
  opacity: 1;
}

@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Footer */
.footer {padding:1.5rem 0;text-align:center;font-size:.9rem;background:#0b0812;color:#555;}
/* --- New Features Section Styles --- */

.features-grid-new {
    display: grid;
    /* Kartların yan yana dizilmesini sağlar */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Products Section */
.products-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.2);
}

/* Remove old product styles and add new pricing grid styles */
.product-title, .product-subtitle, .product-prices, .product-tiers {
    display: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
}

.pricing-card {
    background-color: #1a1a2e;
    border: 1px solid #301c4a;
    border-radius: 10px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.25);
}

.pricing-tier-title {
    font-size: 1.7rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.pricing-tier-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8a2be2;
    margin-bottom: 1.5rem;
}

.pricing-tier-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-tier-features li {
    margin-bottom: 0.75rem;
    color: #a9a9a9;
    display: flex;
    align-items: center;
}

.pricing-tier-features li i {
    color: #8a2be2;
    margin-right: 10px;
    font-size: 1.1rem;
}

.pricing-card .btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

.pricing-card.highlight {
    border-color: #8a2be2;
    transform: scale(1.05);
}

.pricing-card.highlight:hover {
    transform: scale(1.05) translateY(-10px);
}

.highlight-banner {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #8a2be2;
    color: #fff;
    padding: 0.5rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 0 0 8px 8px;
}

/* End of new pricing styles */


/* Showcase Section */
.showcase-section {
    padding: 4rem 2rem;
    text-align: center;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* Footer Styles */
.footer {
    text-align: center;
}

/* --- New Features Section Styles --- */

.feature-card-new {
    background: #1e1d22; /* Koyu arkaplan */
    border: 1px solid #2a282e;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.card-title-new {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem; /* İkon ile yazı arası boşluk */
}

.card-title-new i {
    color: #a037ff; /* Mor vurgu rengi */
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem; /* Liste elemanları arası boşluk */
}

.feature-list li {
    color: #c1bec8;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-list li i {
    color: #a037ff; /* Tik işaretlerinin rengi */
    font-size: 0.9rem;
}