/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --pookie-pink: #fce4ec;
    --pookie-pink-light: #f8bbd0;
    --pookie-pink-dark: #f06292;
    --pookie-accent: #ff80ab;
    --background-light: #FFF5F8;
    --background-dark: #2C2533;
    --text-light: #4F4459;
    --text-dark: #EAE0F0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--background-light);
    transition: background-color 0.5s, color 0.5s;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.dark {
    background-color: var(--background-dark);
    color: var(--text-dark);
}

/* Link Styles */
a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--pookie-accent);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea {
    font-family: inherit;
}

/* Font Definitions */
.font-display {
    font-family: 'Brush Script MT', cursive, 'Comic Sans MS', cursive;
    font-weight: normal;
}

/* Material Icons Replacement */
.material-symbols-outlined {
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-style: normal;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
}

.material-symbols-outlined::before {
    content: attr(data-icon);
}

/* Icon & Emoji Styling */
span[class*="text-"] {
    display: inline-block;
    vertical-align: middle;
}

/* Ensure emojis render properly */
.text-4xl, .text-5xl, .text-6xl {
    line-height: 1;
}

/* Animations */
@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(240, 98, 146, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(240, 98, 146, 0.8), 0 0 60px rgba(255, 128, 171, 0.6);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes morphBlob {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    50% {
        border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%;
    }
    75% {
        border-radius: 60% 40% 60% 40% / 70% 30% 50% 60%;
    }
}

@keyframes textGlitch {
    0% {
        text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
                    -0.025em -0.05em 0 rgba(0, 255, 0, 0.75),
                    0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    }
    14% {
        text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
                    -0.025em -0.05em 0 rgba(0, 255, 0, 0.75),
                    0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    }
    15% {
        text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
                    0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
                    -0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    49% {
        text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
                    0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
                    -0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    50% {
        text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
                    0.05em 0 0 rgba(0, 255, 0, 0.75),
                    0 -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    99% {
        text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
                    0.05em 0 0 rgba(0, 255, 0, 0.75),
                    0 -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    100% {
        text-shadow: -0.025em 0 0 rgba(255, 0, 0, 0.75),
                    -0.025em -0.025em 0 rgba(0, 255, 0, 0.75),
                    -0.025em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
}

@keyframes neonPulse {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(240, 98, 146, 0.8))
                drop-shadow(0 0 10px rgba(240, 98, 146, 0.6))
                drop-shadow(0 0 20px rgba(240, 98, 146, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 10px rgba(240, 98, 146, 1))
                drop-shadow(0 0 20px rgba(255, 128, 171, 0.8))
                drop-shadow(0 0 40px rgba(255, 128, 171, 0.6));
    }
}

@keyframes holographic {
    0% {
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }
    50% {
        background-position: 100% 50%;
        filter: hue-rotate(45deg);
    }
    100% {
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }
}

@keyframes liquidMove {
    0%, 100% {
        clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
    }
    25% {
        clip-path: polygon(0% 60%, 16% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
    }
    50% {
        clip-path: polygon(0% 50%, 15% 52%, 34% 55%, 51% 55%, 67% 53%, 83% 52%, 100% 45%, 100% 100%, 0% 100%);
    }
    75% {
        clip-path: polygon(0% 53%, 14% 60%, 27% 65%, 51% 63%, 76% 56%, 92% 50%, 100% 48%, 100% 100%, 0% 100%);
    }
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100%) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-45deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.05) rotate(5deg);
    }
    70% {
        transform: scale(0.9) rotate(-3deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

/* Utility Classes */
.floating-element {
    animation: float 6s ease-in-out infinite;
}

.pookie-gradient {
    background: linear-gradient(135deg, #fce4ec, #f8bbd0, #f48fb1, #f06292);
    background-size: 200% 200%;
    animation: gradient 8s ease infinite;
}

.pookie-gradient-text {
    background: linear-gradient(135deg, #f48fb1, #f06292);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.icon-glow {
    transition: all 0.3s ease-in-out;
}

.icon-glow:hover {
    color: #ff80ab;
    text-shadow: 0 0 15px #ff80ab, 0 0 25px #ff80ab;
}

.shimmer-effect {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    background-size: 1000px 100%;
    animation: shimmer 3s infinite;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.glass-morphism {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card {
    transition: all 0.4s ease;
    position: relative;
    transform-style: preserve-3d;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(240, 98, 146, 0.3);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 128, 171, 0.1));
    opacity: 0;
    transition: opacity 0.4s;
    border-radius: 0.5rem;
    pointer-events: none;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.process-step {
    position: relative;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #f48fb1, transparent);
}

.process-step:last-child::before {
    display: none;
}

@media (max-width: 768px) {
    .process-step::before {
        display: none;
    }
}

/* Utility Classes - Tailwind Replacement */

/* Loading Screen */
.loading-screen {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #fce4ec, #f8bbd0, #f48fb1, #f06292);
    background-size: 200% 200%;
    animation: gradient 3s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 80px;
    height: 80px;
    border: 6px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: rotate 1s linear infinite;
}

/* 3D Tilt Card Effect */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.tilt-card:hover {
    transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) scale3d(1.05, 1.05, 1.05);
}

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.dark .glass {
    background: rgba(44, 37, 51, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Particle Background */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(240, 98, 146, 0.6);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

/* Cursor Trail */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--pookie-accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease;
    box-shadow: 0 0 10px var(--pookie-accent);
}

/* Stagger Animation */
.stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Magnetic Button */
.magnetic-btn {
    position: relative;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.magnetic-btn:hover {
    transform: scale(1.05);
}

/* Glow Effect */
.glow-on-hover {
    animation: glow 2s ease-in-out infinite;
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    padding: 2rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.dark .mobile-menu {
    background: rgba(44, 37, 51, 0.95);
}

.mobile-menu.active {
    right: 0;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 99;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* REVOLUTIONARY EFFECTS */

/* Morphing Blob Background */
.morph-blob {
    position: absolute;
    background: linear-gradient(45deg, #f48fb1, #f06292, #ff80ab);
    animation: morphBlob 8s ease-in-out infinite, float 6s ease-in-out infinite;
    filter: blur(40px);
    opacity: 0.6;
}

/* Holographic Card */
.holo-card {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.05)
    );
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.holo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.5s;
}

.holo-card:hover::before {
    animation: holographic 3s infinite;
}

/* Neon Text */
.neon-text {
    animation: neonPulse 2s ease-in-out infinite;
    text-shadow: 
        0 0 10px rgba(240, 98, 146, 0.8),
        0 0 20px rgba(240, 98, 146, 0.6),
        0 0 30px rgba(240, 98, 146, 0.4),
        0 0 40px rgba(255, 128, 171, 0.3);
}

/* Liquid Background */
.liquid-bg {
    position: relative;
    overflow: hidden;
}

.liquid-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(248, 187, 208, 0.3),
        rgba(240, 98, 146, 0.2)
    );
    animation: liquidMove 10s ease-in-out infinite;
}

/* Ripple Effect */
.ripple-container {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(240, 98, 146, 0.5);
    pointer-events: none;
    animation: ripple 0.6s ease-out;
}

/* 3D Perspective Card */
.perspective-card {
    perspective: 1500px;
    transform-style: preserve-3d;
}

.perspective-card-inner {
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.perspective-card:hover .perspective-card-inner {
    transform: rotateY(10deg) rotateX(-10deg) translateZ(50px);
}

/* Glitch Effect */
.glitch {
    position: relative;
}

.glitch:hover {
    animation: textGlitch 0.3s infinite;
}

/* Aurora Background */
.aurora {
    background: linear-gradient(
        45deg,
        rgba(240, 98, 146, 0.3),
        rgba(248, 187, 208, 0.3),
        rgba(255, 128, 171, 0.3),
        rgba(252, 228, 236, 0.3)
    );
    background-size: 400% 400%;
    animation: holographic 15s ease infinite;
}

/* Bounce In Animation */
.bounce-in {
    animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Slide In Animation */
.slide-in-left {
    animation: slideInFromLeft 0.6s ease-out;
}

/* Floating Card with Shadow */
.float-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.float-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 
        0 30px 60px rgba(240, 98, 146, 0.3),
        0 0 50px rgba(255, 128, 171, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

/* Interactive Border Animation */
.animated-border {
    position: relative;
    background: linear-gradient(var(--background-light), var(--background-light)) padding-box,
                linear-gradient(45deg, #f48fb1, #f06292, #ff80ab, #f48fb1) border-box;
    border: 3px solid transparent;
    animation: gradient 3s linear infinite;
    background-size: 200% 200%;
}

.dark .animated-border {
    background: linear-gradient(var(--background-dark), var(--background-dark)) padding-box,
                linear-gradient(45deg, #f48fb1, #f06292, #ff80ab, #f48fb1) border-box;
}

/* Particle System */
.particle-system {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 98, 146, 0.8), transparent);
    animation: float 20s infinite ease-in-out;
    filter: blur(2px);
}

/* Cyber Grid */
.cyber-grid {
    background-image: 
        linear-gradient(rgba(240, 98, 146, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(240, 98, 146, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

/* Rotating Border */
.rotating-border {
    position: relative;
}

.rotating-border::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: conic-gradient(
        from 0deg,
        transparent,
        #f48fb1,
        #f06292,
        #ff80ab,
        transparent
    );
    border-radius: inherit;
    animation: rotate 3s linear infinite;
    z-index: -1;
}

.rotating-border::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--background-light);
    border-radius: inherit;
    z-index: -1;
}

.dark .rotating-border::after {
    background: var(--background-dark);
}

/* Container */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container {
        max-width: 640px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}

/* Display */
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }

/* Flexbox */
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.items-center { align-items: center; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-1 { flex: 1 1 0%; }

/* Grid */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }

@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .md\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* Spacing */
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.space-x-8 > * + * { margin-left: 2rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }

/* Gap */
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }

/* Padding */
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-12 { padding: 3rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-24 { padding-top: 6rem; }
.pb-2 { padding-bottom: 0.5rem; }

/* Margin */
.m-0 { margin: 0; }
.m-4 { margin: 1rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mx-4 { margin-left: 1rem; margin-right: 1rem; }
.-mx-4 { margin-left: -1rem; margin-right: -1rem; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-24 { margin-bottom: 6rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-16 { margin-top: 4rem; }
.mt-24 { margin-top: 6rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }

/* Width & Height */
.w-8 { width: 2rem; }
.w-12 { width: 3rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-32 { width: 8rem; }
.w-48 { width: 12rem; }
.w-full { width: 100%; }
.h-8 { height: 2rem; }
.h-12 { height: 3rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-32 { height: 8rem; }
.h-48 { height: 12rem; }
.h-full { height: 100%; }
.min-h-\[600px\] { min-height: 600px; }

/* Max Width */
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-6xl { max-width: 72rem; }

/* Text */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1.2; }
.text-6xl { font-size: 3.75rem; line-height: 1.2; }
.text-7xl { font-size: 4.5rem; line-height: 1.1; }
.text-8xl { font-size: 6rem; line-height: 1.1; }

@media (min-width: 768px) {
    .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
    .md\:text-8xl { font-size: 6rem; line-height: 1.1; }
}

.font-body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.italic { font-style: italic; }

.text-center { text-align: center; }
.text-left { text-align: left; }

.leading-relaxed { line-height: 1.625; }

/* Heading Styles */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

p {
    margin-bottom: 1em;
}

/* Better text rendering */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Colors */
.text-white { color: #ffffff; }
.text-pookie-pink-dark { color: var(--pookie-pink-dark); }
.text-pookie-pink-light { color: var(--pookie-pink-light); }
.text-pookie-accent { color: var(--pookie-accent); }
.text-text-light { color: var(--text-light); }
.text-text-dark { color: var(--text-dark); }
.text-text-light\/70 { color: rgba(79, 68, 89, 0.7); }
.text-text-light\/60 { color: rgba(79, 68, 89, 0.6); }
.text-text-dark\/80 { color: rgba(234, 224, 240, 0.8); }
.text-text-dark\/60 { color: rgba(234, 224, 240, 0.6); }
.text-text-dark\/70 { color: rgba(234, 224, 240, 0.7); }

.dark .dark\:text-text-dark { color: var(--text-dark); }
.dark .dark\:text-text-dark\/80 { color: rgba(234, 224, 240, 0.8); }
.dark .dark\:text-text-dark\/60 { color: rgba(234, 224, 240, 0.6); }
.dark .dark\:text-pookie-pink-light { color: var(--pookie-pink-light); }
.dark .dark\:text-white { color: #ffffff; }
.dark .dark\:text-pookie-accent { color: var(--pookie-accent); }

/* Background Colors */
.bg-white { background-color: #ffffff; }
.bg-pookie-pink-dark { background-color: var(--pookie-pink-dark); }
.bg-pookie-pink-light { background-color: var(--pookie-pink-light); }
.bg-pookie-pink\/50 { background-color: rgba(252, 228, 236, 0.5); }
.bg-pookie-pink-light\/50 { background-color: rgba(248, 187, 208, 0.5); }
.bg-pookie-pink-light\/30 { background-color: rgba(248, 187, 208, 0.3); }
.bg-pookie-pink-dark\/20 { background-color: rgba(240, 98, 146, 0.2); }
.bg-background-light { background-color: var(--background-light); }
.bg-background-dark { background-color: var(--background-dark); }
.bg-white\/80 { background-color: rgba(255, 255, 255, 0.8); }
.bg-white\/70 { background-color: rgba(255, 255, 255, 0.7); }
.bg-white\/50 { background-color: rgba(255, 255, 255, 0.5); }
.bg-white\/30 { background-color: rgba(255, 255, 255, 0.3); }
.bg-white\/20 { background-color: rgba(255, 255, 255, 0.2); }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-transparent { background-color: transparent; }

.dark .dark\:bg-background-dark { background-color: var(--background-dark); }
.dark .dark\:bg-background-dark\/80 { background-color: rgba(44, 37, 51, 0.8); }
.dark .dark\:bg-background-dark\/70 { background-color: rgba(44, 37, 51, 0.7); }
.dark .dark\:bg-background-dark\/50 { background-color: rgba(44, 37, 51, 0.5); }
.dark .dark\:bg-pookie-pink-dark\/20 { background-color: rgba(240, 98, 146, 0.2); }

/* Gradient Backgrounds */
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }

.from-pookie-pink\/20 { --tw-gradient-from: rgba(252, 228, 236, 0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(252, 228, 236, 0)); }
.from-pookie-pink-light { --tw-gradient-from: var(--pookie-pink-light); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 187, 208, 0)); }
.from-pookie-pink-dark { --tw-gradient-from: var(--pookie-pink-dark); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240, 98, 146, 0)); }
.from-pink-200 { --tw-gradient-from: #fbcfe8; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 207, 232, 0)); }
.from-pink-300 { --tw-gradient-from: #f9a8d4; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(249, 168, 212, 0)); }
.from-purple-200 { --tw-gradient-from: #e9d5ff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(233, 213, 255, 0)); }
.from-purple-300 { --tw-gradient-from: #d8b4fe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(216, 180, 254, 0)); }
.from-blue-200 { --tw-gradient-from: #bfdbfe; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(191, 219, 254, 0)); }
.from-blue-300 { --tw-gradient-from: #93c5fd; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 197, 253, 0)); }
.from-teal-200 { --tw-gradient-from: #99f6e4; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 246, 228, 0)); }
.from-teal-300 { --tw-gradient-from: #5eead4; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(94, 234, 212, 0)); }
.from-rose-300 { --tw-gradient-from: #fda4af; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 164, 175, 0)); }
.from-indigo-300 { --tw-gradient-from: #a5b4fc; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(165, 180, 252, 0)); }
.from-black\/60 { --tw-gradient-from: rgba(0, 0, 0, 0.6); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); }

.to-transparent { --tw-gradient-to: transparent; }
.to-pookie-pink-dark { --tw-gradient-to: var(--pookie-pink-dark); }
.to-pink-400 { --tw-gradient-to: #f472b6; }
.to-pink-500 { --tw-gradient-to: #ec4899; }
.to-purple-400 { --tw-gradient-to: #c084fc; }
.to-purple-500 { --tw-gradient-to: #a855f7; }
.to-blue-400 { --tw-gradient-to: #60a5fa; }
.to-blue-500 { --tw-gradient-to: #3b82f6; }
.to-teal-400 { --tw-gradient-to: #2dd4bf; }
.to-teal-500 { --tw-gradient-to: #14b8a6; }
.to-rose-500 { --tw-gradient-to: #f43f5e; }
.to-indigo-500 { --tw-gradient-to: #6366f1; }

.via-transparent { --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(255, 255, 255, 0)); }

/* Border */
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-t { border-top-width: 1px; }
.border-pookie-pink-light { border-color: var(--pookie-pink-light); }
.border-pookie-pink-dark { border-color: var(--pookie-pink-dark); }
.border-pookie-pink-light\/30 { border-color: rgba(248, 187, 208, 0.3); }

/* Border Radius */
.rounded { border-radius: 1.5rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-full { border-radius: 9999px; }

/* Shadow */
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.shadow-pookie { box-shadow: 0 10px 25px -5px rgba(240, 98, 146, 0.2), 0 8px 10px -6px rgba(240, 98, 146, 0.2); }
.shadow-inner { box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.top-3 { top: 0.75rem; }
.left-4 { left: 1rem; }
.top-\[10\%\] { top: 10%; }
.right-\[20\%\] { right: 20%; }
.top-\[-4rem\] { top: -4rem; }
.left-\[-2rem\] { left: -2rem; }
.bottom-\[-2rem\] { bottom: -2rem; }
.right-\[-2rem\] { right: -2rem; }
.bottom-\[-12px\] { bottom: -12px; }
.right-\[-12px\] { right: -12px; }
.-top-10 { top: -2.5rem; }
.-left-10 { left: -2.5rem; }
.-bottom-12 { bottom: -3rem; }
.-right-12 { right: -3rem; }
.bottom-8 { bottom: 2rem; }
.right-8 { right: 2rem; }
.top-\[50\%\] { top: 50%; }
.left-\[100\%\] { left: 100%; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

/* Z-index */
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Transform */
.transform { transform: translateX(var(--tw-translate-x, 0)) translateY(var(--tw-translate-y, 0)) rotate(var(--tw-rotate, 0)) skewX(var(--tw-skew-x, 0)) skewY(var(--tw-skew-y, 0)) scaleX(var(--tw-scale-x, 1)) scaleY(var(--tw-scale-y, 1)); }
.translate-y-0 { --tw-translate-y: 0; transform: translateY(0); }
.translate-y-4 { --tw-translate-y: 1rem; transform: translateY(1rem); }
.-translate-y-8 { --tw-translate-y: -2rem; transform: translateY(-2rem); }
.scale-75 { --tw-scale-x: 0.75; --tw-scale-y: 0.75; transform: scale(0.75); }
.scale-100 { --tw-scale-x: 1; --tw-scale-y: 1; transform: scale(1); }

/* Transition */
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-150 { transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }

/* Opacity */
.opacity-0 { opacity: 0; }
.opacity-100 { opacity: 100; }

/* Pointer Events */
.pointer-events-none { pointer-events: none; }

/* Cursor */
.cursor-pointer { cursor: pointer; }

/* Backdrop */
.backdrop-blur-md { backdrop-filter: blur(12px); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }

/* Aspect Ratio */
.aspect-square { aspect-ratio: 1 / 1; }

/* Object Fit */
.object-cover { object-fit: cover; }

/* Focus */
input, textarea, button {
    outline: none;
}

input, textarea {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.focus\:ring-2:focus { box-shadow: 0 0 0 3px rgba(240, 98, 146, 0.5); }
.focus\:ring-4:focus { box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.5); }
.focus\:ring-pookie-accent:focus { box-shadow: 0 0 0 3px rgba(255, 128, 171, 0.5); }
.focus\:ring-white\/50:focus { box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5); }
.focus\:border-transparent:focus { border-color: transparent; }

/* Hover */
.hover\:text-pookie-accent:hover { color: var(--pookie-accent); }
.hover\:bg-pookie-pink-dark:hover { background-color: var(--pookie-pink-dark); }
.hover\:bg-pookie-accent:hover { background-color: var(--pookie-accent); }
.hover\:bg-pookie-pink-light:hover { background-color: var(--pookie-pink-light); }
.hover\:bg-pookie-pink-light\/30:hover { background-color: rgba(248, 187, 208, 0.3); }
.hover\:bg-pookie-pink-light\/20:hover { background-color: rgba(248, 187, 208, 0.2); }
.hover\:shadow-2xl:hover { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-110:hover { transform: scale(1.10); }

.dark .dark\:hover\:text-pookie-accent:hover { color: var(--pookie-accent); }

/* Enhanced Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--background-light);
}

.dark ::-webkit-scrollbar-track {
    background: var(--background-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--pookie-pink-light), var(--pookie-pink-dark));
    border-radius: 10px;
    border: 2px solid var(--background-light);
}

.dark ::-webkit-scrollbar-thumb {
    border-color: var(--background-dark);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--pookie-pink-dark), var(--pookie-accent));
}

/* Selection */
::selection {
    background: var(--pookie-pink-light);
    color: var(--pookie-pink-dark);
}

.dark ::selection {
    background: var(--pookie-pink-dark);
    color: white;
}

/* Spotlight Effect on Hover */
.spotlight-effect {
    position: relative;
    overflow: hidden;
}

.spotlight-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.2) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.spotlight-effect:hover::after {
    opacity: 1;
}

/* Text Shimmer Effect */
.text-shimmer {
    background: linear-gradient(
        90deg,
        #f06292 0%,
        #f48fb1 25%,
        #ff80ab 50%,
        #f48fb1 75%,
        #f06292 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

/* Breathing Animation */
@keyframes breathe {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.breathe {
    animation: breathe 4s ease-in-out infinite;
}

/* Group Hover */
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:translate-y-0 { transform: translateY(0); }

/* Peer (for form labels) */
.peer:placeholder-shown ~ .peer-placeholder-shown\:scale-100 { transform: scale(1); }
.peer:placeholder-shown ~ .peer-placeholder-shown\:translate-y-0 { transform: translateY(0); }
.peer:focus ~ .peer-focus\:-translate-y-8 { transform: translateY(-2rem); }
.peer:focus ~ .peer-focus\:scale-75 { transform: scale(0.75); }

/* Responsive - Medium screens and up */
@media (min-width: 768px) {
    .md\:hidden { display: none; }
    .md\:flex { display: flex; }
    .md\:flex-row { flex-direction: row; }
}

/* Animation utilities */
.animate-\[float_8s_ease-in-out_infinite\] { animation: float 8s ease-in-out infinite; }
.animate-\[float_10s_ease-in-out_infinite_2s\] { animation: float 10s ease-in-out infinite 2s; }
.animate-\[float_12s_ease-in-out_infinite_1s\] { animation: float 12s ease-in-out infinite 1s; }
.animate-\[float_7s_ease-in-out_infinite\] { animation: float 7s ease-in-out infinite; }
.animate-\[float_9s_ease-in-out_infinite_3s\] { animation: float 9s ease-in-out infinite 3s; }

/* Blur Effects */
.blur-xl { filter: blur(24px); }
.blur-2xl { filter: blur(40px); }
.blur-3xl { filter: blur(64px); }

/* SVG Icons as Text */
svg {
    display: inline-block;
    vertical-align: middle;
}

/* Additional responsive utilities */
@media (max-width: 767px) {
    .text-7xl { font-size: 3.5rem; }
}
