:root {
    --primary-pink: #ff85a2;
    --light-pink: #ffe4e1;
    --dark-pink: #ff5c8a;
    --bg-pink: #fff0f5;
    --white: #ffffff;
    --text-main: #2d3436;
    --text-light: #636e72;
    --vip-color: #9b59b6;
    --vipplus-color: #e91e63;
    --mvp-color: #00bcd4;
    --glass-bg: rgba(255, 255, 255, 0.9);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Nunito', sans-serif;
    background-color: var(--bg-pink);
    color: var(--text-main);
    overflow-x: hidden;
    /* Cute Dot Pattern Background */
    background-image: radial-gradient(#ffcbd6 1.5px, transparent 1.5px);
    background-size: 25px 25px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 14px;
}

::-webkit-scrollbar-track {
    background: #fff0f5;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-pink);
    border-radius: 7px;
    border: 3px solid #fff0f5;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-pink);
}

/* Selection Color */
::selection {
    background: var(--primary-pink);
    color: white;
}

.pixel-text {
    font-family: 'VT323', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Page Loader */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff0f5;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s, visibility 0.3s;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid var(--light-pink);
    border-top: 5px solid var(--dark-pink);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

.loader-text {
    font-family: 'VT323', monospace;
    font-size: 24px;
    color: var(--dark-pink);
    animation: pulse 1s infinite;
}

@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes pulse { 0% { opacity: 0.6; } 50% { opacity: 1; } 100% { opacity: 0.6; } }

/* Animations & Effects */
@keyframes wobble {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
    100% { transform: rotate(0deg); }
}

.wobble-hover:hover {
    animation: wobble 0.5s ease-in-out;
}

@keyframes pulse-pink {
    0% { box-shadow: 0 0 0 0 rgba(255, 92, 138, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 92, 138, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 92, 138, 0); }
}

.pulse-effect {
    animation: pulse-pink 2s infinite;
}

.hvr-underline-from-center {
    display: inline-block;
    vertical-align: middle;
    transform: perspective(1px) translateZ(0);
    position: relative;
    overflow: hidden;
}

.hvr-underline-from-center:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 51%;
    right: 51%;
    bottom: 0;
    background: var(--dark-pink);
    height: 4px;
    transition-property: left, right;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
}

.hvr-underline-from-center:hover:before, .hvr-underline-from-center:focus:before, .hvr-underline-from-center:active:before {
    left: 0;
    right: 0;
}

/* Advanced Animations & Effects */
@keyframes glow {
    0%, 100% { 
        box-shadow: 0 0 5px rgba(255, 133, 162, 0.5),
                    0 0 10px rgba(255, 133, 162, 0.3),
                    0 0 15px rgba(255, 133, 162, 0.2);
    }
    50% { 
        box-shadow: 0 0 10px rgba(255, 133, 162, 0.8),
                    0 0 20px rgba(255, 133, 162, 0.6),
                    0 0 30px rgba(255, 133, 162, 0.4);
    }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotate-3d {
    0% { transform: perspective(1000px) rotateY(0deg); }
    100% { transform: perspective(1000px) rotateY(360deg); }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

/* Glow Effect */
.glow-effect {
    animation: glow 2s ease-in-out infinite;
}

/* Gradient Animation */
.gradient-animated {
    background: linear-gradient(-45deg, var(--primary-pink), var(--dark-pink), #ffb7c5, var(--light-pink));
    background-size: 400% 400%;
    animation: gradient-shift 4s ease infinite;
}

/* Scroll Reveal Animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* 3D Card Effect */
.card-3d {
    transform-style: preserve-3d;
    transition: transform 0.3s;
}

.card-3d:hover {
    transform: rotateY(5deg) rotateX(5deg) scale(1.05);
}

/* Shimmer Effect */
.shimmer {
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Parallax Container */
.parallax-container {
    position: relative;
    overflow: hidden;
}

.parallax-element {
    will-change: transform;
    transition: transform 0.1s ease-out;
}

/* Magnetic Hover Effect */
.magnetic {
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Ripple Effect */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ripple:active::after {
    width: 300px;
    height: 300px;
}

/* Text Gradient Animation */
.text-gradient {
    background: linear-gradient(90deg, var(--dark-pink), var(--primary-pink), #ffb7c5);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s linear infinite;
}

/* Floating Animation Enhanced */
.floating-enhanced {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(2deg); }
    66% { transform: translateY(-10px) rotate(-2deg); }
}

/* Bounce In Animation */
.bounce-in {
    animation: bounce-in 0.6s ease-out;
}

@keyframes bounce-in {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

/* Fade In Up */
.fade-in-up {
    animation: fade-in-up 0.8s ease-out;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Scale Effect */
.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.1);
}

/* Glass Morphism Enhanced */
.glass-enhanced {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(255, 133, 162, 0.1);
}

/* Neon Glow */
.neon-glow {
    text-shadow: 
        0 0 5px var(--primary-pink),
        0 0 10px var(--primary-pink),
        0 0 15px var(--primary-pink),
        0 0 20px var(--dark-pink);
}

/* Particle Effect Background */
.particle-bg {
    position: relative;
    overflow: hidden;
}

.particle-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255, 133, 162, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(255, 92, 138, 0.3), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 182, 193, 0.3), transparent);
    background-size: 200px 200px;
    animation: particle-float 20s linear infinite;
    pointer-events: none;
}

@keyframes particle-float {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-100px) translateX(50px); }
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: rgba(255, 255, 255, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(255, 133, 162, 0.1);
    border-bottom: 4px solid var(--primary-pink);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar.scrolled {
    padding: 10px 50px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 30px rgba(255, 133, 162, 0.2);
    border-bottom-width: 3px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo {
    height: 45px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.online-status {
    background: var(--light-pink);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    color: var(--dark-pink);
    display: flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--primary-pink);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #4cd137;
    border-radius: 50%;
    box-shadow: 0 0 5px #4cd137;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 700;
    margin: 0 15px;
    font-size: 18px;
    text-transform: uppercase;
    font-family: 'VT323', monospace;
    letter-spacing: 1px;
    padding-bottom: 5px;
}

.nav-actions {
    display: flex;
    gap: 10px;
}

/* Buttons */
.btn {
    text-decoration: none;
    font-weight: 800;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
    font-family: 'VT323', monospace;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
}

.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 133, 162, 0.4);
}

.btn:active {
    transform: translateY(-1px);
}

.btn-small {
    padding: 10px 25px;
    font-size: 18px;
}

.btn-large {
    padding: 18px 45px;
    font-size: 26px;
}

.btn-block {
    width: 100%;
    padding: 15px;
    font-size: 22px;
}

.btn-primary {
    background: linear-gradient(45deg, var(--dark-pink), #e91e63);
    color: white;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
}

.btn-white {
    background: white;
    color: var(--dark-pink);
    border: 2px solid var(--light-pink);
}

.btn-modal-action {
    padding: 15px 40px;
    font-size: 24px;
    border-radius: 50px;
    background: linear-gradient(90deg, #ff5c8a, #ff85a2);
    box-shadow: 0 5px 15px rgba(255, 92, 138, 0.4);
    margin-top: 10px;
    width: auto;
    display: inline-flex;
}

.btn-modal-action:hover {
    transform: scale(1.05);
    background: linear-gradient(90deg, #ff85a2, #ff5c8a);
    box-shadow: 0 8px 25px rgba(255, 92, 138, 0.5);
}

/* Hero Section */
.hero {
    min-height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    overflow: hidden;
    background: #551e32;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 133, 162, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 92, 138, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(85, 30, 50, 0.6), rgba(40, 10, 20, 0.7));
    z-index: -1;
    pointer-events: none;
}

.hero-content {
    color: white;
    z-index: 2;
    max-width: 650px;
    position: relative;
}

.hero-tags {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.tag {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero h1 {
    font-size: 80px;
    line-height: 1;
    margin-bottom: 25px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.highlight-pink {
    color: var(--primary-pink);
    text-shadow: 0 0 20px rgba(255, 133, 162, 0.6);
}

.hero-desc {
    font-size: 20px;
    margin-bottom: 45px;
    line-height: 1.6;
    opacity: 0.95;
    font-weight: 400;
    max-width: 90%;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    z-index: 2;
    width: 450px;
    display: flex;
    justify-content: center;
    filter: drop-shadow(0 0 40px rgba(255, 133, 162, 0.4));
    transition: transform 0.3s;
}

.hero-image:hover {
    transform: scale(1.05);
}

.hero-character {
    width: 100%;
    filter: drop-shadow(0 0 40px rgba(255, 133, 162, 0.4));
}

.floating {
    animation: floating 4s ease-in-out infinite;
}

.floating-particles .particle {
    position: absolute;
    font-size: 30px;
    animation: floating 3s infinite alternate;
}

@keyframes floating {
    0% { transform: translate(0, 0px); }
    50% { transform: translate(0, 20px); }
    100% { transform: translate(0, 0px); }
}

/* Stats Bar */
.stats-bar {
    background: white;
    display: flex;
    justify-content: space-around;
    padding: 30px 10%;
    margin-top: -50px;
    position: relative;
    z-index: 2;
    margin-left: 10%;
    margin-right: 10%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.stats-bar:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(255, 133, 162, 0.2);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-item i {
    font-size: 40px;
    color: var(--dark-pink);
    background: var(--light-pink);
    padding: 15px;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    z-index: 1;
}

.stat-item i::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 133, 162, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
    z-index: -1;
}

.stat-item:hover i {
    transform: rotate(15deg) scale(1.15);
    box-shadow: 0 10px 25px rgba(255, 133, 162, 0.3);
}

.stat-item:hover i::after {
    width: 80px;
    height: 80px;
}

.stat-info h3 {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
    color: var(--text-main);
}

.stat-info p {
    margin: 0;
    color: var(--text-light);
    font-weight: 600;
}

/* Sections General */
.section {
    padding: 100px 10%;
    text-align: center;
}

.section-header {
    margin-bottom: 70px;
}

.section-badge {
    background: var(--light-pink);
    color: var(--dark-pink);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-block;
}

.section-title {
    font-size: 56px;
    color: var(--dark-pink);
    margin: 10px 0;
    text-shadow: 3px 3px 0 var(--light-pink);
    transition: all 0.3s;
}

.section-title:hover {
    transform: scale(1.05);
    text-shadow: 3px 3px 0 var(--light-pink), 0 0 20px rgba(255, 133, 162, 0.5);
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Features */
.features-section {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 25px;
    border: 1px solid #eee;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.feature-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 133, 162, 0.25);
    border-color: var(--light-pink);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 240, 245, 0.5));
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--bg-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon {
    font-size: 40px;
}

.feature-card h3 {
    font-size: 32px;
    color: var(--text-main);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Shop */
.shop-section {
    background: linear-gradient(180deg, white 0%, var(--bg-pink) 100%);
}

.shop-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.shop-card {
    background: white;
    border-radius: 25px;
    padding: 0;
    width: 320px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.shop-card:hover {
    transform: translateY(-10px);
}

.shop-card.transform-scale {
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border: 2px solid var(--vipplus-color);
}

.shop-card.transform-scale:hover {
    transform: scale(1.08);
}

.rank-header {
    padding: 30px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
}

.rank-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.2);
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 800;
}

.rank-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    display: block;
    margin: 0 auto;
}

.rank-vip .rank-header { background: linear-gradient(135deg, #9b59b6, #8e44ad); }
.rank-vipplus .rank-header { background: linear-gradient(135deg, #e91e63, #c2185b); }
.rank-mvp .rank-header { background: linear-gradient(135deg, #00bcd4, #0097a7); }

.rank-header h3 {
    margin: 0;
    font-size: 36px;
}

.rank-price {
    font-size: 48px;
    color: var(--text-main);
    margin: 30px 0 10px;
    font-weight: 800;
}

.rank-price small {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 600;
}

.rank-perks {
    list-style: none;
    padding: 0 30px;
    text-align: left;
    margin-bottom: 30px;
}

.rank-perks li {
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 16px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.rank-perks li i {
    color: #4cd137;
    font-size: 12px;
}

.btn-vip, .btn-vipplus, .btn-mvp {
    margin: 0 30px 30px;
    width: calc(100% - 60px);
    border-radius: 15px;
    color: white;
    box-shadow: none;
}

.rank-vip .btn-vip { background: #9b59b6; }
.rank-vipplus .btn-vipplus { background: #e91e63; }
.rank-mvp .btn-mvp { background: #00bcd4; }

/* Gallery */
.gallery-section {
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 92, 138, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-overlay i {
    color: white;
    font-size: 40px;
    transform: scale(0);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-overlay i { transform: scale(1); }
.gallery-item:hover img { transform: scale(1.1); }

/* Download */
.download-section {
    padding: 0 10% 100px;
    background: white;
}

.download-container {
    background: linear-gradient(135deg, var(--bg-pink), #fff);
    border-radius: 40px;
    display: flex;
    align-items: center;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.download-content {
    flex: 1;
    z-index: 1;
    padding-right: 50px;
}

.download-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.tilt-image {
    max-width: 100%;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    filter: drop-shadow(-20px 20px 30px rgba(0,0,0,0.2));
    transition: transform 0.3s;
}

.download-image:hover .tilt-image {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.download-options {
    display: flex;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    background: white;
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-main);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: all 0.2s;
    border: 2px solid transparent;
}

.download-btn:hover {
    transform: translateY(-5px);
    border-color: var(--primary-pink);
    box-shadow: 0 15px 30px rgba(255, 133, 162, 0.2);
}

.download-btn i {
    font-size: 32px;
}

.windows i { color: #00a8e8; }
.mac i { color: #333; }

.btn-text {
    display: flex;
    flex-direction: column;
}

.btn-text span {
    font-size: 12px;
    color: var(--text-light);
}

.btn-text strong {
    font-size: 18px;
}

.requirements {
    color: var(--text-light);
    font-size: 14px;
}

/* FAQ */
.faq-section {
    background: var(--bg-pink);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active {
    box-shadow: 0 10px 30px rgba(255, 133, 162, 0.15);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
    color: var(--text-main);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-light);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding-bottom: 25px;
    max-height: 200px;
}

.faq-question i {
    transition: transform 0.3s;
    color: var(--primary-pink);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Footer */
.site-footer {
    background: #2d3436;
    color: white;
    position: relative;
    padding-bottom: 50px;
}

.footer-wave {
    line-height: 0;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: auto;
    fill: var(--bg-pink); 
}
/* Flip wave to make it look like top border */
.footer-wave {
    transform: rotate(180deg);
    margin-bottom: -2px; /* Remove gap */
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding: 50px 10%;
}

.footer-brand h3 {
    font-size: 36px;
    color: var(--primary-pink);
    margin: 0 0 15px 0;
    background: -webkit-linear-gradient(#ff85a2, #e91e63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-links h4 {
    color: white;
    margin-bottom: 25px;
    font-family: 'VT323', monospace;
    font-size: 24px;
    letter-spacing: 1px;
}

.footer-links a {
    display: block;
    color: #b2bec3;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary-pink);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 50px;
    color: #636e72;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin: 0 10%;
}

/* Newsletter Styles */
.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    background: rgba(255,255,255,0.1);
    padding: 5px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.1);
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 15px;
    color: white;
    font-family: 'Nunito', sans-serif;
    outline: none;
}

.newsletter-input::placeholder {
    color: #b2bec3;
}

.newsletter-btn {
    background: var(--primary-pink);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.newsletter-btn:hover {
    transform: scale(1.1);
    background: var(--dark-pink);
}

/* Modal */
.modal {
    display: none; 
    position: fixed; 
    z-index: 2000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.6); 
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s;
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto; 
    padding: 0;
    border: 1px solid #888;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    position: relative;
    animation: slideDown 0.3s;
    overflow: hidden;
}

.modal-body {
    padding: 40px;
    text-align: center;
}

.modal-icon {
    font-size: 60px;
    color: var(--dark-pink);
    margin-bottom: 20px;
    background: var(--light-pink);
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
}

.modal-body h3 {
    font-size: 32px;
    margin: 0 0 15px;
    color: var(--text-main);
}

.modal-body p {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 30px;
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
    z-index: 2001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    transition: all 0.3s;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--dark-pink);
    background: var(--light-pink);
    text-decoration: none;
    cursor: pointer;
    transform: scale(1.1);
}

/* Gallery Modal Specific Styles */
#gallery-modal .modal-content {
    max-width: 900px;
    margin: 5% auto;
}

#gallery-modal #modal-img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    display: block;
    background: #f5f5f5;
}

@keyframes fadeIn {
    from {opacity: 0}
    to {opacity: 1}
}

@keyframes slideDown {
    from {transform: translateY(-50px); opacity: 0;}
    to {transform: translateY(0); opacity: 1;}
}

/* ========== ADVANCED EFFECTS & ANIMATIONS ========== */

/* Floating Animation */
@keyframes float-up {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes float-down {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(20px); }
}

.float-animation {
    animation: float-up 3s ease-in-out infinite;
}

/* Ripple Effect */
@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

.ripple-effect {
    position: relative;
    overflow: hidden;
}

.ripple-effect::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ripple-effect:active::after {
    width: 300px;
    height: 300px;
}

/* Magnetic Hover Effect */
.magnetic-hover {
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Parallax Scroll Effect */
.parallax-element {
    transition: transform 0.3s ease-out;
}

/* Gradient Text Animation */
@keyframes gradient-text {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.gradient-text-animated {
    background: linear-gradient(-45deg, #ff5c8a, #ff85a2, #ffb7c5, #ff5c8a);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-text 3s ease infinite;
}

/* Bounce In Animation */
@keyframes bounce-in {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(-50px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05) translateY(0);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

.bounce-in {
    animation: bounce-in 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Shake Animation */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.shake:hover {
    animation: shake 0.5s;
}

/* Flip Animation */
@keyframes flip {
    0% { transform: perspective(400px) rotateY(0); }
    40% { transform: perspective(400px) rotateY(-90deg); }
    60% { transform: perspective(400px) rotateY(-90deg); }
    100% { transform: perspective(400px) rotateY(0); }
}

.flip-on-hover:hover {
    animation: flip 0.6s;
}

/* Zoom In on Hover */
.zoom-on-hover {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.zoom-on-hover:hover {
    transform: scale(1.1);
}

/* Rotate on Hover */
.rotate-on-hover {
    transition: transform 0.5s ease;
}

.rotate-on-hover:hover {
    transform: rotate(360deg);
}

/* Slide In from Left */
@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-left {
    animation: slide-in-left 0.6s ease-out;
}

/* Slide In from Right */
@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slide-in-right 0.6s ease-out;
}

/* Fade In Up */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fade-in-up 0.6s ease-out;
}

/* Particle Background */
.particle-bg {
    position: relative;
    overflow: hidden;
}

.particle-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255, 133, 162, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(255, 182, 193, 0.3), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 133, 162, 0.2), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(255, 182, 193, 0.2), transparent);
    background-size: 200% 200%;
    background-position: 0% 0%, 100% 100%, 50% 50%, 0% 100%;
    animation: particle-move 20s ease infinite;
    pointer-events: none;
}

@keyframes particle-move {
    0%, 100% { background-position: 0% 0%, 100% 100%, 50% 50%, 0% 100%; }
    50% { background-position: 100% 0%, 0% 100%, 50% 50%, 100% 0%; }
}

/* Neon Glow Effect */
.neon-glow-pink {
    text-shadow: 
        0 0 5px rgba(255, 92, 138, 0.5),
        0 0 10px rgba(255, 92, 138, 0.5),
        0 0 15px rgba(255, 92, 138, 0.5),
        0 0 20px rgba(255, 92, 138, 0.5);
    animation: neon-pulse 2s ease-in-out infinite alternate;
}

@keyframes neon-pulse {
    from {
        text-shadow: 
            0 0 5px rgba(255, 92, 138, 0.5),
            0 0 10px rgba(255, 92, 138, 0.5),
            0 0 15px rgba(255, 92, 138, 0.5),
            0 0 20px rgba(255, 92, 138, 0.5);
    }
    to {
        text-shadow: 
            0 0 10px rgba(255, 92, 138, 0.8),
            0 0 20px rgba(255, 92, 138, 0.8),
            0 0 30px rgba(255, 92, 138, 0.8),
            0 0 40px rgba(255, 92, 138, 0.8);
    }
}

/* Liquid Background */
.liquid-bg {
    position: relative;
    overflow: hidden;
}

.liquid-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 133, 162, 0.1) 0%, transparent 70%);
    animation: liquid-flow 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes liquid-flow {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-30px, 30px) rotate(240deg); }
}

/* 3D Card Tilt */
.card-3d-tilt {
    transform-style: preserve-3d;
    transition: transform 0.3s;
}

/* Hover Scale with Shadow */
.hover-scale-shadow {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hover-scale-shadow:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 92, 138, 0.3);
}

/* Gradient Border Animation */
@keyframes gradient-border {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.gradient-border {
    position: relative;
    background: linear-gradient(135deg, #ff5c8a, #ff85a2, #ffb7c5);
    background-size: 200% 200%;
    padding: 3px;
    border-radius: 20px;
    animation: gradient-border 3s ease infinite;
}

.gradient-border > * {
    background: white;
    border-radius: 17px;
}

/* Text Reveal Animation */
@keyframes text-reveal {
    from {
        clip-path: inset(0 100% 0 0);
    }
    to {
        clip-path: inset(0 0 0 0);
    }
}

.text-reveal {
    animation: text-reveal 1s ease-out;
}

/* Sparkle Effect */
@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

.sparkle::before,
.sparkle::after {
    content: '✨';
    position: absolute;
    font-size: 20px;
    animation: sparkle 2s ease-in-out infinite;
}

.sparkle::before {
    top: -10px;
    left: -10px;
    animation-delay: 0s;
}

.sparkle::after {
    bottom: -10px;
    right: -10px;
    animation-delay: 1s;
}

/* Smooth Fade In */
.fade-in {
    animation: fadeIn 0.8s ease-in;
}

/* Stagger Animation Delay */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

/* Enhanced Button Hover */
.btn-enhanced {
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.btn-enhanced::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-enhanced:hover::before {
    width: 300px;
    height: 300px;
}

.btn-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 92, 138, 0.4);
}

/* Loading Skeleton */
@keyframes skeleton-loading {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
}

/* Morphing Blob */
@keyframes morph-blob {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

.morph-blob {
    animation: morph-blob 8s ease-in-out infinite;
}

/* Glitch Effect */
@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

.glitch:hover {
    animation: glitch 0.3s infinite;
}

/* Enhanced Scroll Reveal */
.scroll-reveal-enhanced {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal-enhanced.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Cursor Follow Effect */
.cursor-follow {
    position: relative;
    cursor: pointer;
}

/* Enhanced Glassmorphism */
.glass-enhanced-v2 {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(255, 92, 138, 0.15);
}

/* Hover Lift Effect */
.hover-lift {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(255, 92, 138, 0.3);
}

/* Pulse Ring */
@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    50%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

.pulse-ring {
    position: relative;
}

.pulse-ring::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid var(--dark-pink);
    border-radius: 20px;
    transform: translate(-50%, -50%);
    animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    pointer-events: none;
}

/* Typewriter Effect */
@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

.typewriter {
    overflow: hidden;
    white-space: nowrap;
    animation: typewriter 2s steps(40) 1s forwards;
}

/* Enhanced Navbar */
.navbar-enhanced {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 20px rgba(255, 92, 138, 0.1);
    transition: all 0.3s;
}

/* Smooth Transitions for All Interactive Elements */
a, button, .btn, .feature-card, .shop-card {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Enhanced Focus States */
*:focus {
    outline: 2px solid var(--dark-pink);
    outline-offset: 2px;
}

/* Smooth Image Loading */
img {
    transition: opacity 0.3s;
}

img[loading="lazy"] {
    opacity: 0;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Enhanced Navbar Scrolled State */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(255, 92, 138, 0.15);
    padding: 10px 0;
}

/* Particle Effect */
.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: particle-float 3s ease-in-out infinite;
}

@keyframes particle-float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(20px);
        opacity: 0;
    }
}
