:root {
    --primary-bg: #0a0a0a;
    --secondary-bg: #111111;
    --card-bg: #1a1a1a;
    --accent-blue: #2e3192;
    --accent-gray: #6d6e71;
    --accent-gold: #ffd700;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --accent-primary: #00d4ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh; /* İçeriğin tam görünmesi için */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
}

/* Glassmorphism Effects */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 15px;
    overflow: hidden; /* İçerik taşmasını önler */
}

.glass-card:hover {
    transform: translateY(-5px) translateX(5px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(46, 49, 146, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Section Styling */
.section {
    padding: 80px 0;
    position: relative;
    visibility: visible; /* İçeriğin görünür olduğundan emin olmak için */
    opacity: 1;
}

.section.hero {
    margin-top: 100px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: 0 1px 5px rgba(0, 212, 255, 0.1);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Button Styles */
.btn-modern {
    padding: 1rem 2rem;
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem;
    text-decoration: none;
    cursor: pointer;
    z-index: 10;
    position: relative;
    pointer-events: auto;
}

.btn-modern:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--accent-primary);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    color: var(--text-primary);
}

/* Product Cards */
.product-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    will-change: transform, box-shadow;
    visibility: visible; /* Kartların görünür olduğundan emin olmak için */
}

.product-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px) translateX(5px);
    box-shadow: 0 25px 50px rgba(46, 49, 146, 0.15);
}

/* FAQ Section */
.faq-section .accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 1rem;
}

.faq-section .accordion-button {
    background: var(--accent-blue);
    color: var(--text-primary);
    font-weight: 600;
    border-radius: 15px 15px 0 0;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed) {
    background: var(--accent-primary);
    box-shadow: none;
}

.faq-section .accordion-body {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0 0 15px 15px;
    padding: 1.5rem;
    color: var(--text-secondary);
}

/* Footer Styling */

/* Images */
.img-fluid {
    border-radius: 10px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    max-width: 100%;
    height: auto;
}

.img-fluid:hover {
    transform: scale(1.05);
    opacity: 0.95;
}

/* Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* 3D Card Effects */
.card-3d {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.card-3d:hover {
    transform: rotateY(12deg) rotateX(6deg) translateZ(25px);
}

/* Futuristic Cursor */
.futuristic-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #2e3192, transparent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
    opacity: 0;
}

.futuristic-cursor.active {
    opacity: 1;
}

.futuristic-cursor::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(46, 49, 146, 0.3);
    border-radius: 50%;
    animation: cursorPulse 2s infinite;
}

@keyframes cursorPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

/* Parallax Background */
.parallax-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 120%;
    height: 120%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(46, 49, 146, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(109, 110, 113, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(46, 49, 146, 0.05) 0%, transparent 50%);
    z-index: -1;
    animation: parallaxFloat 20s ease-in-out infinite;
}

@keyframes parallaxFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-2%, -1%) rotate(1deg); }
    66% { transform: translate(1%, -2%) rotate(-1deg); }
}

/* Interactive Particles */
.interactive-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #2e3192;
    border-radius: 50%;
    opacity: 0;
    animation: particleLife 4s infinite;
}

@keyframes particleLife {
    0% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0); }
}

/* Holographic Effects */
.holographic {
    position: relative;
    background: linear-gradient(45deg, transparent 30%, rgba(46, 49, 146, 0.1) 50%, transparent 70%);
    background-size: 200% 200%;
    animation: holographicShimmer 3s ease-in-out infinite;
}

@keyframes holographicShimmer {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
}

/* Glitch Effects */
.glitch-section {
    position: relative;
}

.glitch-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 49, 146, 0.03), transparent);
    animation: glitchScan 8s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes glitchScan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Neon Text Effects */
.neon-text {
    color: #fff;
    text-shadow: 
        0 0 3px #2e3192,
        0 0 6px #2e3192;
    animation: neonFlicker 2s infinite alternate;
}

@keyframes neonFlicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

/* Responsive Styles */
@media (max-width: 1024px) {
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .section.hero {
        margin-top: 80px;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
}
