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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: 
        radial-gradient(circle at 20% 30%, rgba(147, 51, 234, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(168, 85, 247, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(139, 92, 246, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 60% 20%, rgba(196, 181, 253, 0.2) 0%, transparent 60%),
        linear-gradient(135deg, #8b5cf6 0%, #a855f7 25%, #c084fc 50%, #a855f7 75%, #8b5cf6 100%);
    background-attachment: fixed;
    background-size: 400% 400%;
    animation: backgroundShift 20s ease-in-out infinite;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

@keyframes backgroundShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Floating Particles Background */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: radial-gradient(circle, #00D4FF 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s linear infinite;
    opacity: 0.6;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Enhanced Navigation with Beautiful Button-like Links */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(168, 85, 247, 0.1) 100%);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(196, 181, 253, 0.2);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.1);
}

.navbar.scrolled {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.25) 0%, rgba(168, 85, 247, 0.2) 100%);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.3);
    border-bottom-color: rgba(196, 181, 253, 0.3);
}

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

.nav-left,
.nav-right {
    display: flex;
    gap: 20px;
    flex: 1;
}

.nav-right {
    justify-content: flex-end;
}

/* Beautiful Navigation Button Links */
.nav-left a,
.nav-right a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 14px 24px;
    border-radius: 16px;
    letter-spacing: 0.6px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.05));
    border: 1px solid rgba(196, 181, 253, 0.2);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.1);
}

.nav-left a::before,
.nav-right a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(168, 85, 247, 0.3));
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-left a::after,
.nav-right a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.nav-left a:hover,
.nav-right a:hover {
    color: #ffffff;
    transform: translateY(-3px) scale(1.05);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 
        0 8px 25px rgba(139, 92, 246, 0.4),
        0 0 30px rgba(0, 212, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.nav-left a:hover::before,
.nav-right a:hover::before {
    left: 0;
}

.nav-left a:hover::after,
.nav-right a:hover::after {
    width: 120px;
    height: 120px;
    opacity: 0.3;
}

.nav-center {
    display: flex;
    justify-content: center;
}

.logo img {
    height: 65px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
}

.logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
}

/* Enhanced Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        radial-gradient(circle at 30% 20%, rgba(0, 212, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(88, 101, 242, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 60%),
        linear-gradient(135deg, rgba(10, 10, 15, 0.9) 0%, rgba(26, 26, 46, 0.8) 50%, rgba(10, 10, 15, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(0,212,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

.hero-container {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #00D4FF 30%, #ffffff 70%, #00D4FF 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out, titleGlow 4s ease-in-out infinite, gradientShift 6s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes titleGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.3)); }
    50% { filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.6)); }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.2s both;
    font-weight: 400;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.4s both;
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

/* 🚀 SPECTACULAR FUTURISTIC BUTTONS 🚀 */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 22px 45px;
    border-radius: 60px;
    font-weight: 800;
    font-size: 1.15rem;
    text-decoration: none;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
    position: relative;
    z-index: 0;
    overflow: hidden;
    cursor: pointer;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 8px 25px rgba(0, 212, 255, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.2),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(15px);
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Advanced Neon Glow Ring */
.cta-button::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, 
        #00D4FF 0%, 
        #5865F2 25%, 
        #a855f7 50%, 
        #ff0080 75%, 
        #00D4FF 100%);
    border-radius: 65px;
    z-index: -2;
    opacity: 0;
    transition: all 0.6s ease;
    background-size: 400% 400%;
    animation: spectacularBorderGlow 3s ease-in-out infinite;
    filter: blur(2px);
}

/* Magical Light Sweep */
.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(120deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 20%,
        rgba(0, 212, 255, 0.6) 40%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(168, 85, 247, 0.6) 60%,
        rgba(255, 255, 255, 0.1) 80%,
        transparent 100%);
    transition: left 1s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    transform: skewX(-20deg);
}

/* Floating Particles Effect */
.cta-button .button-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.cta-button .button-particles::before,
.cta-button .button-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #00D4FF 0%, transparent 70%);
    border-radius: 50%;
    animation: floatingParticles 2s ease-in-out infinite;
}

.cta-button .button-particles::before {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.cta-button .button-particles::after {
    top: 60%;
    right: 25%;
    animation-delay: 1s;
}

@keyframes spectacularBorderGlow {
    0%, 100% { 
        background-position: 0% 50%;
        filter: blur(2px) brightness(1);
    }
    25% {
        background-position: 25% 75%;
        filter: blur(3px) brightness(1.2);
    }
    50% { 
        background-position: 100% 50%;
        filter: blur(4px) brightness(1.5);
    }
    75% {
        background-position: 75% 25%;
        filter: blur(3px) brightness(1.2);
    }
}

@keyframes floatingParticles {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-15px) scale(1.2);
        opacity: 1;
    }
}

/* SPECTACULAR DISCORD BUTTON */
.discord-btn {
    background: linear-gradient(135deg, 
        #5865F2 0%, 
        #00D4FF 25%,
        #a855f7 50%,
        #ff0080 75%,
        #5865F2 100%);
    background-size: 300% 300%;
    color: white;
    box-shadow: 
        0 20px 50px rgba(88, 101, 242, 0.5),
        0 10px 30px rgba(0, 212, 255, 0.4),
        0 5px 15px rgba(168, 85, 247, 0.3),
        inset 0 3px 0 rgba(255, 255, 255, 0.4),
        inset 0 -3px 0 rgba(0, 0, 0, 0.3);
    animation: discordSpectacularGradient 4s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

@keyframes discordSpectacularGradient {
    0%, 100% { 
        background-position: 0% 50%;
        filter: brightness(1) saturate(1);
    }
    25% {
        background-position: 25% 75%;
        filter: brightness(1.1) saturate(1.2);
    }
    50% { 
        background-position: 100% 50%;
        filter: brightness(1.2) saturate(1.4);
    }
    75% {
        background-position: 75% 25%;
        filter: brightness(1.1) saturate(1.2);
    }
}

/* FUTURISTIC SECONDARY BUTTON */
.secondary-btn {
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.2) 0%, 
        rgba(139, 92, 246, 0.15) 25%,
        rgba(255, 0, 128, 0.1) 50%,
        rgba(139, 92, 246, 0.15) 75%,
        rgba(0, 212, 255, 0.2) 100%);
    background-size: 300% 300%;
    color: #00D4FF;
    border: 3px solid;
    border-image: linear-gradient(45deg, 
        #00D4FF 0%, 
        #a855f7 25%, 
        #ff0080 50%, 
        #a855f7 75%, 
        #00D4FF 100%) 1;
    backdrop-filter: blur(25px);
    box-shadow: 
        0 20px 50px rgba(0, 212, 255, 0.3),
        0 10px 30px rgba(139, 92, 246, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(0, 212, 255, 0.3);
    animation: secondarySpectacularGradient 5s ease-in-out infinite;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
}

@keyframes secondarySpectacularGradient {
    0%, 100% { 
        background-position: 0% 50%;
        border-image-source: linear-gradient(45deg, #00D4FF, #a855f7, #ff0080, #a855f7, #00D4FF);
    }
    50% { 
        background-position: 100% 50%;
        border-image-source: linear-gradient(45deg, #ff0080, #00D4FF, #a855f7, #00D4FF, #ff0080);
    }
}

/* SPECTACULAR HOVER EFFECTS */
.cta-button:hover {
    transform: perspective(1000px) translateY(-8px) scale(1.08) rotateX(5deg);
    letter-spacing: 1.5px;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 15px 40px rgba(0, 212, 255, 0.5),
        0 8px 25px rgba(168, 85, 247, 0.4),
        0 0 60px rgba(255, 0, 128, 0.3),
        inset 0 3px 0 rgba(255, 255, 255, 0.6);
}

.cta-button:hover::before {
    opacity: 1;
    filter: blur(4px) brightness(1.8);
}

.cta-button:hover::after {
    left: 150%;
}

.cta-button:hover .button-particles {
    opacity: 1;
}

.discord-btn:hover {
    box-shadow: 
        0 30px 70px rgba(88, 101, 242, 0.7),
        0 20px 50px rgba(0, 212, 255, 0.6),
        0 10px 30px rgba(168, 85, 247, 0.5),
        0 0 80px rgba(255, 0, 128, 0.4),
        inset 0 4px 0 rgba(255, 255, 255, 0.7);
    text-shadow: 
        0 0 30px rgba(255, 255, 255, 1),
        0 0 50px rgba(0, 212, 255, 0.8);
    animation-duration: 2s;
}

.secondary-btn:hover {
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.4) 0%, 
        rgba(139, 92, 246, 0.3) 25%,
        rgba(255, 0, 128, 0.25) 50%,
        rgba(139, 92, 246, 0.3) 75%,
        rgba(0, 212, 255, 0.4) 100%);
    color: #ffffff;
    box-shadow: 
        0 30px 70px rgba(0, 212, 255, 0.6),
        0 20px 50px rgba(139, 92, 246, 0.4),
        0 0 80px rgba(255, 0, 128, 0.3),
        inset 0 3px 0 rgba(255, 255, 255, 0.5);
    text-shadow: 
        0 0 30px rgba(255, 255, 255, 1),
        0 0 50px rgba(0, 212, 255, 0.8);
    animation-duration: 3s;
}

/* SPECTACULAR SVG ICON ANIMATIONS */
.cta-button svg {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
    position: relative;
    z-index: 4;
}

.cta-button:hover svg {
    transform: rotate(20deg) scale(1.3) translateZ(10px);
    filter: 
        drop-shadow(0 0 30px rgba(255, 255, 255, 1))
        drop-shadow(0 0 50px rgba(0, 212, 255, 0.8))
        drop-shadow(0 0 70px rgba(168, 85, 247, 0.6));
    animation: iconPulse 0.6s ease-in-out;
}

@keyframes iconPulse {
    0%, 100% { transform: rotate(20deg) scale(1.3) translateZ(10px); }
    50% { transform: rotate(25deg) scale(1.4) translateZ(15px); }
}

/* SPECTACULAR ACTIVE STATE */
.cta-button:active {
    transform: translateY(-6px) scale(1.05) rotateX(2deg);
    transition: all 0.1s ease;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 8px 20px rgba(0, 212, 255, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

/* PULSING GLOW ANIMATION */
.cta-button {
    animation: subtlePulse 4s ease-in-out infinite;
}

@keyframes subtlePulse {
    0%, 100% {
        box-shadow: 
            0 15px 40px rgba(0, 0, 0, 0.3),
            0 8px 25px rgba(0, 212, 255, 0.2),
            inset 0 2px 0 rgba(255, 255, 255, 0.2),
            inset 0 -2px 0 rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 
            0 15px 40px rgba(0, 0, 0, 0.3),
            0 8px 25px rgba(0, 212, 255, 0.4),
            0 0 30px rgba(168, 85, 247, 0.3),
            inset 0 2px 0 rgba(255, 255, 255, 0.3),
            inset 0 -2px 0 rgba(0, 0, 0, 0.2);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Services Section */
.services {
    padding: 120px 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(88, 101, 242, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, rgba(10, 10, 15, 0.95) 0%, rgba(21, 21, 32, 0.9) 50%, rgba(10, 10, 15, 0.95) 100%);
    position: relative;
}

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

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #00D4FF 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
}

.service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.service-card[data-aos="fade-up"].aos-animate {
    animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
    }
    50% {
        opacity: 0.6;
        transform: translateY(20px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(0, 212, 255, 0.02));
    border-radius: 25px;
    z-index: -1;
    transition: all 0.6s ease;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 25px 50px rgba(168, 85, 247, 0.25), 0 0 50px rgba(147, 51, 234, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.service-card:hover::before {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 212, 255, 0.05));
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
}

.service-icon.minecraft {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.service-icon.discord {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.service-icon.website {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.service-icon.graphics {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.service-icon.bot {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.service-card:hover .service-icon::before {
    left: 100%;
}

.service-icon svg {
    color: white;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.4);
}

.service-card .service-icon {
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-5px) rotate(2deg);
    }
}

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    color: #00D4FF;
    transform: translateX(5px);
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.95);
}

/* Enhanced Team Section */
.team {
    padding: 120px 0;
    background: linear-gradient(135deg, #00D4FF 0%, #5865F2 50%, #00D4FF 100%);
    position: relative;
    overflow: hidden;
}

.team::before {
    content: 'POZNAJ NASZ ZESPÓŁ';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

.team .container {
    position: relative;
    z-index: 1;
}

.team .section-header h2 {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.team-member {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(168, 85, 247, 0.15) 100%);
    backdrop-filter: blur(25px);
    border: 2px solid rgba(196, 181, 253, 0.3);
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    transition: all 0.6s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.2);
}

.team-member[data-aos="fade-up"].aos-animate {
    animation: slideInUp 0.8s ease-out forwards;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 30px;
    z-index: -1;
    transition: all 0.6s ease;
}

.team-member:hover {
    transform: translateY(-20px) scale(1.02);
    border-color: rgba(196, 181, 253, 0.6);
    box-shadow: 0 30px 60px rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(168, 85, 247, 0.25) 100%);
}

.team-member:hover::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
}

.member-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(196, 181, 253, 0.6);
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(196, 181, 253, 0.1));
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.team-member:hover .member-avatar {
    transform: scale(1.1);
}

/* CEO Badge */
.ceo-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    z-index: 10;
    transition: all 0.3s ease;
}

.team-member:hover .ceo-badge {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.6);
}

.team-member:hover .member-avatar img {
    transform: scale(1.1);
}

.team-member h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.team-member:hover h3 {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.team-member p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.team-member:hover p {
    color: rgba(255, 255, 255, 0.95);
}

.member-skills {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    transition: all 0.3s ease;
}

.team-member:hover .member-skills {
    color: rgba(255, 255, 255, 0.9);
}

/* 🌌 COSMIC HOLOGRAPHIC SOCIAL MEDIA SECTION 🌌 */
.social {
    padding: 140px 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 255, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 50% 10%, rgba(0, 255, 136, 0.1) 0%, transparent 35%),
        radial-gradient(circle at 10% 70%, rgba(255, 100, 0, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 90% 30%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, 
            rgba(5, 5, 15, 0.98) 0%, 
            rgba(15, 5, 25, 0.95) 20%,
            rgba(5, 15, 35, 0.95) 40%,
            rgba(25, 5, 35, 0.95) 60%,
            rgba(15, 15, 45, 0.95) 80%,
            rgba(8, 8, 20, 0.98) 100%);
    background-size: 
        600% 600%, 
        700% 700%, 
        500% 500%, 
        400% 400%, 
        800% 800%, 
        100% 100%;
    position: relative;
    overflow: hidden;
    animation: cosmicBackgroundShift 20s ease-in-out infinite;
}

@keyframes cosmicBackgroundShift {
    0%, 100% { 
        background-position: 0% 50%, 100% 0%, 50% 100%, 0% 0%, 100% 50%, 0% 50%;
        filter: brightness(1) hue-rotate(0deg);
    }
    25% {
        background-position: 25% 75%, 75% 25%, 25% 50%, 50% 25%, 75% 75%, 25% 75%;
        filter: brightness(1.1) hue-rotate(15deg);
    }
    50% { 
        background-position: 50% 100%, 50% 50%, 100% 0%, 100% 50%, 50% 0%, 50% 50%;
        filter: brightness(1.2) hue-rotate(30deg);
    }
    75% {
        background-position: 75% 25%, 25% 75%, 75% 50%, 50% 75%, 25% 25%, 75% 25%;
        filter: brightness(1.1) hue-rotate(15deg);
    }
}

/* Floating Cosmic Particles */
.social::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(2px 2px at 40% 70%, rgba(0, 255, 255, 0.6), transparent),
        radial-gradient(1px 1px at 90% 40%, rgba(255, 0, 255, 0.7), transparent),
        radial-gradient(1px 1px at 60% 10%, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(2px 2px at 80% 90%, rgba(0, 255, 136, 0.5), transparent);
    background-size: 300px 300px, 400px 400px, 200px 200px, 350px 350px, 250px 250px;
    animation: floatingStars 25s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes floatingStars {
    0% {
        background-position: 0% 0%, 100% 100%, 50% 0%, 0% 100%, 100% 0%;
        opacity: 0.6;
    }
    50% {
        background-position: 100% 50%, 0% 50%, 100% 50%, 50% 0%, 50% 100%;
        opacity: 1;
    }
    100% {
        background-position: 0% 100%, 100% 0%, 0% 100%, 100% 0%, 0% 0%;
        opacity: 0.6;
    }
}

.social .section-header h2 {
    background: linear-gradient(135deg, #ffffff 0%, #a855f7 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 60px;
    max-width: 500px;
    margin: 60px auto 0;
}

/* 💎 FUTURISTIC HEXAGONAL SOCIAL BUTTONS 💎 */
.social-link {
    display: flex;
    align-items: center;
    gap: 40px;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 128, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(139, 92, 246, 0.5) 0%, transparent 50%),
        linear-gradient(135deg, 
            rgba(20, 20, 40, 0.95) 0%, 
            rgba(40, 20, 60, 0.9) 25%,
            rgba(20, 40, 80, 0.9) 50%,
            rgba(60, 20, 40, 0.9) 75%,
            rgba(30, 30, 50, 0.95) 100%);
    background-size: 400% 400%, 400% 400%, 400% 400%, 300% 300%;
    border: none;
    clip-path: polygon(25px 0%, 100% 0%, calc(100% - 25px) 100%, 0% 100%);
    padding: 40px 50px;
    text-decoration: none;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(40px) saturate(1.5);
    position: relative;
    overflow: hidden;
    width: 100%;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 12px 40px rgba(139, 92, 246, 0.4),
        0 8px 30px rgba(0, 212, 255, 0.3),
        0 4px 20px rgba(255, 0, 128, 0.2),
        inset 0 3px 0 rgba(255, 255, 255, 0.3),
        inset 0 -3px 0 rgba(0, 0, 0, 0.3);
    animation: futuristicSocialGradient 8s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes futuristicSocialGradient {
    0%, 100% { 
        background-position: 0% 50%, 100% 0%, 0% 100%, 0% 50%;
        filter: brightness(1) saturate(1.2) hue-rotate(0deg);
    }
    25% {
        background-position: 50% 100%, 0% 50%, 100% 0%, 25% 75%;
        filter: brightness(1.1) saturate(1.4) hue-rotate(10deg);
    }
    50% { 
        background-position: 100% 50%, 50% 100%, 50% 50%, 100% 50%;
        filter: brightness(1.2) saturate(1.6) hue-rotate(20deg);
    }
    75% {
        background-position: 50% 0%, 100% 50%, 0% 0%, 75% 25%;
        filter: brightness(1.1) saturate(1.4) hue-rotate(10deg);
    }
}

/* Futuristic Geometric Border Effect */
.social-link::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    background: 
        linear-gradient(45deg, 
            #00D4FF 0%, 
            #a855f7 15%,
            #ff0080 30%,
            #5865F2 45%,
            #00ff88 60%,
            #ff0080 75%,
            #a855f7 90%,
            #00D4FF 100%);
    clip-path: polygon(25px 0%, 100% 0%, calc(100% - 25px) 100%, 0% 100%);
    z-index: -1;
    opacity: 0;
    transition: all 0.8s ease;
    background-size: 500% 500%;
    animation: futuristicBorderGlow 5s ease-in-out infinite;
    filter: blur(4px) brightness(1.5);
}

@keyframes futuristicBorderGlow {
    0%, 100% { 
        background-position: 0% 50%;
        filter: blur(4px) brightness(1.5);
        transform: scale(1);
    }
    20% {
        background-position: 25% 75%;
        filter: blur(6px) brightness(1.8);
        transform: scale(1.02);
    }
    40% { 
        background-position: 75% 25%;
        filter: blur(8px) brightness(2.2);
        transform: scale(1.04);
    }
    60% {
        background-position: 100% 50%;
        filter: blur(6px) brightness(1.8);
        transform: scale(1.02);
    }
    80% {
        background-position: 50% 100%;
        filter: blur(5px) brightness(1.6);
        transform: scale(1.01);
    }
}

/* Cyber Light Beam Effect */
.social-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: 
        linear-gradient(120deg, 
            transparent 0%, 
            rgba(0, 255, 255, 0.1) 20%,
            rgba(255, 255, 255, 0.3) 35%,
            rgba(0, 255, 136, 0.6) 45%,
            rgba(255, 255, 255, 0.9) 50%,
            rgba(255, 0, 255, 0.6) 55%,
            rgba(255, 255, 255, 0.3) 65%,
            rgba(0, 255, 255, 0.1) 80%,
            transparent 100%);
    clip-path: polygon(25px 0%, 100% 0%, calc(100% - 25px) 100%, 0% 100%);
    transition: left 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    transform: skewX(-12deg);
    filter: blur(0.5px);
}

.social-link:hover::before {
    opacity: 1;
    filter: blur(8px) brightness(2.5);
    animation-duration: 3s;
}

.social-link:hover::after {
    left: 150%;
}

.social-link:hover {
    transform: perspective(1200px) translateY(-15px) scale(1.08) rotateX(5deg) rotateY(2deg);
    box-shadow: 
        0 35px 80px rgba(0, 0, 0, 0.8),
        0 25px 60px rgba(139, 92, 246, 0.7),
        0 18px 45px rgba(0, 212, 255, 0.6),
        0 12px 35px rgba(255, 0, 128, 0.5),
        0 8px 25px rgba(0, 255, 136, 0.4),
        0 0 80px rgba(255, 255, 255, 0.3),
        inset 0 4px 0 rgba(255, 255, 255, 0.6),
        inset 0 -4px 0 rgba(0, 0, 0, 0.4);
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 255, 255, 0.6) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(255, 0, 255, 0.5) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(0, 255, 136, 0.7) 0%, transparent 70%),
        linear-gradient(135deg, 
            rgba(40, 40, 80, 0.95) 0%, 
            rgba(80, 40, 120, 0.9) 25%,
            rgba(40, 80, 160, 0.9) 50%,
            rgba(120, 40, 80, 0.9) 75%,
            rgba(60, 60, 100, 0.95) 100%);
    animation-duration: 5s;
    backdrop-filter: blur(50px) saturate(2);
    filter: brightness(1.3) saturate(1.4);
}

/* 🔮 SPECTACULAR HOLOGRAM SOCIAL ICONS 🔮 */
.social-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        0 12px 40px rgba(255, 255, 255, 0.3),
        0 8px 30px rgba(0, 255, 255, 0.4),
        0 4px 20px rgba(255, 0, 255, 0.3),
        inset 0 4px 0 rgba(255, 255, 255, 0.6),
        inset 0 -4px 0 rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: visible;
    transform-style: preserve-3d;
    backdrop-filter: blur(30px) saturate(2);
    z-index: 2;
}

/* Holographic Icon Effects */
.social-icon::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
    z-index: -1;
    opacity: 0;
    transition: all 0.8s ease;
    filter: blur(12px) brightness(2);
    background-size: 400% 400%;
    animation: iconHologramGlow 4s ease-in-out infinite;
}

.social-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.3) 0%, 
            transparent 30%,
            transparent 70%,
            rgba(0, 255, 255, 0.3) 100%),
        linear-gradient(45deg,
            transparent 40%,
            rgba(255, 255, 255, 0.6) 50%,
            transparent 60%);
    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
    opacity: 0;
    transition: all 0.6s ease;
    transform: scale(0.9) rotate(0deg);
}

@keyframes iconHologramGlow {
    0%, 100% { 
        background-position: 0% 50%;
        transform: scale(1);
    }
    50% { 
        background-position: 100% 50%;
        transform: scale(1.05);
    }
}

.social-link:hover .social-icon::before {
    opacity: 1;
    filter: blur(16px) brightness(3);
    animation-duration: 2s;
}

.social-link:hover .social-icon::after {
    opacity: 1;
    transform: scale(1) rotate(5deg);
}

/* 🎵 COSMIC TIKTOK HOLOGRAM 🎵 */
.tiktok .social-icon {
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            #ff0050 0deg, 
            #ff0080 60deg,
            #ff00ff 120deg,
            #8000ff 180deg,
            #ff0080 240deg,
            #ff0050 300deg,
            #ff0050 360deg),
        radial-gradient(circle at 30% 30%, rgba(255, 0, 200, 0.9) 0%, transparent 70%),
        radial-gradient(circle at 70% 70%, rgba(128, 0, 255, 0.8) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(255, 0, 80, 0.95) 0%, rgba(0, 0, 0, 0.8) 80%);
    background-size: 100% 100%, 250% 250%, 300% 300%, 150% 150%;
    animation: tiktokCosmicSpin 6s linear infinite, tiktokPulse 3s ease-in-out infinite;
    border: 3px solid;
    border-image: conic-gradient(from 0deg, #ff0050, #ff0080, #ff00ff, #8000ff, #ff0080, #ff0050) 1;
}

.tiktok .social-icon::before {
    background: conic-gradient(from 0deg at 50% 50%, 
        #ff0050 0deg, 
        #ff0080 90deg,
        #ff00ff 180deg,
        #8000ff 270deg,
        #ff0050 360deg);
    border-radius: 50%;
    filter: blur(15px) brightness(2);
}

.tiktok .social-icon svg {
    color: #ffffff;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 1));
    z-index: 3;
}

@keyframes tiktokCosmicSpin {
    0% { 
        background-position: 0% 0%, 0% 50%, 100% 0%, 50% 50%;
        transform: rotate(0deg);
    }
    100% { 
        background-position: 100% 100%, 100% 50%, 0% 100%, 50% 50%;
        transform: rotate(360deg);
    }
}

@keyframes tiktokPulse {
    0%, 100% { 
        filter: brightness(1) saturate(1.4);
        transform: scale(1);
    }
    50% { 
        filter: brightness(1.3) saturate(1.8);
        transform: scale(1.05);
    }
}

/* 📺 COSMIC YOUTUBE HOLOGRAM 📺 */
.youtube .social-icon {
    background: 
        conic-gradient(from 45deg at 50% 50%, 
            #ff0000 0deg, 
            #ff3300 72deg,
            #ff6600 144deg,
            #ffaa00 216deg,
            #ff3300 288deg,
            #ff0000 360deg),
        radial-gradient(ellipse at 30% 30%, rgba(255, 165, 0, 0.9) 0%, transparent 65%),
        radial-gradient(ellipse at 70% 70%, rgba(255, 50, 50, 0.8) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(255, 0, 0, 0.95) 0%, rgba(20, 0, 0, 0.9) 75%);
    background-size: 100% 100%, 280% 280%, 320% 320%, 140% 140%;
    animation: youtubeCosmicFlow 8s ease-in-out infinite, youtubePulse 4s ease-in-out infinite;
    border: 3px solid;
    border-image: conic-gradient(from 45deg, #ff0000, #ff3300, #ff6600, #ffaa00, #ff3300, #ff0000) 1;
}

.youtube .social-icon::before {
    background: conic-gradient(from 45deg at 50% 50%, 
        #ff0000 0deg, 
        #ff3300 120deg,
        #ff6600 240deg,
        #ff0000 360deg);
    border-radius: 50%;
    filter: blur(18px) brightness(2.2);
}

.youtube .social-icon svg {
    color: #ffffff;
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 1)) drop-shadow(0 0 35px rgba(255, 100, 0, 0.8));
    z-index: 3;
}

@keyframes youtubeCosmicFlow {
    0%, 100% { 
        background-position: 0% 0%, 0% 50%, 100% 0%, 50% 50%;
        filter: brightness(1) saturate(1.5);
    }
    33% {
        background-position: 33% 33%, 33% 66%, 66% 33%, 66% 66%;
        filter: brightness(1.2) saturate(1.7);
    }
    66% { 
        background-position: 66% 66%, 66% 33%, 33% 66%, 33% 33%;
        filter: brightness(1.1) saturate(1.6);
    }
}

@keyframes youtubePulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 20px 60px rgba(0, 0, 0, 0.8),
            0 12px 40px rgba(255, 255, 255, 0.3),
            0 8px 30px rgba(255, 100, 0, 0.5),
            0 4px 20px rgba(255, 0, 0, 0.4);
    }
    50% { 
        transform: scale(1.08);
        box-shadow: 
            0 25px 70px rgba(0, 0, 0, 0.9),
            0 15px 50px rgba(255, 255, 255, 0.4),
            0 12px 40px rgba(255, 100, 0, 0.7),
            0 8px 30px rgba(255, 0, 0, 0.6);
    }
}

/* ⛏️ COSMIC MINECRAFT HOLOGRAM ⛏️ */
.minecraft .social-icon {
    background: 
        conic-gradient(from 90deg at 50% 50%, 
            #228B22 0deg, 
            #32CD32 60deg,
            #00ff64 120deg,
            #40E0D0 180deg,
            #32CD32 240deg,
            #228B22 300deg,
            #228B22 360deg),
        radial-gradient(circle at 25% 25%, rgba(0, 255, 100, 0.9) 0%, transparent 70%),
        radial-gradient(circle at 75% 75%, rgba(64, 224, 208, 0.8) 0%, transparent 65%),
        radial-gradient(circle at 50% 50%, rgba(34, 139, 34, 0.95) 0%, rgba(0, 20, 0, 0.9) 80%);
    background-size: 100% 100%, 320% 320%, 280% 280%, 130% 130%;
    padding: 18px;
    animation: minecraftCosmicRotate 10s linear infinite, minecraftPulse 5s ease-in-out infinite;
    border: 3px solid;
    border-image: conic-gradient(from 90deg, #228B22, #32CD32, #00ff64, #40E0D0, #32CD32, #228B22) 1;
}

.minecraft .social-icon::before {
    background: conic-gradient(from 90deg at 50% 50%, 
        #228B22 0deg, 
        #32CD32 80deg,
        #00ff64 160deg,
        #40E0D0 240deg,
        #228B22 320deg,
        #228B22 360deg);
    border-radius: 50%;
    filter: blur(20px) brightness(2.5);
}

.minecraft .social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: 
        brightness(1.8) 
        contrast(1.6)
        drop-shadow(0 0 25px rgba(255, 255, 255, 1))
        drop-shadow(0 0 40px rgba(50, 205, 50, 0.9))
        drop-shadow(0 0 60px rgba(0, 255, 100, 0.8))
        drop-shadow(0 0 80px rgba(64, 224, 208, 0.6));
    transition: all 0.8s ease;
    z-index: 3;
    position: relative;
}

@keyframes minecraftCosmicRotate {
    0% { 
        background-position: 0% 0%, 0% 50%, 100% 0%, 50% 50%;
        transform: rotate(0deg);
    }
    100% { 
        background-position: 100% 100%, 100% 50%, 0% 100%, 50% 50%;
        transform: rotate(360deg);
    }
}

@keyframes minecraftPulse {
    0%, 100% { 
        filter: brightness(1.2) saturate(1.6);
        transform: scale(1);
    }
    50% { 
        filter: brightness(1.5) saturate(2);
        transform: scale(1.06);
    }
}

.minecraft .social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: 
        brightness(1.5) 
        contrast(1.3)
        drop-shadow(0 0 20px rgba(255, 255, 255, 0.7))
        drop-shadow(0 0 30px rgba(50, 205, 50, 0.6))
        drop-shadow(0 0 40px rgba(0, 255, 100, 0.4));
    transition: all 0.6s ease;
}

.social-link:hover .minecraft .social-icon img {
    filter: 
        brightness(1.8) 
        contrast(1.5)
        drop-shadow(0 0 30px rgba(255, 255, 255, 1))
        drop-shadow(0 0 50px rgba(50, 205, 50, 0.9))
        drop-shadow(0 0 70px rgba(0, 255, 100, 0.7))
        drop-shadow(0 0 90px rgba(144, 238, 144, 0.5));
}

/* 🌟 COSMIC HOLOGRAM HOVER EFFECTS 🌟 */
.social-link:hover .social-icon {
    transform: perspective(1000px) scale(1.3) rotateX(20deg) rotateY(10deg) translateZ(30px);
    box-shadow: 
        0 35px 90px rgba(0, 0, 0, 0.9),
        0 25px 70px rgba(255, 255, 255, 0.5),
        0 18px 50px rgba(0, 255, 255, 0.7),
        0 12px 40px rgba(255, 0, 255, 0.6),
        0 8px 30px rgba(0, 255, 136, 0.5),
        0 0 80px rgba(255, 255, 255, 0.4),
        inset 0 6px 0 rgba(255, 255, 255, 0.8),
        inset 0 -6px 0 rgba(0, 0, 0, 0.5);
    animation-duration: 2s;
    filter: brightness(1.6) saturate(2) contrast(1.2);
}

.social-link:hover .tiktok .social-icon {
    animation-duration: 4s;
    filter: brightness(1.8) saturate(2.2) hue-rotate(10deg);
}

.social-link:hover .youtube .social-icon {
    animation-duration: 3s;
    filter: brightness(1.7) saturate(2.1) hue-rotate(5deg);
}

.social-link:hover .minecraft .social-icon {
    animation-duration: 5s;
    filter: brightness(1.9) saturate(2.3) hue-rotate(15deg);
}

.social-link:hover .minecraft .social-icon img {
    filter: 
        brightness(2.2) 
        contrast(1.8)
        drop-shadow(0 0 35px rgba(255, 255, 255, 1))
        drop-shadow(0 0 60px rgba(50, 205, 50, 1))
        drop-shadow(0 0 80px rgba(0, 255, 100, 0.9))
        drop-shadow(0 0 100px rgba(64, 224, 208, 0.8))
        drop-shadow(0 0 120px rgba(144, 238, 144, 0.6));
}

/* SPECTACULAR SOCIAL TEXT */
.social-text h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 8px;
    transition: all 0.4s ease;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 0.4),
        0 0 30px rgba(0, 212, 255, 0.3);
    position: relative;
    z-index: 3;
}

.social-text p {
    font-size: 1.1rem;
    color: rgba(196, 181, 253, 0.9);
    font-weight: 700;
    font-family: 'Monaco', 'Consolas', monospace;
    transition: all 0.4s ease;
    text-shadow: 0 0 10px rgba(196, 181, 253, 0.5);
    position: relative;
    z-index: 3;
}

.social-link:hover .social-text h3 {
    color: #00D4FF;
    text-shadow: 
        0 0 25px rgba(0, 212, 255, 1),
        0 0 40px rgba(255, 255, 255, 0.8),
        0 0 60px rgba(0, 212, 255, 0.6);
    transform: scale(1.08) translateY(-2px);
}

.social-link:hover .social-text p {
    color: #ffffff;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.8),
        0 0 30px rgba(0, 212, 255, 0.6);
    transform: translateY(-1px);
}

/* Enhanced Contact Section with Premium Discord Button */
.contact {
    padding: 120px 0;
    background: 
        radial-gradient(circle at 50% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 30% 80%, rgba(88, 101, 242, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, rgba(10, 10, 15, 0.95) 0%, rgba(21, 21, 32, 0.9) 50%, rgba(10, 10, 15, 0.95) 100%);
    position: relative;
}

.contact-content {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

/* Premium Discord Contact Button */
.discord-contact-btn {
    display: flex;
    align-items: center;
    gap: 35px;
    background: linear-gradient(135deg, 
        rgba(88, 101, 242, 0.15) 0%, 
        rgba(0, 212, 255, 0.1) 50%, 
        rgba(139, 92, 246, 0.15) 100%);
    border: 3px solid;
    border-image: linear-gradient(45deg, #5865F2, #00D4FF, #a855f7, #5865F2) 1;
    border-radius: 30px;
    padding: 45px 55px;
    text-decoration: none;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(30px);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 15px 40px rgba(88, 101, 242, 0.3),
        0 5px 20px rgba(0, 212, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.discord-contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), rgba(88, 101, 242, 0.3), rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.discord-contact-btn::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #5865F2, #00D4FF, #a855f7, #5865F2);
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
    background-size: 300% 300%;
    animation: discordContactGlow 3s ease-in-out infinite;
}

@keyframes discordContactGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

.discord-contact-btn:hover::after {
    opacity: 1;
}

.discord-contact-btn:hover {
    transform: translateY(-12px) scale(1.05);
    border-color: rgba(88, 101, 242, 0.8);
    box-shadow: 
        0 30px 60px rgba(88, 101, 242, 0.5),
        0 10px 30px rgba(0, 212, 255, 0.4),
        0 0 50px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, 
        rgba(88, 101, 242, 0.25) 0%, 
        rgba(0, 212, 255, 0.2) 50%, 
        rgba(139, 92, 246, 0.25) 100%);
}

.discord-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #5865F2 0%, #00D4FF 50%, #a855f7 100%);
    background-size: 200% 200%;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 12px 35px rgba(88, 101, 242, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: discordIconGradient 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

@keyframes discordIconGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.discord-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), transparent, rgba(255, 255, 255, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.discord-contact-btn:hover .discord-icon::before {
    opacity: 1;
}

.discord-contact-btn:hover .discord-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 
        0 20px 50px rgba(88, 101, 242, 0.6),
        0 0 40px rgba(0, 212, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.discord-text h3 {
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 10px;
    transition: all 0.4s ease;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.discord-text p {
    font-size: 1.2rem;
    color: #00D4FF;
    font-weight: 700;
    font-family: 'Monaco', 'Consolas', monospace;
    transition: all 0.4s ease;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.discord-contact-btn:hover .discord-text h3 {
    color: #00D4FF;
    text-shadow: 0 0 25px rgba(0, 212, 255, 0.8);
    transform: scale(1.05);
}

.discord-contact-btn:hover .discord-text p {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.98) 0%, rgba(21, 21, 32, 0.95) 100%);
    padding: 60px 0 40px;
    border-top: 1px solid rgba(196, 181, 253, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo img {
    height: 50px;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
}

.footer-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 20px;
        gap: 20px;
    }
    
    .nav-left,
    .nav-right {
        justify-content: center;
        gap: 15px;
        flex: none;
    }
    
    .nav-left a,
    .nav-right a {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .cta-button {
        padding: 18px 35px;
        font-size: 1rem;
        width: 280px;
        justify-content: center;
    }
    
    .services,
    .team,
    .contact {
        padding: 80px 0;
    }
    
    .services-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card,
    .team-member {
        padding: 35px;
    }
    
    .discord-contact-btn {
        flex-direction: column;
        text-align: center;
        padding: 40px;
        gap: 25px;
    }
    
    .discord-icon {
        width: 80px;
        height: 80px;
    }
    
    .discord-text h3 {
        font-size: 1.6rem;
    }
    
    .discord-text p {
        font-size: 1rem;
    }
    
    .social-link {
        padding: 25px 30px;
        gap: 20px;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 16px 30px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 260px;
    }
    
    .service-card,
    .team-member {
        padding: 30px;
    }
    
    .team-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .discord-contact-btn {
        padding: 35px 25px;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .nav-left a,
    .nav-right a {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* Additional Beautiful Button States */
.cta-button:focus {
    outline: none;
    box-shadow: 
        0 20px 40px rgba(88, 101, 242, 0.4),
        0 0 0 3px rgba(0, 212, 255, 0.3);
}

.social-link:focus,
.discord-contact-btn:focus {
    outline: none;
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.4),
        0 0 0 3px rgba(196, 181, 253, 0.4);
}

/* Member role styling */
.member-role {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    font-weight: 600;
}