/* Modern ZANTI RP Website CSS - Dark Theme */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* CSS Variables */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --accent-red: #ff3b3b;
    --accent-pink: #ff6b9d;
    --accent-purple: #8b5cf6;
    --accent-orange: #ff6b35;
    --accent-green: #10b981;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.3);
    --gradient-primary: linear-gradient(135deg, var(--accent-red), var(--accent-pink));
    --gradient-secondary: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    --gradient-orange: linear-gradient(135deg, var(--accent-orange), var(--accent-red));
    --gradient-green: linear-gradient(135deg, var(--accent-green), #059669);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Smooth scroll for sticky features */
.sticky-features-container {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.logo {
    display: flex;
    align-items: center;
}

.footer-logo {
    height: 35px;
    width: auto;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.play-button:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    box-shadow: var(--shadow-medium);
}

/* Market Hero Section */
.market-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 2rem 4rem;
    overflow: hidden;
}

.market-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.market-hero .hero-background-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.market-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(17, 17, 17, 0.8) 100%);
    z-index: 1;
}

.market-hero .hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.market-hero .hero-particles .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent-red);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 59, 59, 0.5);
}

.market-hero .hero-particles .particle-1 { top: 15%; left: 15%; animation-delay: 0s; }
.market-hero .hero-particles .particle-2 { top: 45%; left: 85%; animation-delay: 2s; }
.market-hero .hero-particles .particle-3 { top: 75%; left: 25%; animation-delay: 4s; }
.market-hero .hero-particles .particle-4 { top: 25%; left: 75%; animation-delay: 6s; }
.market-hero .hero-particles .particle-5 { top: 85%; left: 65%; animation-delay: 8s; }

.market-hero .curved-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 3;
}

.market-hero .curve {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.1;
    filter: blur(40px);
}

.market-hero .curve-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    animation: float 6s ease-in-out infinite;
}

.market-hero .curve-2 {
    width: 300px;
    height: 300px;
    top: 50%;
    right: -50px;
    animation: float 8s ease-in-out infinite reverse;
}

.market-hero .curve-3 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: 50%;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.market-hero .hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.market-hero .hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.market-hero .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.market-hero .hero-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.market-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.market-hero .stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.market-hero .stat-item:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-red);
}

.market-hero .stat-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.market-hero .stat-info {
    text-align: left;
}

.market-hero .stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.market-hero .stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Market Section */
.market-section {
    position: relative;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    overflow: hidden;
}

.market-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.market-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.market-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-red);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(255, 59, 59, 0.4);
}

.market-particles .particle-1 { top: 10%; left: 10%; animation-delay: 0s; }
.market-particles .particle-2 { top: 30%; left: 80%; animation-delay: 2s; }
.market-particles .particle-3 { top: 60%; left: 20%; animation-delay: 4s; }
.market-particles .particle-4 { top: 80%; left: 70%; animation-delay: 6s; }
.market-particles .particle-5 { top: 40%; left: 50%; animation-delay: 8s; }

.market-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
}

/* Balance Section */
.balance-section {
    margin-bottom: 4rem;
}

.balance-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.balance-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.balance-section .section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.balance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.balance-card {
    position: relative;
    background: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.balance-card:hover:not(.selected) {
    border-color: var(--accent-red);
}

.balance-card.selected,
.balance-card.selected:hover {
    border-color: var(--accent-red);
    box-shadow: 0 0 30px rgba(255, 59, 59, 0.3);
}



.balance-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 59, 59, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.balance-card:hover .balance-glow,
.balance-card.selected .balance-glow {
    opacity: 1;
}

.balance-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: linear-gradient(45deg, transparent, rgba(255, 59, 59, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.balance-card:hover .balance-border,
.balance-card.selected .balance-border {
    opacity: 1;
}

.balance-header {
    margin-bottom: 1.5rem;
}

.balance-amount {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.balance-bonus {
    font-size: 1rem;
    color: var(--accent-red);
    font-weight: 600;
}

.balance-total {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.balance-icon {
    position: relative;
    display: inline-block;
}

.balance-icon .icon-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.2;
    animation: iconBackground 3s ease-in-out infinite;
}

.balance-icon i {
    position: relative;
    z-index: 1;
    font-size: 2rem;
    color: var(--accent-red);
}

.custom-balance .custom-input {
    position: relative;
    margin: 1.5rem 0;
}

.custom-balance input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1.1rem;
    text-align: center;
}

.custom-balance input:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 20px rgba(255, 59, 59, 0.3);
}

.custom-balance input:invalid {
    border-color: #ff4444;
    box-shadow: 0 0 15px rgba(255, 68, 68, 0.3);
}

.custom-balance input:invalid + .currency {
    color: #ff4444;
}

.custom-balance .input-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.5rem;
    opacity: 0.8;
}

.custom-balance .currency {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-weight: 600;
}

/* Payment Section */
.payment-section {
    background: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 4rem;
}

.payment-section .form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.payment-section .form-header h2 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.payment-section .form-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    font-weight: 600;
}

.form-group label i {
    color: var(--accent-red);
}

.form-group input {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-red);
    box-shadow: 0 0 20px rgba(255, 59, 59, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

/* Payment Methods */
.payment-methods-section {
    margin-bottom: 3rem;
}

.payment-methods-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.payment-method {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    cursor: pointer;
    transition: border-color 0.3s ease, background 0.3s ease;
    overflow: hidden;
}

.payment-method:hover:not(.selected) {
    border-color: var(--accent-red);
}

.payment-method.selected,
.payment-method.selected:hover {
    border-color: var(--accent-red);
    background: rgba(255, 59, 59, 0.1);
}



.method-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 59, 59, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.payment-method:hover .method-glow,
.payment-method.selected .method-glow {
    opacity: 1;
}

.method-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    background: linear-gradient(45deg, transparent, rgba(255, 59, 59, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.payment-method:hover .method-border,
.payment-method.selected .method-border {
    opacity: 1;
}

.method-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.method-icon .icon-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    border-radius: 12px;
    opacity: 0.2;
    animation: iconBackground 3s ease-in-out infinite;
}

.method-icon i {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    color: var(--accent-red);
}

.method-info {
    flex: 1;
}

.method-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.method-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.method-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--accent-red);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.payment-method.selected .method-check {
    opacity: 1;
}

.method-check i {
    color: white;
    font-size: 0.8rem;
}

/* Order Summary */
.order-summary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.order-summary h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.summary-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item.total {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--accent-red);
    border-top: 2px solid var(--accent-red);
    padding-top: 1rem;
    margin-top: 0.5rem;
}

/* Payment Button */
.payment-button {
    position: relative;
    width: 100%;
    padding: 1.2rem 2rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.payment-button:hover:not(:disabled) {
    box-shadow: 0 10px 30px rgba(255, 59, 59, 0.4);
}

.payment-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.button-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.payment-button:hover .button-glow {
    opacity: 1;
}

/* Info Section */
.info-section {
    margin-top: 4rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.info-card {
    position: relative;
    background: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: border-color 0.3s ease;
    overflow: hidden;
}

.info-card:hover {
    border-color: var(--accent-red);
}

.info-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 59, 59, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.info-card:hover .info-glow {
    opacity: 1;
}

.info-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: linear-gradient(45deg, transparent, rgba(255, 59, 59, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.info-card:hover .info-border {
    opacity: 1;
}

.info-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.info-icon .icon-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.2;
    animation: iconBackground 3s ease-in-out infinite;
}

.info-icon i {
    position: relative;
    z-index: 1;
    font-size: 2.5rem;
    color: var(--accent-red);
}

.info-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.info-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Error Notification */
.error-notification {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 59, 59, 0.1);
    border: 1px solid var(--accent-red);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    color: var(--accent-red);
    font-weight: 600;
}

/* Payment Form Container */
.payment-form-container {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.payment-form-container .form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.payment-form-container .form-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.payment-form-container .form-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(17, 17, 17, 0.8) 100%);
    z-index: 2;
}



.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}

/* Hero Header */
.hero-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 1rem 0;
}

.hero-header .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-header .logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 59, 59, 0.3));
}

.hero-header .nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-header .nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-header .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.hero-header .nav-link:hover::before {
    left: 100%;
}

.hero-header .nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.hero-header .nav-link.active {
    color: white;
    background: rgba(255, 59, 59, 0.2);
    border: 1px solid rgba(255, 59, 59, 0.3);
}

.hero-header .nav-link i {
    font-size: 1.1rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1000;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--accent-red);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 59, 59, 0.1), transparent);
    transition: left 0.3s ease;
}

.mobile-nav-link:hover::before {
    left: 100%;
}

.mobile-nav-link:hover {
    background: rgba(255, 59, 59, 0.1);
    color: var(--accent-red);
    transform: translateX(10px);
}

.mobile-nav-link.active {
    background: rgba(255, 59, 59, 0.2);
    color: var(--accent-red);
    border: 1px solid rgba(255, 59, 59, 0.3);
}

.mobile-nav-link i {
    font-size: 1.3rem;
    width: 24px;
    text-align: center;
}

.hero-particles .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent-red);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 59, 59, 0.5);
}

.hero-particles .particle-1 { top: 15%; left: 15%; animation-delay: 0s; }
.hero-particles .particle-2 { top: 45%; left: 85%; animation-delay: 2s; }
.hero-particles .particle-3 { top: 75%; left: 25%; animation-delay: 4s; }
.hero-particles .particle-4 { top: 25%; left: 75%; animation-delay: 6s; }
.hero-particles .particle-5 { top: 85%; left: 65%; animation-delay: 8s; }

.curved-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 3;
}

.curve {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.1;
    filter: blur(40px);
}

.curve-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    left: -200px;
    animation: float 6s ease-in-out infinite;
}

.curve-2 {
    width: 400px;
    height: 400px;
    top: 50%;
    right: -100px;
    animation: float 8s ease-in-out infinite reverse;
}

.curve-3 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: 50%;
    animation: float 7s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 0 2rem;
}

.hero-background-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: -1;
}

.hero-text {
    position: relative;
    z-index: 5;
    background: rgba(10, 10, 10, 0.9);
    padding: 3rem;
    border-radius: 24px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 59, 59, 0.1) 0%, transparent 70%);
    border-radius: 24px;
    animation: pulse 4s ease-in-out infinite;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.6;
}



.character-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 59, 59, 0.1) 0%, transparent 70%);
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    0% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

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



/* Player Counter */
.player-counter {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    z-index: 6;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.player-counter:hover {
    transform: translateX(-50%) translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.counter-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(255, 59, 59, 0.1) 0%, transparent 70%);
    border-radius: 16px;
    animation: pulse 3s ease-in-out infinite;
}

.player-counter i {
    color: var(--accent-red);
    font-size: 1.2rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
    z-index: 6;
}

.scroll-indicator:hover {
    color: white;
}

.scroll-indicator span {
    font-size: 0.8rem;
    font-weight: 500;
}

.scroll-indicator i {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}



/* Features Section */
.features-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.features-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.features-background-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    object-fit: cover;
    object-position: center;
    opacity: 0.2;
    z-index: 0;
    border-radius: 20px;
}

.features-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.3) 0%, rgba(17, 17, 17, 0.2) 100%);
    z-index: 0;
    pointer-events: none;
}

.features-particles {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-red);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle-1 { top: 20%; left: 10%; animation-delay: 0s; }
.particle-2 { top: 60%; left: 80%; animation-delay: 1s; }
.particle-3 { top: 80%; left: 20%; animation-delay: 2s; }
.particle-4 { top: 30%; left: 70%; animation-delay: 3s; }
.particle-5 { top: 70%; left: 40%; animation-delay: 4s; }

.features-section .container {
    position: relative;
    z-index: 3;
}

.features-section .section-header {
    position: relative;
    text-align: center;
    margin-bottom: 4rem;
}



.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.features-content {
    margin-top: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 15;
}





.feature-card {
    background: rgba(17, 17, 17, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.feature-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 59, 59, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 24px;
}

.feature-card:hover .feature-glow {
    opacity: 1;
}

.feature-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-red);
}

.feature-icon {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    border-radius: 50%;
    transform: scale(0.8);
    transition: transform 0.4s ease;
}

.feature-card:hover .icon-background {
    transform: scale(1);
}

.feature-icon i {
    font-size: 2.5rem;
    color: white;
    z-index: 2;
    position: relative;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1);
}

.feature-content {
    position: relative;
    z-index: 2;
}

/* Simple Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(17, 17, 17, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 30px 60px rgba(255, 0, 0, 0.3);
    border-color: var(--accent-red);
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 20px 50px rgba(255, 0, 0, 0.8);
}

.feature-card:hover .feature-title {
    color: var(--accent-red) !important;
    text-shadow: 0 0 20px rgba(255, 59, 59, 0.5);
}

.feature-card:hover .feature-description {
    color: #ffffff !important;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.feature-card:hover .feature-detail {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.feature-card:hover .feature-number {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Removed ::before pseudo-element to eliminate overlay */

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(40, 40, 40, 0.9) 100%);
}

.feature-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
    text-align: center;
    display: block;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 10;
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.6);
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffffff !important;
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
    text-align: center;
}

.feature-description {
    font-size: 1rem;
    color: #ffffff !important;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
    font-weight: 600;
    text-align: center;
}

.feature-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    position: relative;
    z-index: 10;
    align-items: center;
}

.feature-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: #ffffff !important;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    width: 100%;
}

.feature-detail i {
    color: var(--accent-red);
    font-size: 1rem;
}

.scroll-jack-left {
    position: relative;
    z-index: 2;
    transform: translateZ(50px);
}

.scroll-jack-info {
    position: relative;
}

.feature-number-3d {
    font-size: 120px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
    transform: translateZ(20px);
    margin-bottom: 20px;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 30px rgba(255, 59, 59, 0.3);
}

.feature-icon-large {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 30px;
}

.icon-background-large {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 50%;
    transform: scale(0.8);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 40px rgba(255, 59, 59, 0.2);
}

.sticky-feature-section:hover .icon-background-large {
    transform: scale(1.1);
}

.feature-icon-large i {
    position: relative;
    z-index: 2;
    font-size: 48px;
    color: white;
    line-height: 120px;
    text-align: center;
    width: 100%;
    text-shadow: 0 0 20px rgba(255, 59, 59, 0.5);
}

.feature-title-large {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 25px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.feature-description-large {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: var(--text-secondary);
}

.feature-detail-item i {
    color: #00ff00;
    font-size: 18px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.sticky-feature-right {
    position: relative;
    z-index: 2;
}

.feature-visual {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-visual-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 59, 59, 0.1) 0%, transparent 70%);
    border-radius: 30px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 59, 59, 0.2);
}

.feature-visual-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.visual-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 59, 59, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: pulse-glow 3s ease-in-out infinite;
}

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

.visual-icon {
    position: relative;
    z-index: 3;
}

.visual-icon i {
    font-size: 120px;
    color: var(--accent-red);
    text-shadow: 0 0 40px rgba(255, 59, 59, 0.6);
    animation: float-icon 4s ease-in-out infinite;
}

@keyframes float-icon {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.sticky-feature-divider {
    position: absolute;
    bottom: -20px;
    left: 50%;
    width: 4px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255, 59, 59, 0.8), rgba(255, 59, 59, 0.3), transparent);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255, 59, 59, 0.3);
}

/* Responsive Design for Sticky Features */
@media (max-width: 1200px) {
    .sticky-feature-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .feature-number {
        font-size: 80px;
    }
    
    .feature-title-large {
        font-size: 36px;
    }
    
    .feature-description-large {
        font-size: 18px;
    }
    
    .feature-visual {
        height: 400px;
    }
    
    .visual-icon i {
        font-size: 80px;
    }
    
    .sticky-features-container {
        height: 80vh;
    }
}

@media (max-width: 768px) {
    .sticky-features-container {
        height: 70vh;
        margin-top: 40px;
    }
    
    .sticky-feature-content {
        padding: 0 20px;
        gap: 40px;
    }
    
    .feature-number {
        font-size: 60px;
    }
    
    .feature-title-large {
        font-size: 28px;
    }
    
    .feature-description-large {
        font-size: 16px;
    }
    
    .feature-icon-large {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
    }
    
    .feature-icon-large i {
        font-size: 32px;
        line-height: 80px;
    }
    
    .feature-visual {
        height: 300px;
        margin: 0 auto;
    }
    
    .visual-icon i {
        font-size: 60px;
    }
}

@media (max-width: 768px) {
    .sticky-feature-section {
        min-height: auto;
        padding: 40px 0;
        margin-left: 10px;
        margin-right: 10px;
        border-radius: 20px;
    }
    
    .sticky-feature-content {
        padding: 0 20px;
        gap: 40px;
    }
    
    .feature-number {
        font-size: 60px;
    }
    
    .feature-title-large {
        font-size: 28px;
    }
    
    .feature-description-large {
        font-size: 16px;
    }
    
    .feature-icon-large {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
    }
    
    .feature-icon-large i {
        font-size: 32px;
        line-height: 80px;
    }
    
    .feature-visual {
        height: 300px;
        margin: 0 auto;
    }
    
    .visual-icon i {
        font-size: 60px;
    }
    
    .sticky-features-container {
        padding: 20px 0;
    }
}

.feature-card h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.feature-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--accent-red), var(--accent-orange)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover .feature-border {
    opacity: 1;
}

/* About Section */
.about-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.about-background-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.3;
    z-index: 0;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.8) 0%, rgba(17, 17, 17, 0.6) 100%);
    z-index: 1;
}

.about-particles {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.about-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-red);
    border-radius: 50%;
    animation: float 7s ease-in-out infinite;
}

.about-particles .particle-1 { top: 25%; left: 15%; animation-delay: 0s; }
.about-particles .particle-2 { top: 65%; left: 85%; animation-delay: 1.5s; }
.about-particles .particle-3 { top: 85%; left: 25%; animation-delay: 3s; }
.about-particles .particle-4 { top: 35%; left: 75%; animation-delay: 4.5s; }
.about-particles .particle-5 { top: 75%; left: 45%; animation-delay: 6s; }

.about-section .container {
    position: relative;
    z-index: 3;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-text {
    position: relative;
}

.text-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 59, 59, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 5s ease-in-out infinite;
}

.about-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    position: relative;
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-red);
}

.stat-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 59, 59, 0.1) 0%, transparent 70%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover .stat-glow {
    opacity: 1;
}

.stat-number {
    position: relative;
    z-index: 2;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-red);
    margin-bottom: 0.5rem;
}

.stat-label {
    position: relative;
    z-index: 2;
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
}



/* Download Section */
.download-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.download-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.download-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.download-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.download-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.download-option {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.download-option:hover {
    box-shadow: var(--shadow-heavy);
    border-color: var(--accent-red);
}

.option-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.download-option h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.download-option p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.download-btn:hover {
    box-shadow: var(--shadow-medium);
}

/* Footer */
.modern-footer {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 59, 59, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-brand {
    position: relative;
}

.footer-brand .footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 59, 59, 0.3));
}

.footer-brand .logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 300px;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link i {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
}

.social-link:hover {
    border-color: var(--accent-red);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 59, 59, 0.2);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover i {
    color: white;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.link-group h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 0.5rem;
}

.link-group h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

.link-group a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.link-group a::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 59, 59, 0.1), transparent);
    transition: left 0.3s ease;
}

.link-group a:hover::before {
    left: 100%;
}

.link-group a:hover {
    color: var(--accent-red);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

/* Developer Info */
.developer-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.developer-link {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.developer-link:hover {
    transform: translateY(-2px);
}

.developer-logo {
    height: 20px;
    width: auto;
    filter: brightness(0.8);
    transition: all 0.3s ease;
}

.developer-link:hover .developer-logo {
    filter: brightness(1);
    transform: scale(1.05);
}

/* Discord Section */
.discord-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    margin-top: -2rem;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.discord-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.discord-bg-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.3;
    z-index: 0;
}

.discord-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.85) 0%, rgba(17, 17, 17, 0.6) 50%, rgba(17, 17, 17, 0.85) 100%);
    z-index: 1;
}

.discord-particles {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.discord-particles .particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #5865F2;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(88, 101, 242, 0.6);
}

.discord-particles .particle-1 { top: 20%; left: 20%; animation-delay: 0s; }
.discord-particles .particle-2 { top: 60%; left: 80%; animation-delay: 1.5s; }
.discord-particles .particle-3 { top: 80%; left: 30%; animation-delay: 3s; }
.discord-particles .particle-4 { top: 30%; left: 70%; animation-delay: 4.5s; }
.discord-particles .particle-5 { top: 70%; left: 60%; animation-delay: 6s; }

.discord-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
}

.discord-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-primary);
    text-align: left;
}

.discord-content-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-top: 0;
}

.discord-text-content {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.discord-description {
    font-size: 1.3rem;
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 550px;
}

.discord-logo-container {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.discord-large-logo {
    width: 350px;
    height: auto;
    filter: drop-shadow(0 15px 40px rgba(88, 101, 242, 0.4));
    transition: all 0.4s ease;
}

.discord-large-logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 20px 50px rgba(88, 101, 242, 0.5));
}

.discord-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #5865F2, #7289DA);
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.4);
    min-width: 220px;
}

.discord-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(88, 101, 242, 0.5);
    background: linear-gradient(135deg, #4752C4, #5865F2);
}

.discord-button:active {
    transform: translateY(-1px);
}

.discord-logo {
    width: 30px;
    height: 30px;
}

.button-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.discord-button:hover .button-glow {
    left: 100%;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 59, 59, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 59, 59, 0.4);
    background: linear-gradient(135deg, #ff3b3b, #ff6b6b);
}

.scroll-to-top:active {
    transform: translateY(-1px);
}

.scroll-to-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scroll-to-top:hover::before {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Hero Section Mobile */
    .hero-section {
        padding: 0 1rem;
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 100px 0 2rem;
        max-width: 100%;
    }
    
    .hero-text {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    /* Header Mobile */
    .hero-header .nav-menu {
        display: none;
    }
    
    .hero-header .header-container {
        justify-content: space-between;
        padding: 0 1rem;
    }
    
    .header-container {
        padding: 1rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-header .logo-image {
        height: 40px;
    }
    
    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Features Section Mobile */
    .features-section {
        padding: 4rem 1rem;
    }
    
    .features-section .section-header {
        margin-bottom: 3rem;
    }
    
    .features-section .section-header h2 {
        font-size: 2.2rem;
        margin-bottom: 0.75rem;
    }
    
    .features-section .section-header p {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 1.5rem;
    }
    
    .feature-icon i {
        font-size: 2rem;
    }
    
    .feature-content h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .feature-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* About Section Mobile */
    .about-section {
        padding: 4rem 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
    }
    
    .about-text p {
        font-size: 1.1rem;
        line-height: 1.7;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-brand p {
        margin: 0 auto 1.5rem;
    }
    
    /* Player Counter & Scroll Indicator Mobile */
    .player-counter {
        position: absolute;
        bottom: 80px;
        left: 50%;
        transform: translateX(-50%);
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .scroll-indicator {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }
    
    /* Market Responsive */
    .market-section {
        padding: 4rem 1rem;
    }
    
    .balance-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .payment-section {
        padding: 2rem 1.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .balance-section .section-header h2,
    .payment-section .form-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    /* Hero Section Small Mobile */
    .hero-section {
        padding: 0 0.5rem;
    }
    
    .hero-content {
        padding: 80px 0 1rem;
    }
    
    .hero-text {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .hero-header .logo-image {
        height: 35px;
    }
    
    /* Features Section Small Mobile */
    .features-section {
        padding: 3rem 0.5rem;
    }
    
    .features-section .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .features-section .section-header p {
        font-size: 0.9rem;
    }
    
    .features-grid {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .feature-icon i {
        font-size: 1.8rem;
    }
    
    .feature-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* About Section Small Mobile */
    .about-section {
        padding: 3rem 0.5rem;
    }
    
    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.25rem 0.75rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    /* Player Counter & Scroll Indicator Small Mobile */
    .player-counter {
        bottom: 60px;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .scroll-indicator {
        bottom: 15px;
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
    
    /* Market Small Mobile */
    .market-section {
        padding: 3rem 0.5rem;
    }
    
    .balance-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .payment-method {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .method-info {
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    /* Scroll to Top Button Mobile */
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    /* Developer Info Mobile */
    .developer-info {
        flex-direction: column;
        gap: 0.25rem;
        margin-top: 0.75rem;
        font-size: 0.8rem;
    }
    
    .developer-logo {
        height: 18px;
    }
    
    /* Discord Section Mobile */
    .discord-section {
        padding: 5rem 1rem;
        margin-top: 0;
    }
    
    .discord-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .discord-content-wrapper {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .discord-text-content {
        text-align: center;
        align-items: center;
    }
    
    .discord-title {
        text-align: center;
    }
    
    .discord-description {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        max-width: 100%;
    }
    
    .discord-large-logo {
        width: 250px;
    }
    
    .discord-button {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
        min-width: 200px;
    }
    
    /* Discord Section Small Mobile */
    .discord-section {
        padding: 4rem 0.5rem;
        margin-top: 0;
    }
    
    .discord-title {
        font-size: 2rem;
    }
    
    .discord-content-wrapper {
        gap: 1.5rem;
    }
    
    .discord-text-content {
        align-items: center;
    }
    
    .discord-title {
        text-align: center;
    }
    
    .discord-description {
        font-size: 1rem;
    }
    
    .discord-large-logo {
        width: 180px;
    }
    
    .discord-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        min-width: 180px;
    }
}

/* Detaylı Hata Mesajları */
.error-details {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.error-details h4 {
    color: #dc3545;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.error-details .error-item {
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    background: rgba(220, 53, 69, 0.05);
    border-radius: 6px;
    border-left: 3px solid #dc3545;
}

.error-details .error-label {
    font-weight: 600;
    color: #dc3545;
    margin-right: 0.5rem;
}

.error-details .error-value {
    color: #6c757d;
    word-break: break-all;
}

.error-details .error-trace {
    background: rgba(0, 0, 0, 0.8);
    color: #00ff00;
    padding: 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #333;
}

.error-details .error-trace::-webkit-scrollbar {
    width: 8px;
}

.error-details .error-trace::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.error-details .error-trace::-webkit-scrollbar-thumb {
    background: #dc3545;
    border-radius: 4px;
}

.error-details .error-trace::-webkit-scrollbar-thumb:hover {
    background: #c82333;
}

/* Hata Mesajı Animasyonu */
@keyframes errorShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.error-details {
    animation: errorShake 0.5s ease-in-out;
}

/* Hata İkonu */
.error-details::before {
    content: '⚠️';
    font-size: 1.5rem;
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--bg-primary);
    padding: 0 0.5rem;
}

.error-details {
    position: relative;
}

/* 3D Scroll Jacking Additional Styles */
.feature-icon-3d {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 2rem 0;
    transform: translateZ(30px);
}

.icon-3d-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 50%;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
    transform: translateZ(10px);
}

.feature-icon-3d i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3.5rem;
    color: var(--accent-red);
    z-index: 2;
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.feature-title-3d {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin: 1.5rem 0;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transform: translateZ(25px);
}

.feature-description-3d {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
    transform: translateZ(15px);
}

.feature-details-3d {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transform: translateZ(20px);
}

.feature-detail-3d {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-detail-3d:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px) translateZ(5px);
}

.feature-detail-3d i {
    color: var(--accent-red);
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.scroll-jack-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateZ(40px);
}

.feature-visual-3d {
    position: relative;
    width: 450px;
    height: 450px;
    transform-style: preserve-3d;
}

.visual-3d-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: 50%;
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 60px rgba(255, 255, 255, 0.05);
    transform: translateZ(20px);
}

.visual-3d-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

.visual-3d-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow-3d 4s ease-in-out infinite;
    transform: translateZ(10px);
}

.visual-3d-icon {
    position: relative;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 80px rgba(255, 0, 0, 0.4);
    transform: translateZ(30px);
    animation: float-icon-3d 4s ease-in-out infinite;
}

.visual-3d-icon i {
    font-size: 5rem;
    color: white;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

@keyframes pulse-glow-3d {
    0%, 100% { 
        opacity: 0.6; 
        transform: scale(1) translateZ(10px); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1.15) translateZ(15px); 
    }
}

@keyframes float-icon-3d {
    0%, 100% { 
        transform: translateY(0) translateZ(30px) rotateY(0deg); 
    }
    25% { 
        transform: translateY(-15px) translateZ(35px) rotateY(5deg); 
    }
    50% { 
        transform: translateY(-20px) translateZ(40px) rotateY(0deg); 
    }
    75% { 
        transform: translateY(-10px) translateZ(35px) rotateY(-5deg); 
    }
}

/* Responsive adjustments for features grid */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-number {
        font-size: 3rem;
    }
    
    .feature-title {
        font-size: 1.5rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .features-grid {
        padding: 0.5rem;
    }
    
    .feature-card {
        padding: 1rem;
    }
    
    .feature-number {
        font-size: 2.5rem;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.2rem;
    }
}