:root {
    --primary: #6d28d9;
    --primary-light: #8b5cf6;
    --secondary: #ec4899;
    --dark: #0a0a0f;
    --darker: #121218;
    --light: #f0f0f0;
    --gray: #71717a;
    --gray-light: #a1a1aa;
    --neon-glow: 0 0 10px rgba(109, 40, 217, 0.5);
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-hover: linear-gradient(135deg, #5b21b6 0%, #7c3aed 100%);
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 12px;
    --radius-sm: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    transition: var(--transition);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    background-color: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(109, 40, 217, 0.1);
    transition: var(--transition);
}

.site-header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.logo-link img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: var(--transition);
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    flex-direction: column;
    gap: 5px;
}

.menu-line {
    width: 24px;
    height: 2px;
    background: var(--light);
    transition: var(--transition);
}

.mobile-menu-toggle.active .menu-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active .menu-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .menu-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-link {
    position: relative;
    padding: 5px 0;
    font-weight: 500;
    font-size: 15px;
    color: var(--gray-light);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--light);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.working-hours {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray);
}

.contact-btn {
    padding: 8px 15px;
    background: var(--gradient);
    color: white;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: var(--neon-glow);
}

.contact-btn:hover {
    background: var(--gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(109, 40, 217, 0.7);
}

/* Hero Slider */
.hero-slider {
    margin-top: 90px;
    height: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 var(--radius) var(--radius);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 10, 15, 0.7) 0%, rgba(10, 10, 15, 0.3) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    padding: 0 5%;
    max-width: 600px;
}

.slide-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--light);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.slide-description {
    font-size: 18px;
    color: var(--gray-light);
    margin-bottom: 25px;
    line-height: 1.5;
}

.slide-btn {
    display: inline-block;
    padding: 12px 25px;
    background: var(--gradient);
    color: white;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--neon-glow);
}

.slide-btn:hover {
    background: var(--gradient-hover);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(109, 40, 217, 0.7);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(10, 10, 15, 0.7);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.slider-nav:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--neon-glow);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
    box-shadow: 0 0 10px var(--primary);
}

/* Product Categories */
.product-categories {
    padding: 60px 0 30px;
    background: var(--darker);
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: var(--light);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
}

.section-subtitle {
    color: var(--gray-light);
    margin-top: 10px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.category-tab {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--light);
    border-radius: var(--radius-sm);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-tab:hover, .category-tab.active {
    background: var(--gradient);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--neon-glow);
}

/* Products Grid */
.products-section {
    padding: 50px 0;
    background: var(--dark);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    display: none;
}

.products-grid.active {
    display: grid;
}

.product-card {
    background: var(--darker);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(109, 40, 217, 0.1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.product-image {
    height: 180px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0.2);
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--light);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.current-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-light);
}

.original-price {
    font-size: 14px;
    color: var(--gray);
    text-decoration: line-through;
}

.order-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--neon-glow);
}

.order-btn:hover {
    background: var(--gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(109, 40, 217, 0.7);
}

.order-btn:disabled {
    background: var(--gray);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Payment Section */
.payment-section {
    padding: 80px 0;
    background: var(--darker);
}

.payment-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.payment-step {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid rgba(109, 40, 217, 0.1);
}

.payment-step:hover {
    transform: translateY(-5px);
    background: rgba(109, 40, 217, 0.1);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    font-size: 24px;
    box-shadow: var(--neon-glow);
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--light);
}

.step-description {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.6;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid rgba(109, 40, 217, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(109, 40, 217, 0.1);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    font-size: 24px;
    box-shadow: var(--neon-glow);
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--light);
}

.feature-description {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.6;
}

/* Footer */
.site-footer {
    background: var(--darker);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(109, 40, 217, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--light);
    position: relative;
    padding-bottom: 10px;
}
.footer-title-logo {
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gradient);
}

.footer-text {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-light);
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--light);
    transform: translateX(5px);
}

.contact-list {
    list-style: none;
}

.contact-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-light);
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transition: var(--transition);
    font-size: 18px;
    color: var(--gray-light);
}

.footer-social a:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--neon-glow);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(109, 40, 217, 0.1);
}

.copyright {
    font-size: 13px;
    color: var(--gray);
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    border-radius: 50px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    background: #128C7E;
}

.whatsapp-button i {
    font-size: 24px;
}

.whatsapp-tooltip {
    display: none;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.whatsapp-button:hover .whatsapp-tooltip {
    display: inline-block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(10px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Loading Animation */
#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark);
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader {
    width: 48px;
    height: 48px;
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

.loader::after {
    content: '';  
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-bottom-color: var(--primary-light);
}

@keyframes rotation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* About Page Specific Styles */
.about-hero {
    background: linear-gradient(rgba(10, 10, 15, 0.9), rgba(10, 10, 15, 0.9)), 
                url('photos/about-bg.webp') no-repeat center center/cover;
    height: 300px;
    display: flex;
    align-items: center;
    margin-top: 90px;
    text-align: center;
}

.about-content-section {
    padding: 80px 0;
    background: var(--dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text {
    padding-right: 30px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--gray-light);
    line-height: 1.8;
}

.about-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 500px;
}

.about-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient);
    color: white;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.experience-badge span {
    font-size: 32px;
    line-height: 1;
}

.experience-badge small {
    font-size: 14px;
    font-weight: 500;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.mission, .vision {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary);
}

.mission h3, .vision h3 {
    font-size: 18px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--light);
}

.mission p, .vision p {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.6;
}

.stats-section {
    padding: 60px 0;
    background: var(--gradient);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-card {
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.testimonials-section {
    padding: 80px 0;
    background: var(--darker);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--dark);
    padding: 30px;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid rgba(109, 40, 217, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.rating {
    color: #fbbf24;
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--gray-light);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

.author-info h4 {
    font-size: 16px;
    color: var(--light);
    margin-bottom: 5px;
}

.author-info small {
    font-size: 13px;
    color: var(--gray);
}

.faq-section {
    padding: 80px 0;
    background: var(--dark);
}

.faq-grid {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--darker);
    border: 1px solid rgba(109, 40, 217, 0.1);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--light);
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question {
    background: rgba(109, 40, 217, 0.1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 20px;
}

.faq-answer p {
    color: var(--gray-light);
    line-height: 1.6;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(rgba(10, 10, 15, 0.9), rgba(10, 10, 15, 0.9)), 
                url('photos/cta-bg.webp') no-repeat center center/cover;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--gray-light);
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--gradient);
    color: white;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--neon-glow);
}

.cta-button:hover {
    background: var(--gradient-hover);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(109, 40, 217, 0.7);
}

/* Special Offers Page Styles */
.special-offers-hero {
    background: linear-gradient(rgba(10, 10, 15, 0.9), rgba(10, 10, 15, 0.9)), 
                url('photos/special-offers-bg.webp') no-repeat center center/cover;
    height: 300px;
    display: flex;
    align-items: center;
    margin-top: 90px;
    text-align: center;
}

.offer-card {
    background: rgba(30, 30, 40, 0.8);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(109, 40, 217, 0.3);
    position: relative;
    margin-bottom: 30px;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--neon-glow);
    border-color: var(--primary);
}

.offer-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary);
    color: white;
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    z-index: 2;
}

.offer-content {
    padding: 20px;
    text-align: center;
}

.offer-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--light);
}

.offer-description {
    color: var(--gray-light);
    margin-bottom: 15px;
    font-size: 14px;
}

.offer-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 15px;
}

.offer-original-price {
    text-decoration: line-through;
    color: var(--gray);
    font-size: 18px;
    margin-right: 10px;
}

.offer-countdown {
    font-size: 16px;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 600;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Payment Card Page Styles */
.payment-card-section {
    padding: 80px 0;
    background: var(--darker);
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
}

.payment-card-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
    width: 100%;
}

.card-display {
    position: relative;
    height: 220px;
    margin-bottom: 30px;
    perspective: 1000px;
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--gradient);
    transition: transform 0.6s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-back {
    background: linear-gradient(135deg, #4c1d95 0%, #5b21b6 100%);
    transform: rotateY(180deg);
}

.card-display:hover .card-front {
    transform: rotateY(180deg);
}

.card-display:hover .card-back {
    transform: rotateY(0deg);
}

.card-logo {
    text-align: left;
    font-size: 24px;
    color: white;
}

.card-number {
    font-family: 'Courier New', monospace;
    font-size: 22px;
    letter-spacing: 2px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin: 20px 0;
}

.card-details {
    display: flex;
    justify-content: space-between;
    color: white;
    font-size: 14px;
}

.card-holder, .card-expiry {
    text-align: left;
}

.card-cvv {
    background: white;
    color: var(--dark);
    padding: 5px 10px;
    border-radius: 4px;
    margin-top: 20px;
    align-self: flex-end;
}

.card-magnetic {
    height: 40px;
    background: rgba(0, 0, 0, 0.3);
    margin-top: 20px;
}

.card-cvv-label {
    text-align: right;
    color: white;
    font-size: 12px;
    margin-bottom: 5px;
}

.payment-instructions {
    margin-top: 30px;
    color: var(--gray-light);
    font-size: 14px;
    line-height: 1.6;
}

.copy-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.copy-btn {
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--primary);
    color: var(--light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
}

.copy-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--neon-glow);
}

.info-box {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--primary);
    padding: 15px;
    border-radius: var(--radius-sm);
    margin-top: 30px;
}

.info-box p {
    margin-bottom: 10px;
    color: var(--gray-light);
}

.info-box p:last-child {
    margin-bottom: 0;
}

.notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.notification.show {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-slider {
        height: 400px;
    }
    
    .slide-title {
        font-size: 36px;
    }
    
    .slide-description {
        font-size: 16px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .about-image {
        height: 300px;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-right {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--darker);
        flex-direction: column;
        padding: 100px 30px 30px;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }
    
    .header-right.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .header-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .contact-btn {
        width: 100%;
        text-align: center;
    }
    
    .hero-slider {
        height: 350px;
        margin-top: 80px;
    }
    
    .slide-title {
        font-size: 28px;
    }
    
    .slide-description {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 300px;
    }
    
    .slide-title {
        font-size: 24px;
    }
    
    .category-tabs {
        gap: 8px;
    }
    
    .category-tab {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 26px;
    }
    
    .cta-subtitle {
        font-size: 16px;
    }
    
    .cta-button {
        padding: 12px 25px;
    }
    
    .whatsapp-button {
        right: 15px;
        bottom: 15px;
    }
    
    .whatsapp-tooltip {
        display: none !important;
    }
    
    .copy-buttons {
        grid-template-columns: 1fr;
    }
    
    .card-number {
        font-size: 18px;
    }
}

/* Reklam Bannerı Stilleri */
.ad-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #6d28d9 0%, #4c1d95 100%);
    color: white;
    padding: 15px;
    z-index: 9999;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.5s ease;
    display: flex;
    justify-content: center;
}

.ad-banner.show {
    transform: translateY(0);
}

.ad-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    position: relative;
}

.ad-close {
    position: absolute;
    top: -10px;
    right: 0;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ad-close:hover {
    color: #ec4899;
}

.ad-banner h3 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}

.ad-banner p {
    font-size: 14px;
    margin-bottom: 0;
}

.ad-button {
    padding: 8px 20px;
    background: white;
    color: #6d28d9;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-left: 20px;
}

.ad-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .ad-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .ad-button {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .ad-close {
        top: 5px;
        right: 5px;
    }
}


/* ==================== */
/* MOBILE RESPONSIVE CSS */
/* ==================== */

@media (max-width: 992px) {
    /* Tablet and smaller devices */
    .hero-slider {
        height: 400px;
    }
    
    .slide-title {
        font-size: 36px;
    }
    
    .slide-description {
        font-size: 16px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .about-image {
        height: 300px;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Mobile menu adjustments */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-right {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--darker);
        flex-direction: column;
        padding: 100px 30px 30px;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }
    
    .header-right.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .header-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .contact-btn {
        width: 100%;
        text-align: center;
    }
    
    /* Hero section */
    .hero-slider {
        height: 350px;
        margin-top: 80px;
    }
    
    .slide-title {
        font-size: 28px;
    }
    
    .slide-description {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    /* Stats grid */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* WhatsApp button */
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    /* Small mobile devices */
    .hero-slider {
        height: 300px;
    }
    
    .slide-title {
        font-size: 24px;
    }
    
    /* Category tabs */
    .category-tabs {
        gap: 8px;
    }
    
    .category-tab {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    /* Products grid */
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    /* Stats grid */
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    /* CTA section */
    .cta-title {
        font-size: 26px;
    }
    
    .cta-subtitle {
        font-size: 16px;
    }
    
    .cta-button {
        padding: 12px 25px;
    }
    
    /* WhatsApp button */
    .whatsapp-button {
        right: 15px;
        bottom: 15px;
    }
    
    .whatsapp-tooltip {
        display: none !important;
    }
    
    /* Payment copy buttons */
    .copy-buttons {
        grid-template-columns: 1fr;
    }
    
    /* Card number */
    .card-number {
        font-size: 18px;
    }
}

/* Special mobile touch adjustments */
@media (hover: none) {
    /* Remove hover effects on touch devices */
    .nav-link:hover::after, 
    .nav-link.active::after {
        width: 0;
    }
    
    .category-tab:hover, 
    .category-tab.active {
        transform: none;
    }
    
    .product-card:hover {
        transform: none;
        box-shadow: none;
    }
    
    .order-btn:hover,
    .contact-btn:hover,
    .slide-btn:hover,
    .cta-button:hover {
        transform: none;
        box-shadow: var(--neon-glow);
    }
    
    /* Increase tap targets */
    .nav-link, 
    .category-tab,
    .order-btn,
    .slide-btn {
        min-height: 10px;
        align-items: center;
        justify-content: center;
    }
}

/* Mobile-specific utility classes */
.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }
    
    .desktop-only {
        display: none;
    }
}

/* Form input mobile optimization */
@media (max-width: 768px) {
    input, 
    select, 
    textarea {
        font-size: 16px !important;
        min-height: 44px;
    }
    
    button, 
    .button {
        min-height: 44px;
        padding: 12px 20px;
    }
}

/* Prevent zoom on input focus */
@media (max-width: 768px) {
    input, 
    select, 
    textarea {
        font-size: 16px;
    }
}

/* Mobile image optimization */
@media (max-width: 768px) {
    img {
        max-width: 100%;
        height: auto;
    }
    
    .product-image {
        height: 150px;
    }
    
    .offer-image {
        height: 180px;
    }
}

/* salam */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-list li {
        justify-content: center;
    }
}


/* Mobil Menü Stilleri */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--darker);
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav a {
    color: var(--light);
    font-weight: 500;
    padding: 10px;
    display: block;
    transition: var(--transition);
    border-radius: var(--radius-sm);
}

.mobile-nav a:hover,
.mobile-nav a.active {
    background: rgba(109, 40, 217, 0.2);
    color: var(--primary-light);
}

@media (min-width: 769px) {
    .mobile-menu {
        display: none;
    }
}

/* Slider MObil Üçün */

/* main.min.css dosyasına ekleyin veya ilgili medya sorgularını güncelleyin */

@media (max-width: 768px) {
    /* Hero Slider mobil ayarları */
    .hero-slider {
        height: 250px; /* Daha küçük bir yükseklik */
        margin-top: 70px; /* Header yüksekliğine göre ayar */
    }
    
    .slide {
        background-size: contain; /* Resmin tamamını göster */
        background-position: center center; /* Resmi ortala */
    }
    
    .slide::before {
        background: linear-gradient(90deg, rgba(10, 10, 15, 0.9) 0%, rgba(10, 10, 15, 0.7) 100%); /* Daha koyu arka plan */
    }
    
    .slide-content {
        padding: 0 20px; /* Daha az yatay padding */
        max-width: 100%; /* Tam genişlik */
    }
    
    .slide-title {
        font-size: 22px; /* Daha küçük başlık */
        margin-bottom: 10px;
    }
    
    .slide-description {
        font-size: 14px; /* Daha küçük açıklama */
        margin-bottom: 15px;
    }
    
    .slide-btn {
        padding: 6px 12px !important;   /* Daha kiçik padding */
        font-size: 12px !important;     /* Daha kiçik yazı ölçüsü */
        border-radius: 4px;             /* Daha kiçik radius */
        margin-top: 5px;                /* Yuxarıdakı elementlərdən boşluq */
    }
    
    /* Slider navigasyon butonları */
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .prev {
        left: 10px;
    }
    
    .next {
        right: 10px;
    }
    
    /* Slider noktaları */
    .slider-dots {
        bottom: 10px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    /* Çok küçük ekranlar için ek ayarlar */
    .hero-slider {
        height: 200px;
    }
    
    .slide-title {
        font-size: 18px;
    }
    
    .slide-description {
        font-size: 12px;
    }
    
    .slide-btn {
        padding: 5px 10px !important;   /* Çox kiçik ekranlar üçün daha da kiçik */
        font-size: 11px !important;
    }
}

    /* mobil indi al sözü */

/* main.min.css dosyasına ekleyin veya güncelleyin */

@media (max-width: 768px) {
    /* Hero Slider mobil ayarları */
    .hero-slider {
        height: 220px; /* Daha kompakt bir yükseklik */
        margin-top: 70px;
    }
    
    .slide-content {
        padding: 0 15px;
        max-width: 90%; /* Daha dar içerik alanı */
    }
    
    .slide-title {
        font-size: 18px; /* Küçültülmüş başlık */
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .slide-description {
        font-size: 12px !important; /* Küçültülmüş açıklama */
        margin-bottom: 12px;
        line-height: 1.4;
    }
    
    .slide-btn {
        padding: 6px 12px !important;   /* Daha kiçik padding */
        font-size: 12px !important;     /* Daha kiçik yazı ölçüsü */
        border-radius: 4px;             /* Daha kiçik radius */
        margin-top: 5px;                /* Yuxarıdakı elementlərdən boşluq */
    }
    
    /* Arkaplan overlay'ı güçlendiriyoruz */
    .slide::before {
        background: linear-gradient(90deg, rgba(10,10,15,0.95) 0%, rgba(10,10,15,0.7) 100%);
    }
}

@media (max-width: 480px) {
    /* Çok küçük ekranlar için ek ince ayarlar */
    .hero-slider {
        height: 180px;
    }
    
    .slide-title {
        font-size: 16px;
        margin-bottom: 5px;
    }
    
    .slide-description {
        font-size: 11px !important;
        margin-bottom: 10px;
    }
    
    .slide-btn {
        padding: 5px 10px !important;   /* Çox kiçik ekranlar üçün daha da kiçik */
        font-size: 11px !important;
    }
    
    /* Slider navigasyon butonlarını küçültme */
    .slider-nav {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}

/* Turnir */


/* ==================== */
/* TOURNAMENT PAGE STYLES */
/* ==================== */

.tournament-page {
    background-color: #0a0a0f;
    color: #fff;
    overflow-x: hidden;
}

/* Loading Screen */
#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0f;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.loader-circle {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(109, 40, 217, 0.2);
    border-top-color: #6d28d9;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    color: #6d28d9;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Tournament Hero Section */
.tournament-hero {
    position: relative;
    padding: 120px 0;
    margin-top: 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a0a2e 0%, #0a0a0f 100%);
}

.tournament-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: "Goldman", sans-serif;
    font-weight: 700;
    font-size: 64px;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero-title .title-part {
    display: block;
    background: linear-gradient(90deg, #fff 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title .title-part:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-button {
    display: inline-block;
    position: relative;
    padding: 15px 30px;
    background: linear-gradient(135deg, #6d28d9 0%, #8b5cf6 100%);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(109, 40, 217, 0.3);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.hero-button .button-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(109, 40, 217, 0.5);
}

.hero-button:hover .button-hover {
    opacity: 1;
}

.hero-image {
    position: relative;
    width: 400px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    animation: scaleIn 0.8s ease 0.8s forwards;
}

.game-icon {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 20px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.5));
    transition: all 0.5s ease;
}

.game-icon.pubg {
    background-image: url('photos/pubg.ico');
    top: 0;
    left: 0;
    animation: float 6s ease-in-out infinite;
}

.game-icon.freefire {
    background-image: url('photos/freefire.ico');
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation: float 6s ease-in-out 1s infinite;
}

.game-icon.valorant {
    background-image: url('photos/valorant.ico');
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: float 6s ease-in-out 2s infinite;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-particles::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(109, 40, 217, 0.1) 0%, transparent 70%);
    animation: rotate 60s linear infinite;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: "Goldman", sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #fff;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    position: relative;
    text-transform: uppercase;
}

.title-decor {
    display: inline-block;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #6d28d9, #8b5cf6);
    margin: 0 20px;
}

.section-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin: 0 auto;
}

/* Tournament Grid */
.tournament-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.tournament-card {
    position: relative;
    background: linear-gradient(135deg, rgba(30, 30, 40, 0.8) 0%, rgba(10, 10, 15, 0.9) 100%);
    border-radius: 15px;
    overflow: hidden;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
    border: 1px solid rgba(109, 40, 217, 0.2);
    opacity: 0;
    transform: translateY(50px);
}

.tournament-card.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease;
}

.tournament-card:nth-child(1) { transition-delay: 0.1s; }
.tournament-card:nth-child(2) { transition-delay: 0.2s; }

.tournament-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(109, 40, 217, 0.4);
    border-color: #6d28d9;
}

.tournament-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.tournament-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(109, 40, 217, 0.2), rgba(10, 10, 15, 0.7));
}

.tournament-content {
    position: relative;
    z-index: 2;
}

.tournament-game {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.tournament-game img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.tournament-game span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.tournament-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    line-height: 1.3;
}

.tournament-prize {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #fbbf24;
    font-weight: 600;
}

.tournament-prize i {
    font-size: 18px;
}

.tournament-details {
    margin-bottom: 25px;
}

.detail {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.detail i {
    width: 20px;
    color: #8b5cf6;
    text-align: center;
}

.tournament-actions {
    display: flex;
    gap: 15px;
}

.btn-primary, .btn-secondary {
    position: relative;
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, #6d28d9 0%, #8b5cf6 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(109, 40, 217, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid #6d28d9;
}

.btn-primary .button-hover,
.btn-secondary .button-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.btn-secondary .button-hover {
    background: rgba(109, 40, 217, 0.2);
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-3px);
}

.btn-primary:hover .button-hover,
.btn-secondary:hover .button-hover {
    opacity: 1;
}

.card-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border-width: 2px;
    border-style: solid;
    border-color: transparent;
    transition: all 0.5s ease;
}

.card-corner.top-left {
    top: 0;
    left: 0;
    border-top-color: #6d28d9;
    border-left-color: #6d28d9;
    border-top-left-radius: 15px;
}

.card-corner.top-right {
    top: 0;
    right: 0;
    border-top-color: #6d28d9;
    border-right-color: #6d28d9;
    border-top-right-radius: 15px;
}

.card-corner.bottom-left {
    bottom: 0;
    left: 0;
    border-bottom-color: #6d28d9;
    border-left-color: #6d28d9;
    border-bottom-left-radius: 15px;
}

.card-corner.bottom-right {
    bottom: 0;
    right: 0;
    border-bottom-color: #6d28d9;
    border-right-color: #6d28d9;
    border-bottom-right-radius: 15px;
}

.tournament-card:hover .card-corner {
    width: 50px;
    height: 50px;
}

/* Upcoming Tournament Card */
.tournament-card.upcoming {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 30, 40, 0.5) 0%, rgba(10, 10, 15, 0.7) 100%);
    border: 1px dashed rgba(109, 40, 217, 0.5);
}

.upcoming-overlay {
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.upcoming-overlay h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 700;
}

.upcoming-overlay p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.pulse-animation {
    width: 60px;
    height: 60px;
    background: rgba(109, 40, 217, 0.2);
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
}

.pulse-animation::before,
.pulse-animation::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(109, 40, 217, 0.2);
    animation: pulse 2s infinite;
}

.pulse-animation::after {
    animation-delay: 0.5s;
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Past Winners Section */
.past-winners {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a0a2e 100%);
    position: relative;
    overflow: hidden;
}

.winners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.winner-card {
    background: linear-gradient(135deg, rgba(30, 30, 40, 0.8) 0%, rgba(10, 10, 15, 0.9) 100%);
    border-radius: 15px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(109, 40, 217, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(50px);
}

.winner-card.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease;
}

.winner-card:nth-child(1) { transition-delay: 0.1s; }
.winner-card:nth-child(2) { transition-delay: 0.2s; }

.winner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(109, 40, 217, 0.4);
    border-color: #6d28d9;
}

.winner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(109, 40, 217, 0.2);
}

.winner-header h3 {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
}

.winner-badge {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #0a0a0f;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.winner-team, .winner-player {
    text-align: center;
    margin-bottom: 20px;
}

.winner-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    position: relative;
}

.winner-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #6d28d9;
}

.trophy-animation {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0f;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
    animation: bounce 2s infinite;
}

.winner-team h4, .winner-player h4 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 5px;
    font-weight: 600;
}

.winner-team p, .winner-player p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.winner-prize {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fbbf24;
    font-weight: 600;
    font-size: 18px;
}

.winner-prize i {
    font-size: 20px;
}

.winner-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(109, 40, 217, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: -1;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #0a0a0f;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(109, 40, 217, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
    z-index: -1;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, rgba(30, 30, 40, 0.8) 0%, rgba(10, 10, 15, 0.9) 100%);
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid rgba(109, 40, 217, 0.2);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.faq-item.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease;
}

.faq-item:nth-child(1) { transition-delay: 0.1s; }
.faq-item:nth-child(2) { transition-delay: 0.2s; }
.faq-item:nth-child(3) { transition-delay: 0.3s; }

.faq-item:hover {
    border-color: #6d28d9;
    box-shadow: 0 8px 25px rgba(109, 40, 217, 0.3);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-right: 15px;
}

.faq-question i {
    color: #8b5cf6;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    background: rgba(109, 40, 217, 0.1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 20px 20px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a0a2e 0%, #0a0a0f 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.3;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    position: relative;
    padding: 15px 30px;
    background: linear-gradient(135deg, #6d28d9 0%, #8b5cf6 100%);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(109, 40, 217, 0.3);
}

.cta-button .button-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(109, 40, 217, 0.5);
}

.cta-button:hover .button-hover {
    opacity: 1;
}

.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.cta-particles::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(109, 40, 217, 0.1) 0%, transparent 70%);
    animation: rotate 60s linear infinite reverse;
}

/* Modal Styling */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: linear-gradient(135deg, rgba(30, 30, 40, 0.95) 0%, rgba(10, 10, 15, 0.98) 100%);
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid #6d28d9;
    box-shadow: 0 15px 50px rgba(109, 40, 217, 0.5);
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: #ec4899;
    background: rgba(255, 255, 255, 0.1);
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.modal-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #6d28d9, #8b5cf6);
    border-radius: 3px;
}

.modal-rules {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 30px;
}

.modal-rules ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.modal-rules li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.modal-rules li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #8b5cf6;
    border-radius: 50%;
}

.modal-footer {
    text-align: center;
}

.modal-button {
    position: relative;
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #6d28d9 0%, #8b5cf6 100%);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(109, 40, 217, 0.3);
    border: none;
    cursor: pointer;
}

.modal-button .button-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.modal-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(109, 40, 217, 0.5);
}

.modal-button:hover .button-hover {
    opacity: 1;
}

/* Countdown Styles */
.countdown-container {
    margin-top: 8px;
}

.countdown {
    display: inline-block;
    background: linear-gradient(135deg, #6e48aa 0%, #9d50bb 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    animation: pulse 2s infinite;
}

.countdown.active {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.countdown.ended {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.countdown.started {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .tournament-hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 50px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-image {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .tournament-grid {
        grid-template-columns: 1fr;
    }
    
    .winners-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-button, .cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .tournament-actions {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
    }
    
    .modal-title {
        font-size: 20px;
    }
    
    .modal-content {
        padding: 20px;
    }
}

.btn-primary[disabled] {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}

/* Əlavə CSS */
.btn-primary.disabled {
    background-color: #6c757d !important;
    cursor: not-allowed !important;
    opacity: 0.7 !important;
}

.btn-primary.disabled span {
    color: #e9ecef !important;
}

.countdown.ended {
    color: #dc3545;
}

.countdown.started {
    color: #28a745;
}

.countdown.active {
    color: #17a2b8;
}

/* Deaktiv düymə üçün stil */
.btn-primary.disabled {
    background-color: #6c757d !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    opacity: 0.7 !important;
}

.btn-primary.disabled span {
    color: #e9ecef !important;
}

.btn-primary.disabled .hover-effect {
    display: none !important;
}

