/* Modern CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6e72fc;
    --secondary-color: #ad1deb;
    --accent-color: #5865F2;
    --dark-bg: #0a0a0a;
    --darker-bg: #000000;
    --card-bg: rgba(255, 255, 255, 0.03);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --gradient-1: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-2: linear-gradient(45deg, #6e72fc, #ad1deb);
    --gradient-3: linear-gradient(to right, #000428, #004e92);
    --gradient-4: linear-gradient(to right, #0f0c29, #302b63, #24243e);
    --gradient-5: linear-gradient(to right, #000000, #434343);
    --neon-shadow: 0 0 10px rgba(110, 114, 252, 0.5), 0 0 20px rgba(110, 114, 252, 0.3), 0 0 30px rgba(110, 114, 252, 0.1);
    --card-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --hover-shadow: 0 8px 32px 0 rgba(110, 114, 252, 0.37);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--dark-bg);
    overflow-x: hidden;
}

/* Header Styles */
.main-header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 70px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo a {
    text-decoration: none;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: var(--neon-shadow);
    letter-spacing: 2px;
    animation: glowText 3s ease-in-out infinite;
}

@keyframes glowText {
    0%, 100% { text-shadow: var(--neon-shadow); }
    50% { text-shadow: 0 0 15px rgba(110, 114, 252, 0.8), 0 0 25px rgba(110, 114, 252, 0.5), 0 0 35px rgba(110, 114, 252, 0.3); }
}

.logo-subtitle {
    font-size: 0.8rem;
    margin-top: -3px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    position: relative;
    overflow: hidden;
    padding: 0.7rem 1.5rem;
    border-radius: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    background: linear-gradient(to right, transparent 50%, rgba(110, 114, 252, 0.1) 50%);
    background-size: 200% 100%;
    background-position: 0% 0%;
    transition: all 0.4s ease;
}

.nav-link:hover {
    background-position: -100% 0%;
    transform: translateY(-3px);
    box-shadow: var(--neon-shadow);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.nav-link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.discord-link {
    background: var(--accent-color);
    color: white;
    border: none;
    margin-left: auto;
}

.discord-link:hover {
    background: #4752c4;
    transform: translateY(-2px) scale(1.05);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--gradient-3);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(110, 114, 252, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(173, 29, 235, 0.15) 0%, transparent 50%);
    animation: gradientPulse 8s ease-in-out infinite;
}

@keyframes gradientPulse {
    0% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.2); }
    100% { opacity: 0.5; transform: scale(1); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--card-shadow);
    animation: float 6s ease-in-out infinite;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(110, 114, 252, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient-1);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(110, 114, 252, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(110, 114, 252, 0.6);
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: linear-gradient(135deg, #000000, #1a1a1a, #000000);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 0% 0%, rgba(110, 114, 252, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(173, 29, 235, 0.15) 0%, transparent 50%);
    animation: sectionGlow 10s ease-in-out infinite;
}

@keyframes sectionGlow {
    0% { opacity: 0.3; }
    50% { opacity: 0.7; }
    100% { opacity: 0.3; }
}

.services h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 4rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(110, 114, 252, 0.3);
    position: relative;
    z-index: 1;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-card {
    position: relative;
    background: rgba(0, 0, 0, 0.8);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    z-index: 1;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, 
        rgba(110, 114, 252, 0.1) 0%, 
        rgba(173, 29, 235, 0.1) 50%,
        rgba(110, 114, 252, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: -1;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
                rgba(255, 255, 255, 0.15) 0%, 
                transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(110, 114, 252, 0.5);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(110, 114, 252, 0.3),
        0 0 50px rgba(110, 114, 252, 0.1);
}

.service-card:hover::before,
.service-card:hover::after {
    opacity: 1;
}

.service-card i {
    font-size: 3.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    display: inline-block;
    filter: drop-shadow(0 0 15px rgba(110, 114, 252, 0.3));
    animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { 
        transform: translateY(0) scale(1); 
        filter: drop-shadow(0 0 15px rgba(110, 114, 252, 0.3));
    }
    50% { 
        transform: translateY(-15px) scale(1.1); 
        filter: drop-shadow(0 0 25px rgba(110, 114, 252, 0.5));
    }
}

.service-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(110, 114, 252, 0.3);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.learn-more {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.8rem 0;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.learn-more i {
    font-size: 1.2rem;
    margin: 0;
    transition: transform 0.4s ease;
}

.learn-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.learn-more:hover {
    color: var(--secondary-color);
    gap: 1.2rem;
    text-shadow: 0 0 15px rgba(110, 114, 252, 0.5);
}

.learn-more:hover i {
    transform: translateX(5px);
}

.learn-more:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Footer Styles */
.main-footer {
    background: linear-gradient(to bottom, var(--darker-bg), #1a1a1a);
    position: relative;
    overflow: hidden;
    padding: 5rem 0 0;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, 
        transparent, 
        rgba(110, 114, 252, 0.5), 
        transparent
    );
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding: 0 2rem;
}

.footer-section h3 {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    position: relative;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    padding-left: 0;
}

.footer-section ul li a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--text-primary);
    padding-left: 20px;
}

.footer-section ul li a:hover::before {
    opacity: 1;
    left: 0;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: var(--primary-color);
    box-shadow: 
        0 5px 15px rgba(110, 114, 252, 0.4),
        0 0 20px rgba(110, 114, 252, 0.2);
}

.social-link:hover::before {
    opacity: 0.2;
}

.footer-bottom {
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, 
        transparent, 
        rgba(110, 114, 252, 0.3), 
        transparent
    );
}

.copyright {
    color: var(--text-secondary);
    font-size: 1rem;
    letter-spacing: 1px;
}

/* Mobile Menu */
.mobile-menu {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        padding: 1rem;
        flex-direction: column;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .main-links {
        flex-direction: column;
        width: 100%;
    }

    .nav-link {
        width: 100%;
        justify-content: center;
    }

    .discord-link {
        margin: 1rem 0;
    }
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Update main margin for compact header */
main {
    margin-top: 60px;
}

/* Price Card Enhancements */
.price-card {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(110, 114, 252, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(173, 29, 235, 0.1) 0%, transparent 50%);
    animation: cardGlow 8s ease-in-out infinite;
}

@keyframes cardGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* Section Title Animations */
.services h2, .pricing h2, .contact h2 {
    position: relative;
    animation: titleFloat 4s ease-in-out infinite;
}

@keyframes titleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Add mouse move effect for service cards */
.service-card {
    --mouse-x: 50%;
    --mouse-y: 50%;
}

/* Add this JavaScript to your script.js file:
document.querySelectorAll('.service-card').forEach(card => {
    card.addEventListener('mousemove', e => {
        const rect = card.getBoundingClientRect();
        const x = ((e.clientX - rect.left) / card.clientWidth) * 100;
        const y = ((e.clientY - rect.top) / card.clientHeight) * 100;
        card.style.setProperty('--mouse-x', `${x}%`);
        card.style.setProperty('--mouse-y', `${y}%`);
    });
});
*/ 