/* --- TOHO AUTO LINK GLOBAL STYLES --- */
:root {
    --gold: #c5a059;
    --gold-dark: #a67c00;
    --black: #0a0a0a;
}

/* Base Body Styles - Apply to the landing page container */
.toho-lp-wrapper {
    background-color: var(--black);
    color: #f8f8f8;
    font-family: 'Noto Sans JP', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    background: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #0a0a0a 100%);
}

.toho-lp-wrapper h1, 
.toho-lp-wrapper h2, 
.toho-lp-wrapper h3, 
.toho-lp-wrapper .font-serif {
    font-family: 'Playfair Display', serif;
}

/* Grainy Texture Overlay */
.grain-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 50;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Glassmorphism */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Fade-in Up Animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Gold Hover Underline */
.hover-gold {
    position: relative;
    transition: color 0.3s ease;
}
.hover-gold::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s ease;
}
.hover-gold:hover::after {
    width: 100%;
}
.hover-gold:hover {
    color: var(--gold);
}

/* Buttons */
.btn-luxury {
    border: 1px solid var(--gold);
    padding: 1rem 2.5rem;
    display: inline-block;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    color: #fff !important;
    text-decoration: none !important;
}

.btn-luxury:hover {
    background-color: var(--gold);
    color: var(--black) !important;
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.3);
}

.text-gold { color: var(--gold); }
.border-gold { border-color: var(--gold); }
.bg-gold { background-color: var(--gold); }

/* Custom Scrollbar for the section */
.toho-lp-wrapper ::-webkit-scrollbar {
    width: 6px;
}
.toho-lp-wrapper ::-webkit-scrollbar-track {
    background: var(--black);
}
.toho-lp-wrapper ::-webkit-scrollbar-thumb {
    background: var(--gold);
}