:root {
    --bg-dark: #050505;
    --bg-card: #0a0a0a;
    --text-main: #e0e0e0;
    --text-muted: #888888;
    --metallic-light: #ffffff;
    --metallic-mid: #a3a3a3;
    --metallic-dark: #4a4a4a;
    --accent: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
    pointer-events: none;
}

/* Floating Status Widget */
.floating-status {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: rgba(12, 12, 12, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: border-color 0.3s ease;
    cursor: default;
}

.floating-status:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.status-circle {
    width: 6px;
    height: 6px;
    background-color: #00ff66;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(0, 255, 102, 0.5);
}

.status-label {
    color: #999999;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
}

/* Typography & Metallic Effects */
.metallic-text {
    background: linear-gradient(to bottom, #ffffff 0%, #d4d4d4 30%, #737373 50%, #d4d4d4 70%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.metallic-icon {
    background: linear-gradient(to bottom, #ffffff 0%, #a3a3a3 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 4px;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--accent);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 20px 60px 20px;
}

.hero-content {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: 10px;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.15));
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 700px;
}

/* Hero GIF & Frame */
.hero-visual {
    width: 100%;
    max-width: 700px;
    margin-bottom: 4rem;
    perspective: 1000px;
}

.glass-frame {
    background: rgba(255, 255, 255, 0.02);
    padding: 10px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 255, 255, 0.05);
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.glass-frame:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9), 0 0 50px rgba(255, 255, 255, 0.08);
}

.frame-glare {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%, transparent 100%);
    border-radius: 10px;
    pointer-events: none;
    z-index: 2;
}

.hero-gif {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    filter: contrast(1.1) brightness(0.9) grayscale(20%);
}

/* Buttons */
.btn {
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 0 10px;
    font-size: 0.9rem;
}

.btn.primary {
    background: linear-gradient(135deg, #e0e0e0 0%, #ffffff 50%, #a3a3a3 100%);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

.btn.secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn.secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn.primary.outline {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    box-shadow: none;
}

.btn.primary.outline:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn-discord {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* PREMIUM STATS BANNER (From screenshot) */
.stats-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 20px;
    margin: 10px 0 50px 0;
}
.stats-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 900px;
}
.stat-item {
    text-align: center;
    flex: 1;
    transition: transform 0.4s ease;
}
.stat-item:hover {
    transform: translateY(-3px) scale(1.03);
}
.stat-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 4px;
    text-shadow: 0 3px 10px rgba(0,0,0,0.8), 0 0 10px rgba(255,255,255,0.1);
    letter-spacing: 1px;
}
.stat-label {
    color: #555555;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}
.stat-divider {
    width: 1px;
    height: 35px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.15), transparent);
}

/* Sections */
section {
    padding: 90px 5%;
}

.scroll-section {
    border-radius: 12px;
    transition: background 0.8s ease, box-shadow 0.8s ease;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    font-weight: 900;
}

/* Highlight Effect on Scroll */
@keyframes targetFlash {
    0% { background: rgba(255, 255, 255, 0.05); box-shadow: 0 0 30px rgba(255, 255, 255, 0.05); }
    100% { background: transparent; box-shadow: none; }
}
.target-highlight {
    animation: targetFlash 1.5s ease-out;
}

/* Features */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: #fff;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* How It Works */
.howitworks .tech-desc {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 50px;
    font-size: 1.1rem;
}
.steps-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.step-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    position: relative;
    transition: all 0.3s ease;
}
.step-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}
.step-number {
    font-size: 4rem;
    font-weight: 900;
    opacity: 0.3;
    margin-bottom: 10px;
    line-height: 1;
}
.step-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    letter-spacing: 1px;
}
.step-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Tech Specs */
.tech-specs {
    background: rgba(10, 10, 10, 0.5);
    border-top: 1px solid rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.02);
}

.tech-content {
    max-width: 1000px;
    margin: 0 auto;
}

.tech-desc {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.tech-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.1);
}

.tech-icon {
    font-size: 2rem;
    color: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    flex-shrink: 0;
}

.tech-text h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.tech-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing-visual {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
    width: 100%;
}
.wide-frame {
    max-width: 900px;
    width: 100%;
}
.pricing-gif {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    filter: contrast(1.15) brightness(0.9);
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.price-card {
    background: var(--bg-card);
    padding: 50px 40px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    width: 380px;
    position: relative;
}

.price-card.premium {
    border-color: rgba(255, 255, 255, 0.2);
    background: linear-gradient(180deg, #0f0f0f 0%, #050505 100%);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.05);
    transform: scale(1.05);
}

.glow-effect {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at top, rgba(255,255,255,0.1), transparent 70%);
    pointer-events: none;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffffff 0%, #a3a3a3 100%);
    color: #000;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.price-card h3 {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 30px;
}

.currency {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.features-list {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.features-list li {
    margin-bottom: 18px;
    color: var(--text-main);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.features-list i {
    color: var(--accent);
    margin-right: 15px;
    font-size: 0.9rem;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-question {
    padding: 20px 25px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}
.faq-question:hover {
    background: rgba(255, 255, 255, 0.04);
}
.faq-question i {
    transition: transform 0.3s ease;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer {
    padding: 0 25px 25px 25px;
    max-height: 200px;
}

/* Footer */
footer {
    text-align: center;
    padding: 60px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 50px;
    background: #000;
}

footer h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    letter-spacing: 6px;
}

footer p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Animations (JS Triggered) */
.hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero h1 { font-size: 3.5rem; }
    .stats-container { flex-direction: column; gap: 30px; }
    .stat-divider { width: 50px; height: 1px; }
    .price-card.premium { transform: scale(1); }
    .tech-item { flex-direction: column; text-align: center; }
}

/* Premium Logo (Bottom Right) */
.watermark-logo {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    width: 110px;
    opacity: 0.9;
    pointer-events: none;
}
.watermark-logo img {
    width: 100%;
    height: auto;
    display: block;
    /* Resim ZATEN şeffaf olduğu için bu kod sadece logoyu bembeyaz yapar ve kalite katar */
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255,255,255,0.3));
}
