/* Custom Design System */
:root {
    --brand-yellow: #FEDE00;
    --brand-yellow-dark: #ccac00;
    --dark-bg: #000000;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    background-color: #f8fafc;
    overflow-x: hidden;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
}

.text-gradient {
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.font-pattaya {
    font-family: 'Pattaya', sans-serif;
    font-style: italic;
    text-shadow: 2px 4px 6px rgba(0, 0, 0, 0.3);
}

.btn-premium {
    background: var(--brand-yellow);
    color: #000;
    box-shadow: 0 10px 15px -3px rgba(254, 222, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-premium:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(254, 222, 0, 0.4);
    background: #fff;
    color: #000;
}

/* Tire Tracks Pattern */
.tire-track-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='200' viewBox='0 0 100 200' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20L40 40M60 20L80 40M20 60L40 80M60 60L80 80' stroke='black' stroke-opacity='0.05' stroke-width='8' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: repeat;
    transform: rotate(-15deg) scale(2);
    pointer-events: none;
    z-index: 1;
}

/* Dotted Bee Path */
.bee-path-svg {
    position: absolute;
    pointer-events: none;
    z-index: 5;
}


/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Calculator Styles */
.calc-input {
    @apply w-full bg-white/10 border-white/20 rounded-xl p-4 text-white outline-none focus:border-yellow-400 transition;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--brand-yellow);
    border-radius: 10px;
}