        :root {
            --primary: #FF00FF;
            --primary-dark: #D600D6;
            --secondary: #00FFFF;
            --dark: #121212;
            --light: #FFFFFF;
            --gray: #333333;
            --gray-light: #444444;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--dark);
            color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            padding: 20px 0;
            position: fixed;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
            background-color: rgba(18, 18, 18, 0.8);
            backdrop-filter: blur(10px);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 28px;
            font-weight: 700;
            color: var(--light);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo span.neon {
            color: var(--primary);
            text-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary), 0 0 30px var(--primary);
        }
        
        .logo span.designer {
            color: var(--secondary);
            text-shadow: 0 0 10px var(--secondary), 0 0 20px var(--secondary), 0 0 30px var(--secondary);
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        
        nav a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        nav a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            transition: width 0.3s ease;
        }
        
        nav a:hover:after {
            width: 100%;
        }
        
        .cta-button {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: var(--dark);
            font-weight: 600;
            padding: 10px 25px;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(255, 0, 255, 0.3);
        }
        
    /* Hero Section */
    .hero {
        min-height: 100vh;
        background: radial-gradient(circle at center, #300030 0%, #120012 100%);
        position: relative;
        overflow: hidden;
        padding: 120px 0 40px 0; /* Üstte header için yeterli boşluk */
    }
    
    .hero:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('https://placehold.co/1920x1080/121212/121212.png?text=+');
        background-size: 40px 40px;
        opacity: 0.1;
        z-index: 1;
    }
    
	.hero-video-container {
		width: 100%;
		max-width: 1200px; /* 800px'den 1200px'e çıkarıldı */
		margin: 0 auto 30px;
		border-radius: 15px;
		overflow: hidden;
		box-shadow: 0 0 30px rgba(255, 0, 255, 0.3);
		border: 1px solid rgba(255, 255, 255, 0.1);
		position: relative;
	}

	.hero-video {
		width: 100%;
		display: block;
		border-radius: 15px;
	}

	/* Hero içeriğinin maksimum genişliğini de artıralım */
	.hero-content {
		text-align: center;
		position: relative;
		z-index: 10;
		max-width: 1000px; /* 800px'den 1200px'e çıkarıldı */
		margin: 0 auto;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
    
    .hero-title {
        font-size: 54px;
        font-weight: 800;
        margin-bottom: 30px;
        line-height: 1.2;
    }
    
    
    .hero-subtitle {
        font-size: 20px;
        font-weight: 300;
        margin-bottom: 40px;
        opacity: 0.8;
    }
    
    /* Responsive düzenlemeler */
    @media (max-width: 768px) {
        .hero {
            padding: 150px 20px 40px;
        }
        
        .hero-title {
            font-size: 36px;
        }
        
        .hero-subtitle {
            font-size: 18px;
        }
    }
        
        .glowing-text {
            position: relative;
        }
        
        .glow-1 {
            color: var(--primary);
            text-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary), 0 0 30px var(--primary);
        }
        
        .glow-2 {
            color: var(--secondary);
            text-shadow: 0 0 10px var(--secondary), 0 0 20px var(--secondary), 0 0 30px var(--secondary);
        }
        
        /* Features Section */
        .features {
            padding: 100px 0;
            background-color: #0A0A0A;
        }
        
        .section-title {
            text-align: center;
            font-size: 36px;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 100px;
            height: 3px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .feature-card {
            background-color: rgba(30, 30, 30, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 30px;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255, 0, 255, 0.1);
            border-color: rgba(255, 0, 255, 0.3);
        }
        
        .feature-icon {
            font-size: 48px;
            margin-bottom: 20px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .feature-title {
            font-size: 24px;
            margin-bottom: 15px;
        }
        
        .feature-description {
            font-size: 16px;
            opacity: 0.7;
        }
        
        /* Business Benefits Section */
        .business-benefits {
            padding: 100px 0;
            background-color: #0A0A0A;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }
        
        .benefit-card {
            background-color: rgba(30, 30, 30, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 30px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            transition: all 0.3s ease;
        }
        
        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255, 0, 255, 0.1);
            border-color: rgba(255, 0, 255, 0.3);
        }
        
        .benefit-icon {
            font-size: 40px;
            color: var(--primary);
        }
        
        .benefit-title {
            font-size: 22px;
            font-weight: 600;
        }
        
        .benefit-description {
            opacity: 0.7;
            font-size: 16px;
        }
        
        /* Features Showcase */
        .features-showcase {
            padding: 100px 0;
            background-color: #080808;
        }
        
        .showcase-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 50px;
        }
        
        .tab-button {
            padding: 12px 24px;
            background-color: rgba(30, 30, 30, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            color: var(--light);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .tab-button:hover, .tab-button.active {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: var(--dark);
            transform: translateY(-3px);
        }
        
        .tab-content {
            display: none;
        }
        
        .tab-content.active {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .tab-text {
            padding-right: 20px;
        }
        
        .tab-title {
            font-size: 28px;
            margin-bottom: 20px;
        }
        
        .tab-description {
            opacity: 0.8;
            margin-bottom: 25px;
        }
        
        .tab-points {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .tab-point {
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        
        .tab-point i {
            color: var(--primary);
        }
        
        .tab-video {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
            position: relative;
			width: 800px;
        }
        
        .tab-video:before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 15px;
            border: 2px solid transparent;
            background: linear-gradient(45deg, var(--primary), var(--secondary)) border-box;
            -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
            z-index: 10;
        }
        
        .tab-video video {
            width: 100%;
            display: block;
            border-radius: 15px;
        }

		.tab-image {
			width: 100%;
			display: block;
			border-radius: 15px;
			height: auto;
			object-fit: cover;
		}
        
        /* Pricing Section */
        .pricing {
            padding: 100px 0;
            background-color: #080808;
        }
        
        .pricing-description {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
            opacity: 0.8;
            font-size: 18px;
        }
        
        .pricing-cards-container {
            display: flex;
            justify-content: center;
            margin-top: 50px;
        }
        
        .pricing-card-special {
            background-color: rgba(30, 30, 30, 0.7);
            border: 2px solid transparent;
            border-radius: 2rem;
            padding: 3rem 2rem;
            position: relative;
            max-width: 500px;
            width: 100%;
            overflow: hidden;
            box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
            background-image: 
                linear-gradient(rgba(30, 30, 30, 0.7), rgba(30, 30, 30, 0.7)),
                linear-gradient(45deg, var(--primary), var(--secondary));
            background-clip: padding-box, border-box;
            background-origin: padding-box, border-box;
        }
        
        .pricing-card-special:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }
        
        .pricing-title {
            font-size: 28px;
            text-align: center;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
        }
        
		.pricing-price {
			text-align: center;
			margin-bottom: 30px;
			position: relative;
			padding-bottom: 15px;
		}

		.pricing-price .original-price {
			font-size: 28px;
			font-weight: 500;
			color: rgba(255, 255, 255, 0.6);
			text-decoration: line-through;
			position: relative;
			margin-right: 10px;
		}

		.pricing-price .price {
			font-size: 48px;
			font-weight: 700;
			color: white;
			text-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary);
		}

		.discount-badge {
			position: absolute;
			top: -15px;
			right: 60px;
			background: linear-gradient(45deg, #FF00FF, #FF6600);
			color: white;
			font-weight: bold;
			font-size: 14px;
			padding: 5px 10px;
			border-radius: 20px;
			box-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
			animation: pulse 2s infinite;
		}

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

		.pricing-period {
			display: block;
			font-size: 16px;
			opacity: 0.7;
			margin-top: 5px;
		}

		.countdown-container {
			margin-top: 15px;
			background-color: rgba(255, 0, 0, 0.3);
			border-radius: 10px;
			padding: 10px;
			border: 1px solid rgba(255, 255, 255, 0.1);
		}

		.countdown-text {
			font-size: 14px;
			margin-bottom: 5px;
			color: rgba(255, 255, 255, 0.8);
		}

		.countdown {
			display: flex;
			justify-content: center;
			gap: 10px;
		}

		.countdown-item {
			display: flex;
			flex-direction: column;
			align-items: center;
			min-width: 45px;
		}

		.countdown-item span:first-child {
			background: linear-gradient(180deg, rgba(255, 0, 255, 0.3), rgba(0, 255, 255, 0.3));
			border-radius: 5px;
			padding: 5px;
			font-size: 18px;
			font-weight: bold;
			width: 100%;
			text-align: center;
		}

		.countdown-item span:last-child {
			font-size: 12px;
			color: rgba(255, 255, 255, 0.7);
			margin-top: 3px;
		}
        
        .pricing-period {
            display: block;
            font-size: 16px;
            opacity: 0.7;
            margin-top: 5px;
        }
        
        .pricing-features-list {
            list-style-type: none;
            padding: 0;
            margin: 0 0 30px;
            text-align: center;
        }
        
        .pricing-features-list li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .pricing-features-list li:before {
            content: '✓';
            color: var(--primary);
            font-weight: bold;
        }
        
        .pricing-button {
            display: block;
            width: 80%;
            margin: 0 auto;
            padding: 14px;
            text-align: center;
            text-decoration: none;
            border-radius: 50px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--dark);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .pricing-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 0, 255, 0.3);
        }
        
        /* FAQ Section */
        .faq {
            padding: 100px 0;
            background-color: #0A0A0A;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background-color: rgba(30, 30, 30, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 20px;
        }
        
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 18px;
        }
        
        .faq-question i {
            transition: all 0.3s ease;
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            opacity: 0;
        }
        
        .faq-item.active .faq-answer {
            padding: 0 20px 20px;
            max-height: 1000px;
            opacity: 0.8;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: radial-gradient(circle at center, #300030 0%, #120012 100%);
            text-align: center;
        }
        
        .cta-title {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .cta-description {
            max-width: 600px;
            margin: 0 auto 40px;
            font-size: 18px;
            opacity: 0.8;
        }
        
        /* Contact Form */
        .contact-form-container {
            max-width: 500px;
            margin: 50px auto 0;
            background-color: rgba(30, 30, 30, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 40px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .form-input {
            width: 100%;
            padding: 12px 15px;
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: var(--light);
            font-family: 'Poppins', sans-serif;
        }
        
        .form-input:focus {
            outline: none;
            border-color: var(--primary);
        }
        
        .form-textarea {
            height: 120px;
            resize: none;
        }
        
        .form-button {
            width: 100%;
            padding: 12px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            border: none;
            border-radius: 8px;
            color: var(--dark);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .form-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(255, 0, 255, 0.3);
        }
        
        /* Footer */
        footer {
            padding: 60px 0;
            background-color: #050505;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
        }
        
        .footer-logo {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
            display: block;
        }
        
        .footer-description {
            opacity: 0.7;
            max-width: 300px;
            margin-bottom: 20px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--gray);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
			color:green;
        }
        
        .social-icon:hover {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            transform: translateY(-3px);
        }
        
        .footer-title {
            font-size: 18px;
            margin-bottom: 20px;
            position: relative;
        }
        
        .footer-title:after {
            content: '';
            position: absolute;
            width: 30px;
            height: 2px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            bottom: -10px;
            left: 0;
        }
        
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .footer-links a {
            color: var(--light);
            opacity: 0.7;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            opacity: 1;
            color: var(--primary);
        }
        
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 40px;
            opacity: 0.5;
        }
        
        /* Responsive */
        @media (max-width: 768px) {            
            .tab-content.active {
                grid-template-columns: 1fr;
            }
            
            nav ul {
                display: none;
            }
            
            .pricing-card-special {
                padding: 2rem 1rem;
            }
            
            .pricing-title {
                font-size: 24px;
            }
            
            .pricing-button {
                width: 100%;
            }
        }


/* Mobil cihazlar için responsive ayarlar */
@media (max-width: 768px) {
    .pricing-price {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        padding-top: 25px; /* İndirim badge'i için üstte boşluk */
    }
    
    .pricing-price .original-price {
        font-size: 22px;
        margin-right: 0;
        margin-bottom: 5px;
    }
    
    .pricing-price .price {
        font-size: 36px;
    }
    
    .discount-badge {
        position: absolute;
        top: -10px;
        right: auto; /* Sağ kenardan konumlandırmayı kaldır */
        font-size: 12px;
        padding: 4px 8px;
    }
    
    .countdown-container {
        width: 100%;
        margin-top: 15px;
        padding: 8px;
    }
    
    .countdown {
        gap: 5px;
    }
    
    .countdown-item {
        min-width: 40px;
    }
    
    .countdown-item span:first-child {
        font-size: 16px;
        padding: 4px;
    }
    
    .countdown-item span:last-child {
        font-size: 10px;
    }
    
    .countdown-text {
        font-size: 12px;
    }
}

/* Daha küçük mobil cihazlar için ek düzenlemeler */
@media (max-width: 375px) {
    .pricing-price .original-price {
        font-size: 18px;
    }
    
    .pricing-price .price {
        font-size: 30px;
    }
    
    .countdown-item {
        min-width: 35px;
    }
    
    .countdown-item span:first-child {
        font-size: 14px;
    }
    
    .countdown-item span:last-child {
        font-size: 9px;
    }
}
        
        /* Neon glow animations */
        @keyframes neonFlicker {
            0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
                text-shadow: 0 0 5px var(--primary), 0 0 10px var(--primary), 0 0 20px var(--primary);
            }
            20%, 24%, 55% {
                text-shadow: none;
            }
        }
        
        .flicker {
            animation: neonFlicker 4s infinite alternate;
        }


@media (max-width: 768px) {
    .tab-content.active {
        grid-template-columns: 1fr; /* Mobilde tek kolon */
        gap: 20px;
    }
    
    .tab-video {
        order: 2; /* Mobilde metin içeriğinin altına yerleştir */
        width: 100%;
        max-width: 100%;
    }
    
    .tab-text {
        order: 1; /* Mobilde metin içeriğini üste yerleştir */
        padding-right: 0;
    }
    
    .hero-video-container, .tab-video {
        max-height: 60vh; /* Ekran yüksekliğinin %60'ı ile sınırla */
    }
}


/* Then add these styles to your CSS */
.ar-video {
    width: 350px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .ar-video {
        width: 100%; /* Make it responsive on mobile */
        margin: 0;   /* Remove margin on mobile */
    }
    
    /* Ensure the tab content properly aligns items */
    #ar-onizleme.tab-content.active {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    #ar-onizleme .tab-text {
        width: 100%;
        order: 1;
    }
    
    #ar-onizleme .tab-video {
        width: 80%;
        max-width: 300px;
        order: 2;
    }
}