/* Reset ve temel ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Arial', sans-serif;
    color: #fff;
    background: radial-gradient(circle at 60% 40%, #1e293b 0%, #0f172a 100%);
    min-height: 100vh;
}

/* Header */
.main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 7%;
    background: #0f172acc;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 16px 0 #0004;
}

.logo-area {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 44px;
    height: 44px;
    margin-right: 10px;
    border-radius: 50%;
    box-shadow: 0 0 24px 0 #1482ff55;
    background: #0f172a;
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
}

.logo-text .highlight {
    color: #1482ff;
}

.logo-text .dot {
    color: #fff;
    font-size: 1.1rem;
}

.main-nav {
    display: flex;
    gap: 28px;
}

.main-nav a {
    color: #e0eaff;
    text-decoration: none;
    font-size: 1.08rem;
    font-weight: 500;
    transition: color 0.2s;
}

.main-nav a:hover {
    color: #1482ff;
}

.discord-btn {
    background: linear-gradient(90deg, #1482ff 60%, #2563eb 100%);
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    margin-left: 32px;
    box-shadow: 0 2px 16px 0 #1482ff44;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    transition: background 0.2s, box-shadow 0.2s;
}

.discord-btn:hover {
    background: linear-gradient(90deg, #2563eb 60%, #1482ff 100%);
    box-shadow: 0 4px 24px 0 #1482ff77;
}

.discord-icon {
    font-size: 1.2em;
}

/* HERO YENİ DÜZEN */
.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    padding: 120px 7% 40px 7%;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, #1482ff15 0%, transparent 50%);
    pointer-events: none;
    animation: pulseGlow 8s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(20, 130, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(56, 182, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(37, 99, 235, 0.06) 0%, transparent 50%);
    animation: floatingOrbs 35s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

/* Animasyonlu arka plan efektleri */
@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

@keyframes floatingOrbs {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(-30px, -20px) rotate(90deg);
    }
    50% {
        transform: translate(20px, -40px) rotate(180deg);
    }
    75% {
        transform: translate(-20px, 20px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* Ek animasyonlu elementler */
.hero-section .floating-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-section .floating-dots::before,
.hero-section .floating-dots::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #1482ff;
    border-radius: 50%;
    box-shadow: 0 0 20px #1482ff;
    animation: floatingDots 12s linear infinite;
}

.hero-section .floating-dots::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-section .floating-dots::after {
    top: 60%;
    right: 15%;
    animation-delay: 6s;
}

@keyframes floatingDots {
    0% {
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-40px) scale(1);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
}

.hero-content {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 650px;
    margin-left: 40px;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #38b6ff;
    margin-bottom: 18px;
    line-height: 1.1;
    text-shadow: 0 2px 24px #1482ff33;
}

.hero-content p {
    font-size: 1.25rem;
    color: #e0eaff;
    margin-bottom: 22px;
    line-height: 1.5;
}

.stats-row {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.stat {
    background: #1e293b;
    color: #1482ff;
    padding: 7px 18px;
    border-radius: 20px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    box-shadow: 0 2px 12px 0 #1482ff22;
}

.stat .star {
    color: #ffe066;
    font-size: 1.1em;
}

.hero-buttons {
    display: flex;
    gap: 18px;
}

.btn {
    padding: 15px 36px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn.primary {
    background: linear-gradient(90deg, #1482ff 60%, #2563eb 100%);
    color: #fff;
    box-shadow: 0 2px 16px 0 #1482ff44;
}

.btn.primary:hover {
    background: linear-gradient(90deg, #2563eb 60%, #1482ff 100%);
    color: #fff;
    box-shadow: 0 4px 24px 0 #1482ff77;
}

.btn.secondary {
    background: transparent;
    color: #1482ff;
    border: 2px solid #1482ff;
}

.btn.secondary:hover {
    background: #1482ff22;
    color: #fff;
}

.hero-visual {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 320px;
    margin-top: 32px;
    width: 100%;
    height: 420px;
}

.logo-glow {
    border-radius: 50%;
    padding: 38px;
    margin-bottom: 0;
    box-shadow: 0 0 80px 0 #38b6ff88, 0 0 120px 0 #1482ff33;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: popIn 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes popIn {
    0% {
        transform: scale(0.7);
        opacity: 0;
    }

    70% {
        transform: scale(1.08);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.main-logo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: none;
    box-shadow: none;
}

.info-badges {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 340px;
    height: 340px;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.stat-badge {
    position: absolute;
    min-width: 120px;
    padding: 8px 20px 8px 14px;
    background: rgba(24, 31, 46, 0.82);
    color: #fff;
    border-radius: 22px;
    font-size: 1.02rem;
    font-weight: 600;
    box-shadow: 0 2px 18px 0 #a259ff55, 0 0 0 2px #2563eb;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid #1482ff;
    backdrop-filter: blur(2px);
    opacity: 0.98;
    pointer-events: auto;
    transition: box-shadow 0.2s, border 0.2s, background 0.2s;
    filter: drop-shadow(0 0 8px #1482ff88);
    animation: swayBadge 2.8s ease-in-out infinite;
}

.stat-badge .badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-badges .stat-badge:nth-child(1) {
    left: -90px;
    top: 50%;
    transform: translateY(-50%);
}

.info-badges .stat-badge:nth-child(2) {
    right: -30px;
    top: 30px;
    transform: none;
}

.info-badges .stat-badge:nth-child(3) {
    right: -30px;
    bottom: 30px;
    transform: none;
}

.badge {
    background: #1e293b;
    color: #fff;
    padding: 10px 26px;
    border-radius: 22px;
    font-size: 1.08rem;
    font-weight: 600;
    box-shadow: 0 2px 12px 0 #1482ff22;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.star-badge {
    color: #ffe066;
    background: #2563eb;
}

.server-badge {
    color: #1482ff;
}

.support-badge {
    color: #0ea5e9;
}

/* Hero Custom Tasarım */
.logo-glow-custom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 220px;
    margin: 0 auto 0 40px;
    border-radius: 50%;
    box-shadow: 0 0 60px 0 #1482ff88, 0 0 120px 0 #2563eb44;
    background: none;
    animation: popIn 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-logo-custom {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: none;
    box-shadow: none;
    z-index: 2;
}

.badge-custom {
    position: absolute;
    min-width: 120px;
    padding: 10px 22px 10px 14px;
    background: rgba(24, 31, 46, 0.85);
    color: #fff;
    border-radius: 22px;
    font-size: 1.01rem;
    font-weight: 600;
    box-shadow: 0 2px 18px 0 #1482ff55, 0 0 0 2px #1482ff;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid #1482ff;
    backdrop-filter: blur(2px);
    opacity: 0.98;
    pointer-events: auto;
    transition: box-shadow 0.2s, border 0.2s, background 0.2s;
    filter: drop-shadow(0 0 8px #1482ff88);
    z-index: 3;
    animation: floatBadge 2.8s ease-in-out infinite;
}

.badge-custom .badge-icon svg path,
.badge-custom .badge-icon svg circle {
    stroke: #1482ff !important;
}

.badge-left {
    left: -110px;
    top: 50%;
    transform: translateY(-50%);
}

.badge-topright {
    right: -30px;
    top: 10px;
}

.badge-bottomright {
    right: -30px;
    bottom: 10px;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Footer */
footer {
    padding: 24px 0 12px 0;
    text-align: center;
    background: #0f172a;
    font-size: 15px;
    color: #1482ff;
    margin-top: 40px;
}

/* Ürünler Bölümü */
.products-section {
    padding: 80px 7% 40px 7%;
    background: #13203b;
    text-align: center;
}

.products-section h2 {
    font-size: 2.3rem;
    color: #38b6ff;
    margin-bottom: 36px;
    font-weight: 800;
}

.products-list {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.product-card {
    background: #1e293b;
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 #1482ff22;
    padding: 32px 28px 28px 28px;
    min-width: 260px;
    max-width: 320px;
    flex: 1 1 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 18px;
}

.product-card h3 {
    color: #1482ff;
    font-size: 1.35rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.product-card p {
    color: #e0eaff;
    font-size: 1.05rem;
    margin-bottom: 18px;
}

.product-card .btn {
    margin-top: auto;
}

/* Hakkımızda Bölümü - Yeni Tasarım */
.about-section {
    padding: 100px 7% 80px 7%;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, #1482ff15 0%, transparent 50%);
    pointer-events: none;
}

.about-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 3rem;
    color: #38b6ff;
    margin-bottom: 16px;
    font-weight: 800;
    text-align: center;
    text-shadow: 0 2px 24px #1482ff33;
}

.about-subtitle {
    font-size: 1.2rem;
    color: #94a3b8;
    font-weight: 500;
    text-align: center;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-description {
    font-size: 1.1rem;
    color: #e0eaff;
    line-height: 1.7;
    margin-bottom: 0;
    font-weight: 400;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid #1482ff33;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.value-card:hover {
    border-color: #1482ff66;
    background: rgba(30, 41, 59, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(20, 130, 255, 0.15);
}

.value-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1482ff22, #2563eb22);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #1482ff44;
}

.value-content h4 {
    color: #38b6ff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.value-content p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
}

.stat-item {
    background: linear-gradient(135deg, #1482ff15, #2563eb15);
    border: 1px solid #1482ff33;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stat-item:hover {
    border-color: #1482ff66;
    background: linear-gradient(135deg, #1482ff25, #2563eb25);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(20, 130, 255, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #38b6ff;
    margin-bottom: 8px;
    text-shadow: 0 2px 16px #1482ff33;
}

.stat-label {
    font-size: 1rem;
    color: #94a3b8;
    font-weight: 500;
}

/* Responsive tasarım */
@media (max-width: 900px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-section h2 {
        font-size: 2.5rem;
    }
    
    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .stat-item {
        flex: 1;
        padding: 24px 16px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .about-section {
        padding: 80px 5% 60px 5%;
    }
    
    .about-section h2 {
        font-size: 2rem;
    }
    
    .about-subtitle {
        font-size: 1rem;
    }
    
    .about-stats {
        flex-direction: column;
    }
    
    .value-card {
        padding: 20px;
        gap: 16px;
    }
    
    .value-icon {
        width: 40px;
        height: 40px;
    }
    
    .value-content h4 {
        font-size: 1.1rem;
    }
}

/* Referanslar (Müşteri Değerlendirmeleri) - Küçük boyut ve animasyon için güncellendi */
.references-section {
    padding: 80px 7% 40px 7%;
    background: #181026;
}

.references-title {
    font-size: 2.1rem;
    color: #1482ff;
    margin-bottom: 10px;
    font-weight: 800;
    text-align: center;
    letter-spacing: 1px;
}

.references-desc {
    color: #b6b6c6;
    font-size: 1.01rem;
    margin-bottom: 36px;
    text-align: center;
    font-weight: 400;
}

.references-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    justify-content: center;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.reference-card {
    background: #181f2e;
    border-radius: 18px;
    box-shadow: 0 4px 32px 0 #1482ff22;
    border: 1.5px solid #1482ff44;
    padding: 20px 16px 14px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 210px;
    position: relative;
    transition: border 0.2s, box-shadow 0.2s;
}

.reference-card:hover {
    border: 1.5px solid #1482ff;
    box-shadow: 0 4px 40px 0 #1482ff55;
}

.reference-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.stars {
    color: #ffe066;
    font-size: 1.08rem;
    letter-spacing: 2px;
    font-weight: 700;
    filter: drop-shadow(0 1px 2px #0008);
}

.verified {
    background: #16a34a;
    color: #fff;
    font-size: 0.91rem;
    font-weight: 600;
    border-radius: 16px;
    padding: 3px 10px 3px 7px;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 8px;
    box-shadow: 0 2px 8px 0 #16a34a33;
}

.reference-card blockquote {
    color: #1482ff;
    font-size: 1.01rem;
    font-style: normal;
    margin: 0 0 18px 0;
    padding-left: 0;
    border: none;
    position: relative;
    line-height: 1.6;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
}

.quote-icon {
    font-size: 1.7rem;
    color: #1482ff;
    margin-right: 7px;
    line-height: 1;
    font-family: serif;
    font-weight: 900;
    filter: drop-shadow(0 2px 8px #1482ff33);
}

.reference-user {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
    margin-bottom: 0;
}

.reference-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #1482ff;
    background: #232c47;
    box-shadow: 0 2px 12px 0 #1482ff22;
}

.user-name {
    color: #fff;
    font-weight: 700;
    font-size: 0.98rem;
    display: block;
    margin-bottom: 2px;
}

.user-server {
    color: #1482ff;
    font-size: 0.91rem;
    display: block;
    font-weight: 500;
}

/* S.S.S. Bölümü */
.faq-section {
    padding: 80px 7% 40px 7%;
    background: #0f172a;
    text-align: center;
}

.faq-section h2 {
    font-size: 2.3rem;
    color: #38b6ff;
    margin-bottom: 36px;
    font-weight: 800;
}

.faq-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.faq-item {
    background: #1e293b;
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 #1482ff22;
    padding: 24px 22px 18px 22px;
    min-width: 220px;
    max-width: 340px;
    flex: 1 1 220px;
    margin-bottom: 18px;
    text-align: left;
}

.faq-item h4 {
    color: #1482ff;
    font-size: 1.13rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.faq-item p {
    color: #e0eaff;
    font-size: 1.04rem;
}

/* Accordion SSS */
.faq-accordion {
    max-width: 800px;
    margin: 36px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.accordion-item {
    background: #181f2e;
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 #1482ff11;
    overflow: hidden;
    border: 1.5px solid transparent;
    transition: border 0.2s, box-shadow 0.2s;
}

.accordion-item.active {
    border: 1.5px solid #1482ff;
    box-shadow: 0 4px 32px 0 #1482ff33;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 1.18rem;
    font-weight: 700;
    text-align: left;
    padding: 22px 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.2s;
}

.accordion-item.active .accordion-header {
    color: #38b6ff;
}

.accordion-icon {
    margin-left: 18px;
    font-size: 1.2em;
    transition: transform 0.3s;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    color: #38b6ff;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    background: none;
    color: #e0eaff;
    font-size: 1.05rem;
    padding: 0 28px;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.2s;
}

.accordion-item.active .accordion-body {
    padding: 0 28px 22px 28px;
    max-height: 300px;
}

.faq-desc {
    color: #b6c6e3;
    font-size: 1.13rem;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
}

/* Responsive */
@media (max-width: 1200px) {
    .references-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-section {
        gap: 30px;
    }

    .hero-content {
        margin-left: 20px;
    }

    .logo-glow-custom {
        margin-left: 20px;
    }
}

@media (max-width: 900px) {
    .hero-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        padding: 100px 4% 40px 4%;
    }

    .hero-content {
        margin-left: 0;
        max-width: 100%;
    }

    .logo-glow-custom {
        margin: 0 auto;
    }

    .products-list,
    .references-list,
    .faq-list {
        flex-direction: column;
        gap: 0;
    }

    .about-content {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .about-team {
        justify-content: flex-start;
    }

    .references-list {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .reference-card {
        padding: 24px 14px 16px 14px;
    }

    .main-logo {
        width: 100px;
        height: 100px;
    }

    .logo-glow {
        padding: 18px;
    }

    .info-badges {
        width: 220px;
        height: 220px;
    }

    .stat-badge {
        min-width: 70px;
        font-size: 0.91rem;
        padding: 5px 8px 5px 6px;
    }

    .info-badges .stat-badge:nth-child(1) {
        left: -60px;
        top: 50%;
        transform: translateY(-50%);
    }

    .info-badges .stat-badge:nth-child(2) {
        right: -10px;
        top: 10px;
        transform: none;
    }

    .info-badges .stat-badge:nth-child(3) {
        right: -10px;
        bottom: 10px;
        transform: none;
    }

    .logo-glow-custom {
        width: 160px;
        height: 160px;
    }

    .main-logo-custom {
        width: 100px;
        height: 100px;
    }

    .badge-custom {
        min-width: 70px;
        font-size: 0.91rem;
        padding: 5px 8px 5px 6px;
    }

    .badge-left {
        left: -60px;
    }

    .badge-topright {
        right: -10px;
        top: 0;
    }

    .badge-bottomright {
        right: -10px;
        bottom: 0;
    }
}

@media (max-width: 600px) {
    .main-header {
        flex-direction: column;
        gap: 18px;
        padding: 16px 3%;
    }

    .hero-content h1 {
        font-size: 2.1rem;
    }

    .main-logo {
        width: 80px;
        height: 80px;
    }

    .logo-glow {
        padding: 16px;
    }

    .faq-accordion {
        max-width: 98vw;
        gap: 12px;
    }

    .accordion-header {
        font-size: 1.01rem;
        padding: 16px 14px;
    }

    .accordion-body,
    .accordion-item.active .accordion-body {
        padding: 0 14px 14px 14px;
    }
}

/* Animasyonlar */
.animate-fade {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-fade.visible {
    opacity: 1;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-pop {
    animation: popIn 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-float {
    animation: floatBadge 2.8s ease-in-out infinite;
}

.info-badges .stat-badge:nth-child(2) {
    animation-delay: 0.15s;
}

.info-badges .stat-badge:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-8px) scale(1.04);
    }
}

/* Scroll to Top Butonu */
.scroll-to-top-btn {
    position: fixed;
    right: 32px;
    bottom: 32px;
    z-index: 100;
    width: 54px;
    height: 54px;
    border: none;
    border-radius: 50%;
    background: none;
    box-shadow: 0 4px 24px 0 #1482ff44;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s, box-shadow 0.2s, transform 0.2s;
    outline: none;
}

.scroll-to-top-btn:hover {
    box-shadow: 0 6px 32px 0 #1482ff88;
    transform: translateY(-4px) scale(1.08);
}

.scroll-to-top-btn svg {
    display: block;
}

@media (max-width: 600px) {
    .scroll-to-top-btn {
        right: 12px;
        bottom: 12px;
        width: 44px;
        height: 44px;
    }

    .scroll-to-top-btn svg {
        width: 22px;
        height: 22px;
    }
}

/* Modern Scrollbar */
body::-webkit-scrollbar {
    width: 10px;
    background: #181f2e;
}

body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #2563eb 0%, #1482ff 100%);
    border-radius: 8px;
    min-height: 40px;
    border: 2px solid #181f2e;
    transition: background 0.2s;
}

body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #38b6ff 0%, #1482ff 100%);
}

body::-webkit-scrollbar-track {
    background: #181f2e;
    border-radius: 8px;
}

body::-webkit-scrollbar-corner {
    background: #181f2e;
}

html {
    scrollbar-color: #1482ff #181f2e;
    scrollbar-width: thin;
}

/* Sallanma (sway) animasyonu */
@keyframes swayBadge {
    0% {
        transform: translateY(0);
    }

    20% {
        transform: translateY(-7px);
    }

    40% {
        transform: translateY(3px);
    }

    60% {
        transform: translateY(-4px);
    }

    80% {
        transform: translateY(2px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 20;
    margin-left: 18px;
    transition: background 0.2s;
}

.burger-bar {
    width: 28px;
    height: 3.5px;
    background: #1482ff;
    margin: 3.5px 0;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

@media (max-width: 900px) {
    .main-nav {
        position: absolute;
        top: 70px;
        right: 3%;
        background: #181f2e;
        box-shadow: 0 4px 24px 0 #1482ff33;
        border-radius: 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 18px 0 12px 0;
        min-width: 170px;
        display: none;
        z-index: 15;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 12px 28px;
        width: 100%;
        font-size: 1.08rem;
        border-radius: 0;
        text-align: left;
        border-bottom: 1px solid #1482ff22;
    }

    .main-nav a:last-child {
        border-bottom: none;
    }

    .burger-menu {
        display: flex;
    }
}

/* Burger active animasyonu (isteğe bağlı) */
.burger-menu.active .burger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger-menu.active .burger-bar:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Chat Bubble */
.chat-bubble-btn {
    position: fixed;
    right: 32px;
    bottom: 32px;
    z-index: 120;
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #1482ff 60%, #2563eb 100%);
    box-shadow: 0 4px 24px 0 #1482ff44;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.2s;
    outline: none;
}

.chat-bubble-btn:hover {
    box-shadow: 0 6px 32px 0 #1482ff88;
    transform: translateY(-4px) scale(1.08);
}

.chat-bubble-btn svg {
    display: block;
}

@media (max-width: 600px) {
    .chat-bubble-btn {
        right: 12px;
        bottom: 12px;
        width: 44px;
        height: 44px;
    }

    .chat-bubble-btn svg {
        width: 22px;
        height: 22px;
    }
}

/* Chat Modal (sağ alt köşe için güncellendi) */
.chat-modal {
    display: none;
    position: fixed;
    z-index: 130;
    right: 32px;
    bottom: 90px;
    left: auto;
    top: auto;
    width: 350px;
    max-width: 95vw;
    height: auto;
    background: none;
    align-items: flex-end;
    justify-content: flex-end;
    transition: none;
}

.chat-modal.open {
    display: flex;
}

.chat-modal-content {
    background: #181f2e;
    border-radius: 18px;
    box-shadow: 0 8px 40px 0 #1482ff44;
    padding: 32px 28px 24px 28px;
    min-width: 320px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: relative;
    margin-bottom: 0;
}

.chat-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    color: #1482ff;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.2s;
}

.chat-modal-close:hover {
    color: #2563eb;
}

.chat-modal-content h3 {
    color: #1482ff;
    margin-bottom: 18px;
    font-size: 1.25rem;
    text-align: center;
}

.chat-textarea {
    min-height: 90px;
    border-radius: 10px;
    border: 1.5px solid #1482ff;
    background: #232c47;
    color: #fff;
    font-size: 1.08rem;
    padding: 12px 14px;
    resize: vertical;
    margin-bottom: 8px;
    outline: none;
    transition: border 0.2s;
}

.chat-textarea:focus {
    border: 1.5px solid #2563eb;
}

@media (max-width: 600px) {
    .chat-modal {
        right: 8px;
        bottom: 60px;
        width: 98vw;
        max-width: 98vw;
    }

    .chat-modal-content {
        min-width: 0;
        width: 100%;
        padding: 14px 4px 10px 4px;
    }

    .chat-modal-content h3 {
        font-size: 1.05rem;
    }

    .chat-textarea {
        font-size: 0.98rem;
        padding: 8px 8px;
    }
}

.premium-products {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 32px;
}

/* Ürün kartları yan yana dizilsin */
#productList, .carousel-list {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  justify-content: flex-start;
  overflow: hidden;
  width: 100%;
}
.product-carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
}
.carousel-arrow {
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s;
}
.carousel-arrow:disabled {
  background: #b3b3b3;
  cursor: not-allowed;
}
.premium-card {
  flex: 0 0 320px;
  max-width: 320px;
  min-width: 260px;
  margin: 0;
}
@media (max-width: 1200px) {
  .premium-card { flex-basis: 260px; max-width: 260px; }
}
@media (max-width: 900px) {
  .carousel-list { gap: 12px; }
  .premium-card { flex-basis: 220px; max-width: 220px; }
}
@media (max-width: 700px) {
  .carousel-list { gap: 8px; }
  .premium-card { flex-basis: 90vw; max-width: 90vw; }
}

.premium-card {
    background: linear-gradient(135deg, #181f2e 80%, #2563eb22 100%);
    border: 2px solid #2563eb;
    border-radius: 22px;
    box-shadow: 0 4px 32px 0 #2563eb44, 0 0 0 2px #38b6ff33;
    padding: 38px 32px 32px 32px;
    min-width: 290px;
    max-width: 350px;
    flex: 1 1 290px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 18px;
    position: relative;
    transition: box-shadow 0.2s, border 0.2s, transform 0.2s;
    overflow: hidden;
}

.premium-card:hover {
    box-shadow: 0 8px 48px 0 #38b6ff77, 0 0 0 2.5px #38b6ff;
    border-color: #38b6ff;
    transform: translateY(-6px) scale(1.03);
}

.premium-icon {
    background: linear-gradient(135deg, #2563eb 60%, #38b6ff 100%);
    border-radius: 16px;
    box-shadow: 0 2px 18px 0 #2563eb55;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.premium-card h3 {
    color: #38b6ff;
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 800;
    text-align: center;
}

.premium-card p {
    color: #e0eaff;
    font-size: 1.05rem;
    margin-bottom: 16px;
    text-align: center;
}

.premium-features {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
    color: #b6eaff;
    font-size: 1.01rem;
    text-align: left;
    width: 100%;
}

.premium-features li {
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.premium-price-row {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 2px;
    margin-top: 8px;
    justify-content: center;
}

.premium-price {
    color: #38b6ff;
    font-size: 2.1rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.premium-old {
    color: #b6b6c6;
    font-size: 1.1rem;
    text-decoration: line-through;
    font-weight: 500;
    margin-bottom: 3px;
}

.premium-discount {
    color: #22e37b;
    font-size: 1.01rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
}

.premium-btn {
    background: linear-gradient(90deg, #1482ff 60%, #2563eb 100%);
    color: #fff;
    box-shadow: 0 2px 16px 0 #1482ff44;
    font-size: 1.08rem;
    font-weight: 700;
    border-radius: 30px;
    padding: 13px 32px;
    margin-top: 10px;
    transition: background 0.2s, box-shadow 0.2s, color 0.2s;
    border: none;
    text-align: center;
    width: 100%;
}

.premium-btn:hover {
    background: linear-gradient(90deg, #2563eb 60%, #1482ff 100%);
    color: #fff;
    box-shadow: 0 4px 24px 0 #1482ff77;
}

.products-desc {
    color: #b6b6c6;
    font-size: 1.13rem;
    margin-bottom: 36px;
    text-align: center;
    font-weight: 400;
}

@media (max-width: 1100px) {
    .premium-products {
        flex-direction: column;
        gap: 0;
        align-items: center;
    }

    .premium-card {
        max-width: 420px;
        width: 100%;
        margin-bottom: 28px;
    }
}

.footer-new {
    background: #131018;
    padding: 64px 7% 0 7%;
    color: #e0eaff;
    margin-top: 60px;
    border-top: 1.5px solid #23203a;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-col {
    flex: 1 1 220px;
    min-width: 200px;
    margin-bottom: 32px;
}

.footer-brand {
    max-width: 420px;
}

.footer-logo {
    font-size: 2.1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.footer-highlight {
    color: #1482ff;
}

.footer-dot {
    color: #fff;
    font-size: 1.1rem;
}

.footer-desc {
    color: #b6b6c6;
    font-size: 1.01rem;
    margin-bottom: 22px;
    margin-top: 0;
}

.footer-socials {
    display: flex;
    gap: 14px;
    margin-top: 8px;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #181026;
    box-shadow: 0 2px 12px 0 #7c3aed22;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.footer-social:hover {
    background: #1482ff;
    box-shadow: 0 4px 24px 0 #1482ff55;
    transform: translateY(-2px) scale(1.08);
}

.footer-col h4 {
    color: #1482ff;
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #e0eaff;
    text-decoration: none;
    font-size: 1.04rem;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #1482ff;
}

.footer-bottom {
    border-top: 1px solid #23203a;
    margin-top: 18px;
    padding: 18px 0 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-copyright {
    color: #b6b6c6;
    font-size: 1.01rem;
}

.footer-buttons {
    display: flex;
    gap: 14px;
}

.footer-btn {
    background: none;
    border: 1.5px solid #1482ff;
    color: #1482ff;
    border-radius: 22px;
    padding: 7px 22px;
    font-size: 1.01rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 12px 0 #1482ff22;
    display: flex;
    align-items: center;
    gap: 7px;
}

.footer-btn:hover {
    background: #1482ff;
    color: #fff;
    box-shadow: 0 4px 24px 0 #1482ff55;
}

@media (max-width: 900px) {
    .footer-main {
        flex-direction: column;
        gap: 0;
    }

    .footer-col {
        margin-bottom: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}

.team-section {
    padding: 80px 7% 40px 7%;
    background: none;
    text-align: center;
}

.team-title {
    font-size: 2.5rem;
    color: #1482ff;
    font-weight: 800;
    margin-bottom: 10px;
}

.team-desc {
    color: #b6b6c6;
    font-size: 1.13rem;
    margin-bottom: 48px;
    font-weight: 400;
}

.team-list {
    display: flex;
    gap: 38px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

.team-card {
    background: #181f2e;
    border-radius: 22px;
    box-shadow: 0 4px 32px 0 #1482ff22, 0 0 0 2px #1482ff33;
    padding: 38px 32px 32px 32px;
    min-width: 240px;
    max-width: 270px;
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 18px;
    position: relative;
    transition: box-shadow 0.2s, border 0.2s, transform 0.2s;
    overflow: hidden;
}

.team-card:hover {
    box-shadow: 0 8px 48px 0 #1482ff77, 0 0 0 2.5px #1482ff;
    border-color: #1482ff;
    transform: translateY(-6px) scale(1.03);
    cursor: pointer;
}

.team-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 18px;
    box-shadow: 0 0 32px 0 #1482ff55, 0 0 0 4px #1482ff44;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #10182a;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.team-name {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 12px;
    margin-top: 2px;
}

.team-role {
    background: linear-gradient(90deg, #1482ff 60%, #2563eb 100%);
    color: #fff;
    font-size: 0.98rem;
    font-weight: 600;
    border-radius: 18px;
    padding: 7px 18px;
    margin-bottom: 8px;
    display: inline-block;
    box-shadow: 0 2px 12px 0 #1482ff22;
    letter-spacing: 0.5px;
}

@media (max-width: 1100px) {
    .team-list {
        flex-direction: column;
        gap: 0;
        align-items: center;
    }

    .team-card {
        max-width: 420px;
        width: 100%;
        margin-bottom: 28px;
    }
}

/* Sayfalama Stilleri */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
    padding: 20px 0;
}

.pagination-btn {
    background: linear-gradient(90deg, #1482ff 60%, #2563eb 100%);
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 12px 0 #1482ff33;
}

.pagination-btn:hover {
    background: linear-gradient(90deg, #2563eb 60%, #1482ff 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px 0 #1482ff55;
}

.pagination-btn:disabled {
    background: #4a5568;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.page-numbers {
    display: flex;
    gap: 8px;
    align-items: center;
}

.page-number {
    background: rgba(255, 255, 255, 0.1);
    color: #e0eaff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 40px;
    text-align: center;
}

.page-number:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #1482ff;
    color: #fff;
}

.page-number.active {
    background: linear-gradient(90deg, #1482ff 60%, #2563eb 100%);
    color: #fff;
    border-color: #1482ff;
    box-shadow: 0 2px 12px 0 #1482ff33;
}

.page-number.dots {
    background: none;
    border: none;
    cursor: default;
    color: #94a3b8;
}

.page-number.dots:hover {
    background: none;
    border: none;
    color: #94a3b8;
}

@media (max-width: 600px) {
    .pagination {
        flex-direction: column;
        gap: 12px;
    }
    
    .page-numbers {
        order: -1;
    }
    
    .pagination-btn {
        width: 100%;
        justify-content: center;
    }
}

