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

body {
    font-family: 'Quicksand', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--dark-bg);
    overflow-x: hidden;
    font-feature-settings: 'liga' 1, 'calt' 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Animated Gradient Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(
        45deg,
        #000000,
        #030008,
        #060010,
        #090018,
        #0c0020,
        #0f0028,
        #120030,
        #150038,
        #180040,
        #1b0048,
        #180040,
        #150038,
        #120030,
        #0f0028,
        #0c0020,
        #090018,
        #060010,
        #030008,
        #000000
    );
    background-size: 400% 400%;
    animation: gradientFlow 15s ease-in-out infinite;
    z-index: -10;
    opacity: 1;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
    100% {
        background-position: 0% 50%;
    }
}

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

/* Dark Purple Color Palette - Bad Girl Vibe */
:root {
    --primary-purple: #6D28D9;
    --secondary-purple: #8B5CF6;
    --light-purple: #A78BFA;
    --dark-purple: #5B21B6;
    --accent-purple: #C4B5FD;
    --white: #FFFFFF;
    --black: #000000;
    --dark-bg: #000000;
    --darker-bg: #000000;
    --card-bg: #0A0A0A;
    --card-hover: #151515;
    --text-light: #E5E7EB;
    --text-gray: #9CA3AF;
    --text-dark: #6B7280;
    --border-color: #1A1A1A;
    --neon-purple: #6D28D9;
    --neon-glow: rgba(109, 40, 217, 0.2);
    --bad-girl-red: #DC2626;
    --bad-girl-pink: #EC4899;
    --bad-girl-dark: #000000;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(109, 40, 217, 0.05);
}

.nav-container {
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    max-width: 100%;
    overflow: hidden;
}

.nav-logo h2 {
    color: var(--primary-purple);
    font-family: 'Dancing Script', cursive;
    font-weight: 600;
    font-size: 2.2rem;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.nav-logo:hover h2 {
    color: var(--secondary-purple);
    text-shadow: 0 0 15px rgba(109, 40, 217, 0.3);
    transform: scale(1.05);
}

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

.nav-discord-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-purple);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    white-space: nowrap;
}

.nav-discord-btn:hover {
    background: var(--dark-purple);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(109, 40, 217, 0.3);
    border-color: var(--secondary-purple);
}

.nav-discord-btn i {
    font-size: 1.1rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-purple);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--primary-purple);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
}

.hamburger:hover {
    transform: scale(1.1);
}

.hamburger:hover .bar {
    background: var(--secondary-purple);
    box-shadow: 0 0 10px rgba(109, 40, 217, 0.3);
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-purple);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}













.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 10;
    position: relative;
}

.hero-title {
    font-family: 'Dancing Script', cursive;
    font-size: 4.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.hero-title:hover {
    color: var(--primary-purple);
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
    transform: scale(1.02);
}

.highlight {
    color: var(--primary-purple);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--secondary-purple);
    opacity: 0.3;
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--primary-purple);
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: 'Quicksand', sans-serif;
    transition: all 0.3s ease;
}

.hero-subtitle:hover {
    color: var(--secondary-purple);
    text-shadow: 0 0 10px rgba(109, 40, 217, 0.25);
    transform: scale(1.02);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.02em;
    font-family: 'Quicksand', sans-serif;
    transition: all 0.3s ease;
}

.hero-description:hover {
    color: var(--text-light);
    text-shadow: 0 0 5px rgba(109, 40, 217, 0.2);
}

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

.btn {
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-family: 'Quicksand', sans-serif;
}

.btn-primary {
    background: var(--primary-purple);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(109, 40, 217, 0.2);
}

.btn-primary:hover {
    background: var(--dark-purple);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(109, 40, 217, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
}

.btn-secondary:hover {
    background: var(--primary-purple);
    color: var(--white);
    transform: translateY(-2px);
}

/* Profile Card */
.profile-card {
    background: rgba(10, 10, 10, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(109, 40, 217, 0.15);
    text-align: center;
    animation: float 6s ease-in-out infinite;
    border: 1px solid rgba(109, 40, 217, 0.1);
    position: relative;
    overflow: hidden;
    min-width: 350px;
    min-height: 400px;
    transition: all 0.3s ease;
    max-width: 100%;
}

.profile-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(10, 10, 10, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.6), 0 0 60px rgba(109, 40, 217, 0.25);
    border-color: var(--primary-purple);
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(109, 40, 217, 0.05), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

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

.profile-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-purple);
    box-shadow: 0 15px 40px rgba(109, 40, 217, 0.2), 0 0 30px rgba(109, 40, 217, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(109, 40, 217, 0.25), 0 0 40px rgba(109, 40, 217, 0.35);
    border-color: var(--secondary-purple);
}

.profile-image::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-purple), var(--secondary-purple), var(--primary-purple));
    z-index: -1;
    animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.kass-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.profile-image:hover .kass-image {
    transform: scale(1.1);
}

.social-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
    width: 100%;
}

.stat {
    text-align: center;
    transition: all 0.3s ease;
}

.stat:hover {
    transform: scale(1.1);
}

.stat:hover .stat-number {
    color: var(--secondary-purple);
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-purple);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-gray);
    margin-top: 0.25rem;
}

/* Background Shapes */
.hero-bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: fixed;
    border-radius: 50%;
    background: rgba(109, 40, 217, 0.1);
    animation: float 8s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(109, 40, 217, 0.2);
    transition: all 0.3s ease;
    pointer-events: none;
}

.shape:hover {
    transform: scale(1.2);
    background: rgba(109, 40, 217, 0.15);
    box-shadow: 0 0 30px rgba(109, 40, 217, 0.3);
}

/* Futuristic floating particles */
.shape::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, transparent, rgba(109, 40, 217, 0.15), transparent);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 20%;
    animation-delay: 4s;
}

/* Section Styles */
.section-title {
    text-align: center;
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 3rem;
    position: relative;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.section-title:hover {
    color: var(--primary-purple);
    text-shadow: 0 0 20px rgba(109, 40, 217, 0.3);
    transform: scale(1.02);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-purple);
    border-radius: 2px;
}

/* About Section */
.about {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(109, 40, 217, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(109, 40, 217, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(109, 40, 217, 0.03) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite;
}



@keyframes backgroundPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.02em;
    font-family: 'Quicksand', sans-serif;
    transition: all 0.3s ease;
}

.about-text p:hover {
    color: var(--text-light);
    text-shadow: 0 0 5px rgba(109, 40, 217, 0.2);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(10, 10, 10, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(109, 40, 217, 0.1);
}

.about-stat:hover {
    transform: translateY(-5px);
    background: rgba(10, 10, 10, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: var(--primary-purple);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(109, 40, 217, 0.2);
}

.about-stat i {
    font-size: 2rem;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
    display: block;
    transition: all 0.3s ease;
}

.about-stat:hover i {
    color: var(--secondary-purple);
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(109, 40, 217, 0.3);
}

.about-stat span {
    font-weight: 600;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.about-stat:hover span {
    color: var(--primary-purple);
    text-shadow: 0 0 5px rgba(109, 40, 217, 0.25);
}

.about-image-container {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

.about-image-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(109, 40, 217, 0.2);
    border-color: var(--primary-purple);
}

.about-kass-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image-container:hover .about-kass-image {
    transform: scale(1.05);
}

/* Content Section */
.content {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 49%, rgba(109, 40, 217, 0.01) 50%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(109, 40, 217, 0.01) 50%, transparent 51%);
    background-size: 100px 100px;
    animation: diagonalMove 15s linear infinite;
}



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

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

.content-card {
    background: rgba(10, 10, 10, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(109, 40, 217, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(109, 40, 217, 0.1);
    position: relative;
    overflow: hidden;
}

.content-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(109, 40, 217, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.content-card:hover::after {
    opacity: 1;
}

.content-card:hover {
    transform: translateY(-10px);
    background: rgba(10, 10, 10, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(109, 40, 217, 0.2);
    border-color: var(--primary-purple);
}

.content-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.content-image:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(109, 40, 217, 0.25);
}

.content-image i {
    font-size: 2rem;
    color: var(--white);
}

.content-card h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.content-card:hover h3 {
    color: var(--primary-purple);
    text-shadow: 0 0 10px rgba(109, 40, 217, 0.25);
    transform: scale(1.02);
}

.content-card p {
    color: var(--text-gray);
    line-height: 1.6;
    transition: all 0.3s ease;
}

.content-card:hover p {
    color: var(--text-light);
    text-shadow: 0 0 3px rgba(109, 40, 217, 0.2);
}

/* Social Media Section */
.social-media {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}



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

.social-card {
    background: rgba(10, 10, 10, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    color: var(--text-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(109, 40, 217, 0.1);
}

.social-card:hover {
    transform: translateY(-10px);
    background: rgba(10, 10, 10, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: var(--primary-purple);
    box-shadow: 0 20px 40px rgba(109, 40, 217, 0.2);
}

.social-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    transition: all 0.3s ease;
}

.social-card:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(109, 40, 217, 0.3));
}

.social-card.instagram i { color: #E4405F; }
.social-card.tiktok i { color: #FFFFFF; }
.social-card.youtube i { color: #FF0000; }
.social-card.twitter i { color: #1DA1F2; }

.social-card h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.social-card:hover h3 {
    color: var(--primary-purple);
    text-shadow: 0 0 10px rgba(109, 40, 217, 0.25);
    transform: scale(1.02);
}

.social-card p {
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.social-card:hover p {
    color: var(--text-light);
    text-shadow: 0 0 3px rgba(109, 40, 217, 0.2);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(109, 40, 217, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(109, 40, 217, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(109, 40, 217, 0.01) 0%, transparent 60%);
    animation: contactGlow 10s ease-in-out infinite;
}



@keyframes contactGlow {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.4; }
}

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

.contact-info h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.contact-info:hover h3 {
    color: var(--primary-purple);
    text-shadow: 0 0 15px rgba(109, 40, 217, 0.3);
    transform: scale(1.02);
}

.contact-info p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.contact-info:hover p {
    color: var(--text-light);
    text-shadow: 0 0 5px rgba(109, 40, 217, 0.2);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: var(--primary-purple);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-item:hover i {
    transform: scale(1.1);
    background: var(--secondary-purple);
    box-shadow: 0 5px 15px rgba(109, 40, 217, 0.25);
}

.contact-form {
    background: rgba(10, 10, 10, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(109, 40, 217, 0.1);
    transition: all 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
    background: rgba(10, 10, 10, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(109, 40, 217, 0.15);
    border-color: var(--primary-purple);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: var(--darker-bg);
    color: var(--text-light);
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: var(--primary-purple);
    box-shadow: 0 0 10px rgba(109, 40, 217, 0.15);
    transform: translateY(-2px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--text-light);
    padding: 50px 0 20px;
    border-top: 1px solid var(--border-color);
}

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

.footer-section h3,
.footer-section h4 {
    font-family: 'Dancing Script', cursive;
    color: var(--primary-purple);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.footer-section:hover h3,
.footer-section:hover h4 {
    color: var(--secondary-purple);
    text-shadow: 0 0 10px rgba(109, 40, 217, 0.25);
    transform: scale(1.02);
}

.footer-section p {
    color: var(--text-gray);
    line-height: 1.6;
    transition: all 0.3s ease;
}

.footer-section:hover p {
    color: var(--text-light);
    text-shadow: 0 0 3px rgba(109, 40, 217, 0.2);
}

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

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

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-section ul li a:hover {
    color: var(--primary-purple);
    text-shadow: 0 0 5px rgba(109, 40, 217, 0.25);
    transform: translateX(5px);
}

.footer-section ul li a:hover {
    color: var(--primary-purple);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-purple);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-purple);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(109, 40, 217, 0.25);
}

.footer-bottom {
    text-align: center;
    padding: 2rem 2rem 0 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-discord-btn {
        display: none;
    }

    .nav-container {
        padding: 0 1rem;
        gap: 1rem;
    }

    .nav-logo h2 {
        font-size: 1.8rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        border-top: 1px solid var(--border-color);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero {
        padding: 120px 0 60px 0;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1rem;
        margin: 1rem 0;
    }

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

    .profile-card {
        margin: 0 auto;
        max-width: 300px;
    }

    .social-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .stat {
        padding: 0.5rem;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .about {
        padding: 60px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .about-text p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .about-stat {
        padding: 1rem;
        text-align: center;
    }

    .about-image-container {
        max-width: 300px;
        margin: 0 auto;
    }

    .content {
        padding: 60px 0;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .content-card {
        padding: 1.5rem;
    }

    .social-media {
        padding: 60px 0;
    }

    .social-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .social-card {
        padding: 1.5rem;
    }

    .contact {
        padding: 60px 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 1rem;
    }

    .footer {
        padding: 40px 0 20px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .footer-bottom {
        padding: 1.5rem 1rem 0 1rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .container {
        padding: 0;
    }

    /* Fix hero background shapes for mobile */
    .hero-bg-shapes {
        display: none;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 0.5rem;
    }

    .nav-logo h2 {
        font-size: 1.6rem;
    }

    .hero {
        padding: 100px 0 40px 0;
    }

    .hero-container {
        padding: 0 0.5rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-width: 120px;
    }

    .profile-card {
        max-width: 250px;
    }

    .social-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .stat {
        padding: 0.3rem;
    }

    .stat-number {
        font-size: 1rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .about-content {
        padding: 0 0.5rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .about-image-container {
        max-width: 250px;
    }

    .content-grid {
        padding: 0 0.5rem;
    }

    .content-card {
        padding: 1rem;
    }

    .content-card h3 {
        font-size: 1.2rem;
    }

    .content-card p {
        font-size: 0.9rem;
    }

    .social-grid {
        padding: 0 0.5rem;
    }

    .social-card {
        padding: 1rem;
    }

    .social-card h3 {
        font-size: 1.2rem;
    }

    .social-card p {
        font-size: 0.9rem;
    }

    .contact-content {
        padding: 0 0.5rem;
    }

    .contact-form {
        padding: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }

    .footer-content {
        padding: 0 0.5rem;
    }

    .footer-bottom {
        padding: 1rem 0.5rem 0 0.5rem;
    }

    .section-title {
        font-size: 1.8rem;
        padding: 0 0.5rem;
    }

    .container {
        padding: 0;
    }
}

@media (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        min-width: 100px;
    }

    .profile-card {
        max-width: 220px;
    }

    .social-stats {
        gap: 0.3rem;
    }

    .stat-number {
        font-size: 0.9rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .section-title {
        font-size: 1.6rem;
    }
}

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

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.about-content,
.content-grid,
.social-grid,
.contact-content {
    animation: fadeInUp 0.8s ease-out;
} 