/* ===== GLOBAL STYLES ===== */
:root {
    --primary-color: #ff0000;
    --secondary-color: #990000;
    --dark-color: #121212;
    --darker-color: #0a0a0a;
    --light-color: #f4f4f4;
    --gray-color: #888;
    --success-color: #4caf50;
    --gradient-primary: linear-gradient(135deg, #ff0000, #990000);
    --gradient-dark: linear-gradient(135deg, #000000, #1a0000);
    --glow-primary: 0 0 15px rgba(255, 0, 0, 0.8);
    --glow-secondary: 0 0 15px rgba(153, 0, 0, 0.8);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--gradient-dark);
    color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

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

section {
    padding: 80px 0;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--light-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--light-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.underline {
    height: 3px;
    width: 80px;
    background: var(--gradient-primary);
    margin: 0 auto;
    position: relative;
    border-radius: 3px;
    z-index: 1;
}

.underline::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    filter: blur(5px);
    border-radius: 3px;
}

.section-description {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 1.1rem;
    color: #ccc;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--glow-primary), 0 4px 15px rgba(255, 0, 0, 0.4);
    border-bottom: 3px solid var(--secondary-color);
}

.btn-primary:hover {
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.9), 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.btn-primary:active {
    transform: translateY(1px);
    border-bottom-width: 1px;
}

.btn-secondary {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 0, 0, 0.2);
    box-shadow: var(--glow-primary), 0 6px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

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

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-outline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, rgba(255, 0, 0, 0.1), transparent);
    transition: height 0.3s ease;
    z-index: -1;
}

.btn-outline:hover {
    background: rgba(255, 0, 0, 0.05);
    box-shadow: var(--glow-primary), 0 6px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
    color: white;
}

.btn-outline:hover::after {
    height: 100%;
}

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

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

.btn.disabled:hover {
    transform: none;
    box-shadow: none;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid transparent;
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: relative;
}

.loader::before, .loader::after {
    content: '';
    position: absolute;
    border: 3px solid transparent;
    border-radius: 50%;
}

.loader::before {
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-top-color: var(--secondary-color);
    animation: spin 1.5s linear infinite;
}

.loader::after {
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-top-color: var(--primary-color);
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    transition: var(--transition);
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    text-shadow: var(--glow-primary);
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 500;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 30px;
    height: 3px;
    background-color: var(--light-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 176, 255, 0.1) 0%, rgba(10, 10, 10, 0) 70%);
    z-index: -1;
}

.hero-content {
    max-width: 600px;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff0000, #990000);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
}

.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccc;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 50%;
    height: 80%;
    z-index: 0;
}

.ai-glow {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translate(0, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.2) 0%, rgba(153, 0, 0, 0.1) 50%, rgba(10, 10, 10, 0) 70%);
    border-radius: 50%;
    filter: blur(30px);
    animation: pulse 4s infinite alternate;
}

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

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: rgba(10, 10, 10, 0.5);
    position: relative;
}

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

.feature-card {
    background: rgba(20, 20, 20, 0.5);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 176, 255, 0.1), rgba(123, 31, 162, 0.1));
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
    border-color: rgba(0, 176, 255, 0.3);
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    box-shadow: var(--glow-primary);
}

.feature-icon i {
    font-size: 30px;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-card p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 10px;
    text-align: center;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 30%, rgba(255, 0, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    perspective: 1000px;
}

.pricing-card {
    background: rgba(20, 20, 20, 0.5);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding-bottom: 80px; /* Add space for the absolute positioned footer */
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
    border-color: rgba(0, 176, 255, 0.3);
}

.card-header {
    padding: 25px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 176, 255, 0.1), rgba(123, 31, 162, 0.1));
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.pricing-card:hover .card-header::before {
    opacity: 1;
}

.card-header h3 {
    font-size: 1.5rem;
    color: var(--light-color);
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 10px;
}

.card-body {
    padding: 25px 20px;
}

.card-body ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.card-body ul li i {
    color: var(--success-color);
    margin-right: 10px;
}

.card-footer {
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Align to bottom */
    height: 80px; /* Fixed height for all card footers */
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.popular-tag {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--gradient-primary);
    color: white;
    padding: 5px 30px;
    font-size: 0.8rem;
    transform: rotate(45deg);
    box-shadow: var(--glow-primary);
    z-index: 1;
}

/* Pricing Card Variants */
.pricing-card.basic .card-header {
    background: linear-gradient(135deg, rgba(0, 176, 255, 0.05), rgba(0, 176, 255, 0.1));
}

.pricing-card.standard .card-header {
    background: linear-gradient(135deg, rgba(0, 176, 255, 0.1), rgba(123, 31, 162, 0.1));
}

.pricing-card.advanced .card-header {
    background: linear-gradient(135deg, rgba(0, 176, 255, 0.15), rgba(123, 31, 162, 0.15));
}

.pricing-card.elite .card-header {
    background: linear-gradient(135deg, rgba(123, 31, 162, 0.15), rgba(123, 31, 162, 0.2));
}

.pricing-card.admin .card-header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(123, 31, 162, 0.3));
}

/* ===== FREE KEY SECTION ===== */
.free-key-section {
    background: linear-gradient(135deg, rgba(0, 176, 255, 0.1), rgba(123, 31, 162, 0.1));
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.free-key-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: -1;
}

.gift-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    box-shadow: var(--glow-primary);
}

.gift-icon i {
    font-size: 40px;
    color: white;
}

.free-key-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--light-color);
}

.free-key-content p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
    color: #ccc;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works-section {
    position: relative;
}

.steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 150px;
    margin: 10px;
}

.step-number {
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    color: white;
    font-weight: 700;
    box-shadow: var(--glow-primary);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: rgba(20, 20, 20, 0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    border: 2px solid var(--primary-color);
    box-shadow: var(--glow-primary);
    transition: var(--transition);
}

.step:hover .step-icon {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 176, 255, 0.7);
}

.step-icon i {
    font-size: 25px;
    color: var(--primary-color);
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--light-color);
    text-align: center;
}

.step p {
    font-size: 0.9rem;
    color: #ccc;
    text-align: center;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: rgba(10, 10, 10, 0.5);
}

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

.faq-item {
    background: rgba(20, 20, 20, 0.5);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(0, 176, 255, 0.3);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: var(--light-color);
}

.faq-toggle {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-answer p {
    padding-bottom: 20px;
    color: #ccc;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

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

/* ===== CONTACT SECTION ===== */
.contact-section {
    position: relative;
    background: var(--darker-color);
    overflow: hidden;
    padding-bottom: 100px;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 0, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

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

.contact-item {
    text-align: center;
    background: rgba(20, 20, 20, 0.7);
    border-radius: var(--border-radius);
    padding: 35px 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 0, 0, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.contact-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.15);
    border-color: rgba(255, 0, 0, 0.3);
    background: rgba(30, 30, 30, 0.8);
}

.contact-item:hover::after {
    transform: scaleX(1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    border: 2px solid var(--primary-color);
    box-shadow: var(--glow-primary), 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--gradient-primary);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    filter: blur(10px);
}

.contact-item:hover .contact-icon {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 176, 255, 0.7);
}

.contact-icon i {
    font-size: 25px;
    color: white;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--light-color);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-item p {
    font-size: 1rem;
    color: #ddd;
    transition: var(--transition);
}

.contact-item:hover p {
    color: white;
}

.contact-item a {
    position: relative;
    display: inline-block;
}

.contact-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.contact-item a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.social-link {
    width: 60px;
    height: 60px;
    background: rgba(20, 20, 20, 0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--primary-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 80%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link i {
    font-size: 22px;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 25px rgba(255, 0, 0, 0.7);
    background: var(--gradient-primary);
    border-color: transparent;
}

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

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

.social-link:active {
    transform: translateY(-2px) scale(0.95);
}

.social-link.telegram {
    background: linear-gradient(135deg,);
}

.social-link.instagram {
    background: linear-gradient(45deg, 100%);
}

.social-link.youtube {
    background: linear-gradient(135deg,);
}

.social-link.oxapay {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
}

.social-link.website {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

/* ===== FOOTER ===== */
footer {
    background: rgba(10, 10, 10, 0.8);
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content p {
    margin-bottom: 10px;
    color: #ccc;
    font-size: 0.9rem;
}

.developer-info {
    text-align: center;
    margin-top: 10px;
    color: var(--primary-color);
}

/* ===== FLOATING TELEGRAM BUTTON ===== */
.floating-telegram {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
}

.floating-telegram a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    padding: 15px;
    border-radius: 50%;
    transition: var(--transition);
}

.floating-telegram i {
    font-size: 20px;
    color: var(--primary-color);
    margin-right: 0;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .ai-glow {
        right: 5%;
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 992px) {
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        display: none;
    }
    
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .step {
        width: 45%;
        min-width: 150px;
        margin: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 15px;
    }
    
    .step-icon {
        margin: 0 auto 15px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }
    
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        z-index: 101;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .mobile-menu-btn {
        display: flex;
        z-index: 102;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .steps {
        flex-direction: column;
        align-items: center;
    }
    
    .step {
        width: 100%;
        max-width: 300px;
        margin: 15px 0;
        padding: 15px;
        background: rgba(20, 20, 20, 0.5);
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
    }
    
    .step h3 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    
    .step p {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .floating-telegram a {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
    }
    
    .floating-telegram i {
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .free-key-content h2 {
        font-size: 1.5rem;
    }
}