@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Inter:wght@400;500;600&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.font-poppins {
    font-family: 'Poppins', sans-serif;
}

.sunrise-gradient {
    background: linear-gradient(135deg, #1e3a8a 0%, #5b21b6 25%, #ec4899 50%, #fbbf24 75%, #fef3c7 100%);
    min-height: 100vh;
}

.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.paw-print {
    position: relative;
    overflow: hidden;
}

.paw-print::before {
    content: '🐾';
    position: absolute;
    font-size: 100px;
    opacity: 0.1;
    right: -20px;
    bottom: -20px;
    transform: rotate(-15deg);
}

.coffee-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 50px,
        rgba(139, 69, 19, 0.3) 50px,
        rgba(139, 69, 19, 0.3) 52px
    );
    animation: coffee-fall 2s linear infinite;
}

@keyframes coffee-fall {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

button {
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

button:active {
    transform: translateY(0);
}

input, select {
    transition: all 0.3s ease;
}

input:focus, select:focus {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .glass-card {
        border-radius: 15px;
        padding: 1rem !important;
    }
    
    h1 {
        font-size: 2rem !important;
    }
    
    h2 {
        font-size: 1.5rem !important;
    }
}

/* Smooth animations */
* {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Loading states */
img {
    transition: opacity 0.3s ease;
}

img:not([src]) {
    opacity: 0;
}

/* Accessibility */
button:focus, input:focus, select:focus {
    outline: 3px solid #B4A7D6;
    outline-offset: 2px;
}

a:focus {
    outline: 2px solid #B4A7D6;
    outline-offset: 2px;
}