:root {
    --primary-color: #a855f7;
    --secondary-color: #c084fc;
    --accent-color: #8b5cf6;
    --background-dark: #0f0f0f;
    --background-medium: #1a1a1a;
    --text-color: #e0e0e0;
    --light-color: #f0f0f0;
    --success-color: #22c55e;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --gradient-primary: linear-gradient(135deg, #a855f7, #6b21a8);
    --gradient-secondary: linear-gradient(135deg, #c084fc, #a855f7);
    --gradient-accent: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Page Transition Optimization */
html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
    -webkit-touch-callout: none; /* iOS Safari */
}

/* Preload Critical Resources */
.preload-images {
    position: absolute;
    left: -9999px;
    top: -9999px;
    visibility: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar - Site Temasına Uyumlu */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--background-dark);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #a855f7, #7c3aed);
    border-radius: 10px;
    border: 2px solid var(--background-dark);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #c084fc, #a855f7);
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

::-webkit-scrollbar-corner {
    background: var(--background-dark);
}

/* Firefox Scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: #a855f7 var(--background-dark);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-dark);
    color: var(--text-color);
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
    -webkit-touch-callout: none; /* iOS Safari */
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: all 0.5s ease;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(138, 43, 226, 0.2);
    border-top: 5px solid var(--accent-color);
    border-left: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Page Transition Animation */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.95), rgba(30, 25, 45, 0.95));
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9998;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    backdrop-filter: blur(10px);
}

.page-transition.active {
    opacity: 1;
}

.transition-spinner {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 4px solid rgba(168, 85, 247, 0.3);
    border-top: 4px solid var(--primary-color);
    border-left: 4px solid var(--secondary-color);
    animation: smoothSpin 0.6s infinite linear;
    transform: translateZ(0);
    backface-visibility: hidden;
}

@keyframes smoothSpin {
    0% { 
        transform: translate3d(0, 0, 0) rotate(0deg); 
    }
    100% { 
        transform: translate3d(0, 0, 0) rotate(360deg); 
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    background: rgba(10, 10, 15, 0.9);
}

.header.scrolled {
    background: rgba(10, 10, 15, 0.95);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo:hover {
    transform: scale(1.05);
}

.logo:hover .logo-header {
    transform: none;
}

.logo-header,
.logo img.logo-header,
.navbar .logo .logo-header,
header .logo .logo-header {
    width: auto !important;
    height: 54px !important;
    max-height: 54px !important;
    min-height: 54px !important;
    object-fit: contain !important;
    display: block !important;
    flex-shrink: 0 !important;
}

.logo-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 10px;
}

.logo span:first-of-type {
    color: #a855f7;
}

.com-small {
    font-size: 0.8rem;
    color: var(--text-color);
    opacity: 0.7;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.discord-btn {
    background: linear-gradient(45deg, #7c3aed, #14276d);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.discord-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(88, 101, 242, 0.3);
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Enhanced Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--background-dark), var(--background-medium));
    position: relative;
    overflow: hidden;
    padding: 120px 0 60px;
}

.inner-hero {
    min-height: 60vh;
    padding: 120px 0 60px;
}

.inner-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    align-items: center;
    gap: 60px;
}

.inner-hero .hero-visual {
    max-width: 350px;
    margin: 0 auto;
}

.inner-hero .floating-logo {
    width: 280px;
    height: 280px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(138, 43, 226, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(123, 104, 238, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(147, 112, 219, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

.title-colored {
    color: #a855f7;
    text-shadow: 0 0 15px rgba(168, 85, 247, 0.3);
}

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

.text-gradient {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.7;
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.9;
}

.trust-item i {
    color: var(--success-color);
    font-size: 1rem;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 48px;
}

.btn {
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.4);
}

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

.btn-secondary {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid rgba(138, 43, 226, 0.5);
}

.btn-secondary:hover {
    background: rgba(138, 43, 226, 0.1);
    transform: translateY(-3px);
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
}

.proof-avatars {
    display: flex;
    align-items: center;
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-stack img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--background-dark);
    margin-left: -8px;
}

.avatar-stack img:first-child {
    margin-left: 0;
}



/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-graphic {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.animated-logo {
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.floating-logo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    box-shadow: 
        0 20px 60px rgba(168, 85, 247, 0.4),
        0 0 40px rgba(168, 85, 247, 0.3);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.floating-logo:hover {
    transform: scale(1.05) rotate(5deg);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.float-card {
    position: absolute;
    background: linear-gradient(145deg, rgba(168, 85, 247, 0.15), rgba(139, 92, 246, 0.1));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(168, 85, 247, 0.3);
    padding: 12px 16px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.2);
    animation: floatCards 8s ease-in-out infinite;
}

.float-card i {
    color: #a855f7;
}

.float-card:nth-child(1) {
    top: 15%;
    right: -30px;
    animation-delay: 0s;
}

.float-card:nth-child(2) {
    top: 50%;
    left: -40px;
    animation-delay: 2s;
}

.float-card:nth-child(3) {
    bottom: 15%;
    right: -20px;
    animation-delay: 4s;
}

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

@keyframes floatCards {
    0%, 100% {
        transform: translate3d(0px, 0px, 0);
    }
    33% {
        transform: translate3d(5px, -15px, 0);
    }
    66% {
        transform: translate3d(-5px, -5px, 0);
    }
}

/* Performance Optimizations */
.floating-logo,
.team-image img,
.product-card,
.hero-graphic,
.animated-logo,
.glow-effect {
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
}

/* Smooth Transitions */
a, button, .btn, .nav-links a, .team-card, .product-card {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reduce Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Enhanced Stats Section */
.stats-section {
    position: relative;
    z-index: 2;
    margin-top: 40px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 40px;
    background: rgba(15, 15, 20, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(138, 43, 226, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(138, 43, 226, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(138, 43, 226, 0.1);
    border-color: rgba(138, 43, 226, 0.3);
}

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

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
    font-weight: 500;
}

/* Enhanced Product Cards */
.featured-products {
    background: linear-gradient(135deg, var(--background-medium), #131313);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.featured-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(123, 104, 238, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.featured-products .container {
    position: relative;
    z-index: 2;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

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

.section-title-boxed {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
    max-width: 600px;
    width: 100%;
}

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

.about-text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    opacity: 0.9;
    margin-bottom: 30px;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.about-highlight {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: left;
    transition: all 0.3s ease;
}

.about-highlight:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.2);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: white;
}

.highlight-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.highlight-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.9;
    margin: 0;
}

.about-values {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(138, 43, 226, 0.1));
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 15px;
    padding: 25px;
    margin-top: 40px;
}

.about-values p {
    font-size: 1.1rem;
    margin: 0;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-highlight {
        padding: 20px;
    }
    
    .highlight-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.product-card {
    background: linear-gradient(145deg, rgba(25, 25, 30, 0.8), rgba(15, 15, 20, 0.9));
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    opacity: 1;
    transform: translateY(0);
}



.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(138, 43, 226, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(138, 43, 226, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 50px rgba(138, 43, 226, 0.15);
}

.product-card.featured {
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.2);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 3;
}

.product-image {
    position: relative;
    text-align: center;
    margin-bottom: 24px;
    z-index: 2;
}

.product-icon-bg {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.3);
    transition: all 0.3s ease;
}

.product-card:hover .product-icon-bg {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.5);
}

.product-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.product-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    line-height: 1.3;
}

.product-desc {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
}

.product-features {
    margin-bottom: 32px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-color);
    font-size: 0.95rem;
}

.feature i {
    color: var(--success-color);
    font-size: 0.9rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: auto;
}

.product-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

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

.amount {
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

.price-old {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.5;
    text-decoration: line-through;
}

.price-save {
    font-size: 0.8rem;
    color: var(--success-color);
    font-weight: 600;
}

.product-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    justify-content: center;
}

.product-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.4);
}

.product-btn i {
    transition: transform 0.3s ease;
}

.product-btn:hover i {
    transform: translateX(3px);
}



/* Modern Testimonial Section */
.testimonial-slider {
    background: linear-gradient(135deg, var(--background-medium), #131313);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.testimonial-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 70% 30%, rgba(138, 43, 226, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(123, 104, 238, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.testimonial-slider .testimonial-header,
.testimonial-slider .modern-testimonial-grid,
.testimonial-slider .testimonial-cta {
    position: relative;
    z-index: 2;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.testimonial-header h2 {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
}

.testimonial-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

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

/* Modern Grid Layout */
.testimonial-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.modern-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    justify-items: center;
    align-items: start;
}

.modern-testimonial-card {
    background: rgba(18, 18, 25, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 18px;
    border: 1px solid rgba(168, 85, 247, 0.2);
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.17, 0.67, 0.83, 0.67);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.modern-testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(168, 85, 247, 0.05) 0%, 
        rgba(168, 85, 247, 0) 40%, 
        rgba(168, 85, 247, 0) 60%, 
        rgba(168, 85, 247, 0.05) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.6s ease;
    transform: translateX(-100%);
}

.modern-testimonial-card:hover::before {
    opacity: 1;
    transform: translateX(100%);
}

.modern-testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(168, 85, 247, 0.2);
}

.modern-testimonial-card .testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 15px;
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    background: rgba(18, 18, 30, 0.4);
    padding: 8px 15px;
    border-radius: 30px;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(249, 202, 36, 0.15);
}

.testimonial-rating i {
    color: #f9ca24;
    font-size: 16px;
    filter: drop-shadow(0 0 4px rgba(249, 202, 36, 0.4));
    transition: all 0.3s ease;
}

.testimonial-content {
    position: relative;
    z-index: 2;
    margin-bottom: 25px;
    flex: 1;
}

.testimonial-content p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 2;
    opacity: 0.95;
}

.testimonial-content::before {
    content: '';
    position: absolute;
    left: -8px;
    top: -8px;
    width: 35px;
    height: 35px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='35' height='35' fill='%23a855f7'%3E%3Cpath d='M6.5 10c-.223 0-.437.034-.65.065.069-.232.14-.468.254-.68.114-.308.292-.575.469-.844.148-.291.409-.488.601-.737.201-.242.475-.403.692-.604.213-.21.492-.315.714-.463.232-.133.434-.28.65-.35.208-.086.39-.16.539-.222.302-.125.474-.197.474-.197L9.758 4.03c0 0-.218.052-.597.144C8.97 4.222 8.737 4.278 8.472 4.345c-.271.05-.56.187-.882.312C7.272 4.799 6.904 4.895 6.562 5.123c-.344.218-.741.4-1.091.692C5.132 6.116 4.723 6.377 4.421 6.76c-.33.358-.656.734-.909 1.162C3.219 8.33 3.02 8.778 2.81 9.221c-.19.443-.343.896-.468 1.336-.237.882-.343 1.72-.384 2.437-.034.718-.014 1.315.028 1.747.015.204.043.402.063.539.017.109.025.168.025.168l.026-.006C2.535 17.474 4.338 19 6.5 19c2.485 0 4.5-2.015 4.5-4.5S8.985 10 6.5 10zM17.5 10c-.223 0-.437.034-.65.065.069-.232.14-.468.254-.68.114-.308.292-.575.469-.844.148-.291.409-.488.601-.737.201-.242.475-.403.692-.604.213-.21.492-.315.714-.463.232-.133.434-.28.65-.35.208-.086.39-.16.539-.222.302-.125.474-.197.474-.197L20.758 4.03c0 0-.218.052-.597.144-.191.048-.424.104-.689.171-.271.05-.56.187-.882.312-.317.143-.686.238-1.028.467-.344.218-.741.4-1.091.692-.339.301-.748.562-1.05.944-.33.358-.656.734-.909 1.162C14.219 8.33 14.02 8.778 13.81 9.221c-.19.443-.343.896-.468 1.336-.237.882-.343 1.72-.384 2.437-.034.718-.014 1.315.028 1.747.015.204.043.402.063.539.017.109.025.168.025.168l.026-.006C13.535 17.474 15.338 19 17.5 19c2.485 0 4.5-2.015 4.5-4.5S19.985 10 17.5 10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: 1;
    transition: all 0.3s ease;
}

.modern-testimonial-card:hover .testimonial-content::before {
    opacity: 0.4;
    transform: scale(1.1);
}

.testimonial-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(168, 85, 247, 0.15);
    position: relative;
    z-index: 2;
    margin-top: auto;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 16px;
    border: 2px solid rgba(168, 85, 247, 0.4);
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.modern-testimonial-card:hover .author-img {
    border-color: rgba(168, 85, 247, 0.7);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.4);
    transform: scale(1.05);
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: white;
    font-size: 1.2rem;
    margin: 0 0 3px 0;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.author-info p {
    color: var(--primary-color);
    opacity: 0.9;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

.testimonial-badge {
    font-size: 0.65rem;
    background: rgba(34, 197, 94, 0.15);
    padding: 4px 10px;
    border-radius: 30px;
    color: #22c55e;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    border: 1px solid rgba(34, 197, 94, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: fit-content;
    white-space: nowrap;
}

.testimonial-badge:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(34, 197, 94, 0) 0%, 
        rgba(34, 197, 94, 0.1) 50%, 
        rgba(34, 197, 94, 0) 100%);
    opacity: 0;
    z-index: 1;
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.modern-testimonial-card:hover .testimonial-badge:before {
    opacity: 1;
    transform: translateX(100%);
}

.testimonial-badge i {
    color: #22c55e;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

.modern-testimonial-card:hover .testimonial-badge {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.4);
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.2);
}

.testimonial-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    text-align: center;
}

.testimonial-cta .btn {
    padding: 14px 32px;
    font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .modern-testimonial-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .modern-testimonial-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .testimonial-header h2 {
        font-size: 2.5rem;
    }
    
    .modern-testimonial-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .testimonial-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .testimonial-badge {
        align-self: flex-start;
    }
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--background-medium), #131313);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 70% 30%, rgba(138, 43, 226, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(123, 104, 238, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.faq-section .container {
    position: relative;
    z-index: 2;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(145deg, rgba(30, 30, 35, 0.8), rgba(15, 15, 20, 0.8));
    backdrop-filter: blur(10px);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(138, 43, 226, 0.1);
    transition: all 0.5s ease;
    opacity: 1;
    transform: translateY(0);
}



.faq-item:hover {
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(138, 43, 226, 0.3);
}

.faq-question {
    padding: 20px 25px;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-color);
}

.faq-question.active {
    color: var(--accent-color);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--accent-color);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 25px 20px;
    color: var(--text-color);
    opacity: 0.9;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--background-dark), #000);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(138, 43, 226, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.footer-logo span:first-of-type {
    color: #a855f7;
}

.footer-logo-img,
.footer-about .footer-logo-img,
footer .footer-logo-img {
    width: 200px !important;
    height: 60px !important;
    max-height: 60px !important;
    min-height: 60px !important;
    object-fit: contain !important;
    display: block !important;
    margin-bottom: 20px !important;
}

.footer-about p {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
}

.footer-title {
    color: #a855f7;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--accent-color);
    opacity: 1;
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-color);
    opacity: 0.6;
    font-weight: 500;
}

.footer-badges {
    display: flex;
    gap: 16px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.3);
    padding: 6px 12px;
    border-radius: 20px;
    color: var(--accent-color);
    font-size: 0.8rem;
    font-weight: 600;
}

/* Particles Canvas */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: var(--background-dark);
        padding: 100px 20px 30px;
        z-index: 900;
        transition: right 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }
    
    .nav-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .mobile-menu {
        display: block;
        z-index: 901;
    }
    
    .discord-btn {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 30px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .trust-indicators {
        justify-content: center;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        padding: 24px;
    }
    
    .stat-card {
        padding: 16px;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    /* Mobile Testimonials */
    .testimonial-header h2 {
        font-size: 2.2rem;
    }
    
    .testimonial-header p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .testimonial-slider-container {
        padding: 0 70px;
    }
    
    .testimonial-carousel-inner {
        width: 600%;
    }
    
    .testimonial-item {
        width: 16.666%;
        padding: 0 10px;
    }
    
    .testimonial-card {
        padding: 24px;
        min-height: 240px;
        max-width: 100%;
        border-radius: 20px;
    }
    
    .carousel-control-prev {
        left: 8px;
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }
    
    .carousel-control-next {
        right: 8px;
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
        line-height: 1.6;
        margin-left: 12px;
    }
    
    .testimonial-content::before {
        font-size: 4rem;
        left: -6px;
        top: -12px;
    }
    
    .author-img {
        width: 50px;
        height: 50px;
        margin-right: 14px;
    }
    
    .author-info h4 {
        font-size: 1rem;
    }
    
    .author-info p {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 40px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    

    
    .product-card {
        padding: 24px;
    }
    
    .product-footer {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .product-btn {
        width: 100%;
        justify-content: center;
    }
}


    
    /* Extra Small Mobile Testimonials */
    .testimonial-header h2 {
        font-size: 1.8rem;
    }
    
    .testimonial-header p {
        font-size: 0.9rem;
        padding: 0 15px;
    }
    
    .testimonial-slider-container {
        padding: 0 60px;
    }
    
    .testimonial-card {
        padding: 20px;
        min-height: 220px;
        border-radius: 18px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    
    .carousel-control-prev {
        left: 5px;
    }
    
    .carousel-control-next {
        right: 5px;
    }
    
    .testimonial-content p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-left: 10px;
    }
    
    .testimonial-content::before {
        font-size: 3.5rem;
        left: -4px;
        top: -10px;
    }
    
    .author-img {
        width: 45px;
        height: 45px;
        margin-right: 12px;
    }
    
    .author-info h4 {
        font-size: 0.9rem;
    }
    
    .author-info p {
        font-size: 0.8rem;
    }
    
    .carousel-indicators {
        margin-top: 25px;
        gap: 10px;
    }
    
    .carousel-indicators button {
        width: 12px;
        height: 12px;
    }
}

/* About Section Styles */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-logo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.4), 0 0 40px rgba(168, 85, 247, 0.2);
    z-index: 2;
    position: relative;
}

.about-image-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(168, 85, 247, 0.2) 0%, transparent 70%);
    top: 0;
    left: 0;
    filter: blur(30px);
    z-index: 1;
}

.about-text-content {
    margin-top: 30px;
}

.about-text p {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.8;
    opacity: 0.9;
}

.about-highlight {
    display: flex;
    gap: 20px;
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(145deg, rgba(25, 25, 30, 0.7), rgba(15, 15, 20, 0.9));
    backdrop-filter: blur(15px);
    border-radius: 16px;
    border: 1px solid rgba(168, 85, 247, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, #a855f7, #c084fc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.3);
}

.highlight-content h3 {
    color: var(--light-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.highlight-content p {
    margin-bottom: 0;
}

/* Team Section Styles */
.team-section {
    background-color: var(--background-dark);
    padding: 80px 0;
    position: relative;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 50px;
}

@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.team-card {
    background: linear-gradient(145deg, rgba(25, 25, 30, 0.7), rgba(15, 15, 20, 0.9));
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(168, 85, 247, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.2);
    border-color: rgba(168, 85, 247, 0.3);
}

.team-image {
    margin: 0 auto 20px;
    width: 140px;
    height: 140px;
    position: relative;
}

.image-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(168, 85, 247, 0.3);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--light-color);
    margin-bottom: 5px;
}

.team-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
    justify-content: center;
}

.team-tag {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(138, 43, 226, 0.3));
    backdrop-filter: blur(10px);
    color: var(--primary-color);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 16px;
    border: 1px solid rgba(168, 85, 247, 0.3);
    box-shadow: 0 4px 8px rgba(168, 85, 247, 0.1);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-tag:hover {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(138, 43, 226, 0.4));
    border-color: rgba(168, 85, 247, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(168, 85, 247, 0.2);
}

.ticket-icon {
    position: relative;
    display: inline-block;
    width: 12px;
    height: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    margin-right: 6px;
    vertical-align: middle;
}

.ticket-icon::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--bg-color);
    border-radius: 50%;
    box-shadow: 16px 0 0 var(--bg-color);
}

.ticket-icon::after {
    content: '';
    position: absolute;
    left: 2px;
    top: 1px;
    right: 2px;
    bottom: 1px;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 1px,
        rgba(255, 255, 255, 0.3) 1px,
        rgba(255, 255, 255, 0.3) 2px
    );
}

.team-description {
    color: var(--text-color);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 15px;
    opacity: 0.8;
}

.team-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.team-social-link {
    width: 40px;
    height: 40px;
    background: rgba(168, 85, 247, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--light-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.team-social-link:hover {
    background: linear-gradient(135deg, #a855f7, #c084fc);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(168, 85, 247, 0.3);
}

/* Search Section Styles */
.search-section {
    background: linear-gradient(135deg, var(--background-dark), var(--background-medium));
    padding: 80px 0;
    position: relative;
}

.search-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(75, 0, 130, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.search-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.search-form {
    background: linear-gradient(145deg, rgba(25, 25, 30, 0.8), rgba(15, 15, 20, 0.95));
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(168, 85, 247, 0.2);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.15), 0 0 30px rgba(168, 85, 247, 0.1);
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.search-form::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.form-input {
    width: 100%;
    padding: 18px 24px;
    background: rgba(15, 15, 20, 0.9);
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: 16px;
    color: var(--light-color);
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
}

.form-input:hover {
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.15);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.3);
}

.form-input::placeholder {
    color: rgba(224, 224, 224, 0.5);
}

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.95rem;
}

.search-btn {
    width: 100%;
    margin-top: 25px;
    padding: 18px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(168, 85, 247, 0.4);
}

.search-btn:active {
    transform: translateY(-1px);
}

.result-container {
    margin-top: 30px;
    padding: 25px;
    border-radius: 15px;
    display: none;
    backdrop-filter: blur(15px);
}

.result-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.result-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.result-text {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.result-success .result-text {
    color: #22c55e;
}

.result-error .result-text {
    color: #ef4444;
}

.service-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(34, 197, 94, 0.3);
}

.service-info {
    display: flex;
    justify-content: space-between;
    color: var(--text-color);
    margin: 10px 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-info span {
    font-weight: 600;
}

.service-name {
    color: var(--primary-color);
}

.remaining-time {
    color: #22c55e;
}

.discord-id {
    font-family: 'Consolas', monospace;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(138, 43, 226, 0.2));
    padding: 2px 8px;
    border-radius: 4px;
    color: var(--accent-color);
    display: inline-block;
}

/* Features Section Styles */
.features-section {
    background-color: var(--background-dark);
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: linear-gradient(145deg, rgba(25, 25, 30, 0.7), rgba(15, 15, 20, 0.9));
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(168, 85, 247, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.2);
    border-color: rgba(168, 85, 247, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #a855f7, #c084fc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.3);
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--light-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-color);
    opacity: 0.9;
    line-height: 1.6;
}

.text-center {
    text-align: center;
}

/* Responsive styles for new sections */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-logo {
        width: 200px;
        height: 200px;
    }
    
    .about-highlight {
        flex-direction: column;
        gap: 15px;
        padding: 25px;
    }
    
    .highlight-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    

    
    .search-form {
        padding: 25px;
    }
    

    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .inner-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .inner-hero .hero-visual {
        order: -1;
        max-width: 280px;
    }
    
    .inner-hero .floating-logo {
        width: 220px;
        height: 220px;
    }
}

/* Modern Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: linear-gradient(145deg, rgba(25, 25, 30, 0.95), rgba(15, 15, 20, 0.98));
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    border: 1px solid rgba(168, 85, 247, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(168, 85, 247, 0.1);
    position: relative;
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.modal-close:hover {
    background: rgba(239, 68, 68, 0.2);
    transform: rotate(90deg);
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto 25px;
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.3);
    animation: pulse 2s infinite;
}

.modal-text h3 {
    color: var(--light-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.modal-text p {
    color: var(--text-color);
    opacity: 0.9;
    margin-bottom: 25px;
    line-height: 1.6;
}

.modal-btn {
    background: linear-gradient(135deg, #5865f2, #7289da);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(88, 101, 242, 0.3);
}

/* Toast Notification Styles */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(145deg, rgba(25, 25, 30, 0.95), rgba(15, 15, 20, 0.98));
    backdrop-filter: blur(15px);
    color: var(--light-color);
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid rgba(168, 85, 247, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10001;
    max-width: 350px;
}

.toast.show {
    transform: translateX(0);
}

.toast-warning {
    border-color: rgba(245, 158, 11, 0.3);
}

.toast-warning i {
    color: #f59e0b;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}