/*
Theme Name: CIRCUIT DAY IN MIHAMA
Author: REVEL MOTOR SPORTS
Version: 1.0
*/

body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #020617;
    color: #f8fafc;
    scroll-behavior: smooth;
}

.hero-section {
    background: radial-gradient(circle at 50% 40%, #0f172a 0%, #020617 100%);
    position: relative;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.03) 1px, transparent 0);
    background-size: 40px 40px;
    mask-image: linear-gradient(to bottom, black, transparent);
}

.main-title-gradient {
    background: linear-gradient(to bottom, #ffffff 20%, #f97316 60%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-right: 0.2em;
    padding-bottom: 0.1em;
    filter: drop-shadow(0 0 25px rgba(234, 88, 12, 0.4));
}

.sub-title-cyan {
    color: #22d3ee;
    text-shadow: 0 0 20px rgba(34, 211, 238, 0.6);
}

.accent-border-orange {
    border-left: 4px solid #f97316;
}

.accent-border-blue {
    border-left: 4px solid #3b82f6;
}

.btn-hover:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(249, 115, 22, 0.5);
}


.glass-card {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.weather-gradient {
    background: linear-gradient(to right, #fb923c 0%, #fb923c 45%, #ffffff 50%, #38bdf8 55%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    filter: drop-shadow(0 0 10px rgba(251, 146, 60, 0.4));
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    perspective: 1000px;
}

.logo-main {
    width: 220px;
    max-width: 70vw;
    height: auto;
    filter: brightness(0) invert(1) drop-shadow(0 0 40px rgba(59, 130, 246, 0.5));
    display: block;
    margin: 2rem 0 1.5rem;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0);
    }
}

.animate-hero-logo {
    animation: fadeInScale 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
textarea,
select {
    background: transparent;
    border-bottom: 2px solid #cbd5e1;
    transition: all 0.3s;
    font-weight: 700;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #f97316;
    outline: none;
}

input::placeholder,
textarea::placeholder {
    font-size: 0.85em;
}

.pledge-scroll::-webkit-scrollbar {
    width: 6px;
}

.pledge-scroll::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.pledge-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

@media (max-width: 639px) {
    html {
        font-size: 15px;
    }

    .dress-equipment p.text-sm.text-gray-400.font-bold {
        font-size: 0.875rem;
        line-height: 1.6;
    }

    .dress-equipment-note p {
        font-size: 0.75rem;
        line-height: 1.7;
    }
}
