/* CSS Variables for Color Scheme - Modern Styling */
:root {
    --primary-color: #8e44ad; /* Purple */
    --primary-color-dark: #6c3483;
    --primary-color-light: #a569bd;
    --primary-rgb: 142, 68, 173;
    
    --secondary-color: #16a085; /* Teal */
    --secondary-color-dark: #117a65;
    --secondary-color-light: #1abc9c;
    --secondary-rgb: 22, 160, 133;
    
    --accent-color: #f39c12; /* Orange/Amber */
    --accent-color-dark: #d35400;
    --accent-color-light: #f1c40f;
    --accent-rgb: 243, 156, 18;
    
    --background-color: #f9fafb;
    --text-color: #2c3e50;
    --text-color-light: #7f8c8d;
    
    /* Modern UI Variables */
    --card-radius: 16px;
    --button-radius: 12px;
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
    --neuro-shadow-light: 20px 20px 60px rgba(0, 0, 0, 0.05), -20px -20px 60px rgba(255, 255, 255, 0.8);
    --neuro-shadow-dark: 10px 10px 20px rgba(0, 0, 0, 0.1), -10px -10px 20px rgba(255, 255, 255, 0.05);
    --transition-fast: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: var(--background-color);
    background-image: 
        radial-gradient(circle at 25% 5%, rgba(var(--primary-rgb), 0.05) 0%, transparent 20%),
        radial-gradient(circle at 75% 80%, rgba(var(--secondary-rgb), 0.05) 0%, transparent 20%);
    background-attachment: fixed;
}

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

/* Header Styles */
.header {
    background: rgba(var(--primary-rgb), 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--glass-shadow);
    border-bottom: 1px solid var(--glass-border);
    transition: all var(--transition-fast);
}

.navbar {
    padding: 1.2rem 0;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
    transition: transform 0.3s ease;
}

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

.logo i {
    margin-right: 12px;
    font-size: 1.8rem;
    color: var(--accent-color);
    filter: drop-shadow(0 0 8px rgba(var(--accent-rgb), 0.5));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-fast);
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: var(--button-radius);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    transition: width var(--transition-fast);
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-menu a:hover::after {
    width: 80%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark) 100%);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before, .hero::after {
    animation-delay: 0s;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
    animation-name: pulse-hero;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    content: '';
    position: absolute;
}

.hero::before {
    height: 600px;
    width: 600px;
    top: -200px;
    right: -200px;
    z-index: 0;
}

.hero::after {
    height: 500px;
    width: 500px;
    bottom: -200px;
    left: -200px;
    z-index: 0;
    animation-delay: 3s;
}

@keyframes pulse-hero {
    0% {
        opacity: 0.5;
        background-position: 0% 0%;
    }
    100% {
        opacity: 0.8;
        background-position: 100% 100%;
    }
}

/* Decorative circles */
.decorative-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(var(--accent-rgb), 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.circle-1 {
    width: 150px;
    height: 150px;
    top: 10%;
    left: 10%;
    animation: float-circle 15s ease-in-out infinite alternate;
}

.circle-2 {
    width: 80px;
    height: 80px;
    top: 20%;
    right: 15%;
    animation: float-circle 12s ease-in-out infinite alternate-reverse;
}

.circle-3 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    right: 10%;
    animation: float-circle 18s ease-in-out infinite alternate;
}

.circle-4 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    left: 15%;
    animation: float-circle 10s ease-in-out infinite alternate-reverse;
}

@keyframes float-circle {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.05;
    }
    50% {
        transform: translate(30px, -30px) rotate(180deg);
        opacity: 0.1;
    }
    100% {
        transform: translate(-30px, 30px) rotate(360deg);
        opacity: 0.05;
    }
}

/* Floating icons */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.3);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
    animation: float-icon 10s ease-in-out infinite;
}

.floating-icons .fa-netflix {
    top: 15%;
    left: 20%;
    font-size: 32px;
    animation-duration: 12s;
    animation-delay: 0s;
}

.floating-icons .fa-spotify {
    top: 25%;
    right: 15%;
    font-size: 28px;
    animation-duration: 15s;
    animation-delay: 1s;
}

.floating-icons .fa-youtube {
    bottom: 30%;
    right: 25%;
    font-size: 36px;
    animation-duration: 18s;
    animation-delay: 2s;
}

.floating-icons .fa-instagram {
    bottom: 20%;
    left: 25%;
    font-size: 30px;
    animation-duration: 14s;
    animation-delay: 3s;
}

.floating-icons .fa-discord {
    top: 40%;
    left: 40%;
    font-size: 26px;
    animation-duration: 16s;
    animation-delay: 4s;
}

@keyframes float-icon {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(20px, -20px) rotate(5deg) scale(1.1);
    }
    50% {
        transform: translate(0, -40px) rotate(0deg) scale(1);
    }
    75% {
        transform: translate(-20px, -20px) rotate(-5deg) scale(0.9);
    }
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--primary-rgb), 0) 30%),
                radial-gradient(circle at 80% 30%, rgba(var(--secondary-rgb), 0.15) 0%, rgba(var(--secondary-rgb), 0) 40%);
    animation: pulse-hero 8s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    z-index: 0;
    animation: pulse 15s infinite alternate ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.1); opacity: 0.15; }
    100% { transform: scale(1); opacity: 0.1; }
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

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

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: relative;
    display: inline-block;
}

.hero h1 .typing-text {
    position: relative;
    color: var(--accent-color);
}

.hero h1 .typing-text::after {
    content: '|';
    position: absolute;
    right: -8px;
    color: var(--accent-color);
    background-color: transparent;
    animation: typing-cursor 0.8s infinite;
}

@keyframes typing-cursor {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--button-radius);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(45deg, var(--secondary-color), var(--secondary-color-dark));
    color: white;
    box-shadow: 0 4px 12px rgba(var(--secondary-rgb), 0.3);
    position: relative;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(var(--secondary-rgb), 0.5);
    animation: pulse-light 1.5s infinite;
}

.btn-primary:hover::before {
    left: 100%;
}

@keyframes pulse-light {
    0% { box-shadow: 0 0 0 0 rgba(var(--secondary-rgb), 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(var(--secondary-rgb), 0); }
    100% { box-shadow: 0 0 0 0 rgba(var(--secondary-rgb), 0); }
}

@keyframes wiggle {
    0% { transform: translateY(-3px) scale(1.05) rotate(0deg); }
    25% { transform: translateY(-3px) scale(1.05) rotate(0.5deg); }
    50% { transform: translateY(-3px) scale(1.05) rotate(0deg); }
    75% { transform: translateY(-3px) scale(1.05) rotate(-0.5deg); }
    100% { transform: translateY(-3px) scale(1.05) rotate(0deg); }
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

@keyframes glow {
    0% { box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3); }
    100% { box-shadow: 0 8px 30px rgba(255, 255, 255, 0.5); }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: white;
    position: relative;
    z-index: 1;
}

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

.feature-card {
    background: var(--glass-bg);
    border-radius: var(--card-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--neuro-shadow-light);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
    z-index: 1;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-rgb, 0, 0, 255), var(--secondary-rgb, 255, 0, 0));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.feature-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
    box-shadow: var(--neuro-shadow-dark);
    border-color: rgba(var(--primary-rgb), 0.3);
    background: rgba(255, 255, 255, 0.15);
}

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

.feature-card i {
    transition: all 0.5s ease;
}

.feature-card:hover i {
    transform: scale(1.2) translateZ(30px);
    text-shadow: 0 0 20px rgba(var(--primary-color-rgb), 0.8);
}

.feature-card h3, 
.feature-card p {
    transition: all 0.5s ease;
}

.feature-card:hover h3 {
    transform: translateZ(20px);
    color: var(--primary-color);
}

.feature-card:hover p {
    transform: translateZ(15px);
}

.feature-card i {
    font-size: 3.2rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--accent-color-dark), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.5s ease;
}

.feature-card:hover i {
    transform: scale(1.2) rotate(5deg);
    background: linear-gradient(135deg, #f97316, #ea580c);
    -webkit-background-clip: text;
    background-clip: text;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

/* Products Section */
.products {
    padding: 80px 0;
}

.social-section {
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(45deg, #f97316, #ea580c);
    border-radius: 5px;
    animation: width-pulse 3s infinite alternate;
}

@keyframes width-pulse {
    0% { width: 80px; opacity: 0.8; }
    100% { width: 120px; opacity: 1; }
}

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

.product-card {
    background: var(--glass-bg);
    border-radius: var(--card-radius);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--glass-shadow);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transform-style: preserve-3d;
    perspective: 1000px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.product-card {
    position: relative;
    overflow: hidden;
}

.product-card .gradient-border {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #2563eb, #4f46e5, #f97316, #2563eb);
    z-index: -2;
    border-radius: 25px;
    background-size: 400% 400%;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: gradient-shift 8s ease infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.product-card .card-background {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: -1;
    border-radius: 20px;
    transition: all 0.5s ease;
}

.product-card:hover .gradient-border {
    opacity: 1;
}

.product-card:hover .card-background {
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
}
/* Shine effect */
.product-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-color-dark), var(--secondary-color), var(--secondary-color-dark));
    z-index: -1;
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.product-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #2563eb, #4f46e5, #f97316, transparent, transparent);
    z-index: -1;
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover::after {
    opacity: 0.5;
}

.product-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(-5deg);
    box-shadow: 0 30px 50px rgba(var(--primary-rgb), 0.2);
    border-color: rgba(var(--secondary-rgb), 0.4);
    background: rgba(255, 255, 255, 0.2);
}

.product-image {
    margin-bottom: 1.5rem;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.2) translateZ(20px);
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

.product-card h3 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.3rem;
}

.price {
    margin-bottom: 1.5rem;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    margin-right: 10px;
}

.sale-price {
    color: var(--accent-color);
    font-size: 1.6rem;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(var(--accent-rgb), 0.1);
}

.features {
    list-style: none;
    margin-bottom: 2rem;
}

.features li {
    padding: 0.3rem 0;
    color: #666;
}

.features li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    margin-right: 10px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -300px;
    left: -300px;
    z-index: 0;
}

.contact::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -200px;
    right: -200px;
    z-index: 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #f97316;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 2rem;
    background: var(--glass-bg);
    border-radius: var(--card-radius);
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: contact-form-shine 6s linear infinite;
    pointer-events: none;
    z-index: 1;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(31, 38, 135, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

@keyframes contact-form-shine {
    0% {
        top: -50%;
        left: -50%;
    }
    100% {
        top: 150%;
        left: 150%;
    }
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid var(--glass-border);
    border-radius: calc(var(--button-radius) - 4px);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: var(--text-color);
    transition: all var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(var(--primary-rgb), 0.5);
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.3);
    transform: translateY(-2px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.contact-form input:focus::placeholder,
.contact-form textarea:focus::placeholder {
    opacity: 0.5;
    transform: translateX(10px);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(255,255,255,0.5);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.7);
}

/* Footer */
.footer {
    background: rgba(var(--primary-rgb), 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 4rem 0 1.5rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--glass-border);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #2563eb, #4f46e5, #f97316, #2563eb);
    background-size: 300% 100%;
    animation: gradient-shift 8s ease infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.2rem;
    color: #f97316;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd700;
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--glass-bg);
    color: white;
    margin-right: 10px;
    font-size: 1.2rem;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #f97316, #ea580c);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.social-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.3);
    color: var(--accent-color);
    border-color: rgba(var(--accent-rgb), 0.5);
    background: rgba(255, 255, 255, 0.2);
}

.social-links a:hover i {
    animation: social-icon-pulse 1s infinite alternate;
}

@keyframes social-icon-pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.2); }
}

.social-links a i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-links a:hover i {
    animation: social-icon-pulse 1s infinite alternate;
}

@keyframes social-icon-pulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #9ca3af;
    margin-top: 2rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2.5rem;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    transform-style: preserve-3d;
    perspective: 1000px;
}

@keyframes modalSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-70px) scale(0.9) rotateX(10deg);
    }
    70% {
        opacity: 1;
        transform: translateY(10px) scale(1.01) rotateX(-2deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0);
    }
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
}

.close:hover {
    color: #000;
}

#purchaseForm {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

#purchaseForm input,
#purchaseForm select {
    padding: 1.2rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

#purchaseForm input:focus,
#purchaseForm select:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

#productDetails {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid #e5e7eb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(102, 126, 234, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success Message */
.success-message {
    background: #28a745;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

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

/* Hover Effects */
.product-card .btn:hover {
    transform: scale(1.05);
}

.feature-card:hover i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(45deg, #f97316, #ea580c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.auth-container {
  max-width: 400px;
  margin: 60px auto;
  padding: 32px 28px 24px 28px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  text-align: center;
}
.auth-container h2 {
  margin-bottom: 24px;
  font-size: 2rem;
  font-weight: 700;
}
.input-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}
.input-group input {
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}
.btn.btn-primary {
  width: 100%;
  padding: 12px 0;
  background: linear-gradient(90deg, #ff6a6a, #f36d2f);
  color: #fff;
  border: none;
  border-radius: 24px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 12px;
}
.btn.btn-primary:hover {
  background: linear-gradient(90deg, #f36d2f, #ff6a6a);
}
#loginMessage {
  margin-top: 10px;
  color: #d32f2f;
  font-weight: 500;
}
.auth-container p {
  margin-top: 10px;
  font-size: 1rem;
}
.auth-container a {
  color: #1976d2;
  text-decoration: underline;
  font-weight: 500;
}
#purchaseForm input,
#purchaseForm select {
    padding: 1.2rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

#purchaseForm input:focus,
#purchaseForm select:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

#productDetails {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid #e5e7eb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(102, 126, 234, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success Message */
.success-message {
    background: #28a745;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

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

/* Hover Effects */
.product-card .btn:hover {
    transform: scale(1.05);
}

.feature-card:hover i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(45deg, #f97316, #ea580c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}