:root {
    --bg-color: #fdfaf0;
    --card-bg: rgba(255, 255, 255, 0.7);
    --border-color: rgba(93, 64, 55, 0.1);
    --primary-text: #5d4037;
    --secondary-text: #8d6e63;
    --accent-color: #ffb347;
    --accent-gradient: linear-gradient(135deg, #ffb347 0%, #ff8c42 100%);
    --font-main: 'Zen Maru Gothic', 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--primary-text);
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background Animation */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    filter: blur(100px);
}

.blob {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    opacity: 0.4;
    animation: move 25s infinite alternate ease-in-out;
}

.blob-1 {
    background: #ffccbc;
    top: -10%;
    left: -10%;
}

.blob-2 {
    background: #ffecb3;
    bottom: -10%;
    right: -10%;
    animation-delay: -7s;
}

.blob-3 {
    background: #ffe0b2;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes move {
    from {
        transform: translate(-50px, -50px) scale(1);
    }

    to {
        transform: translate(50px, 50px) scale(1.2);
    }
}

/* Container & Card */
.container {
    width: 90%;
    max-width: 800px;
    padding: 20px;
    z-index: 10;
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 15px 40px rgba(93, 64, 55, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-8px);
}

/* Hero Image */
.hero-image-container {
    margin-bottom: 24px;
}

.hero-cat {
    max-width: 100%;
    height: auto;
    width: 600px;
    /* Base size */
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
    animation: floating 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Header */
.logo {
    font-weight: 900;
    letter-spacing: 2px;
    font-size: 1rem;
    margin-bottom: 30px;
    opacity: 0.7;
    color: var(--primary-text);
}

/* Hero Title */
.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.accent-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    color: var(--secondary-text);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Buttons */
.cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
}

.primary-btn {
    background: var(--accent-gradient);
    color: white;
    border: none;
    padding: 16px 36px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 15px rgba(255, 179, 71, 0.3);
}

.primary-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(255, 179, 71, 0.4);
}

.secondary-btn {
    background: white;
    color: var(--primary-text);
    border: 1px solid var(--border-color);
    padding: 16px 36px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.secondary-btn:hover {
    background: #fdfaf0;
    transform: translateY(-2px);
}

/* Footer */
.footer-note {
    font-size: 0.85rem;
    color: var(--secondary-text);
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .glass-card {
        padding: 40px 20px;
        border-radius: 30px;
    }

    .cta-group {
        flex-direction: column;
    }

    .hero-cat {
        width: 140px;
    }
}