:root {
    --bg-color: #121212;
    --card-bg: #1e1e1e;
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;
    --accent-color: #00ff88;
    --accent-hover: #00cc6a;
    --gradient-hero: linear-gradient(45deg, #121212 0%, #2a2a2a 100%);
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Noto Sans JP', sans-serif;
    --shadow-card: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 10px 20px rgba(0, 255, 136, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Header / Hero */
.hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background: var(--gradient-hero);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1520045864985-75b229d4090c?auto=format&fit=crop&w=1500&q=80'); /* Unsplash fallback */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content {
    z-index: 2;
    animation: fadeInDown 1s ease-out;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 0.9;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 2.5rem;
    color: var(--accent-color);
    letter-spacing: 5px;
    display: block;
}

.hero-description {
    font-size: 1.2rem;
    color: #ddd;
    margin-top: 10px;
    font-weight: 300;
}

/* Navigation */
.main-nav {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 100;
}

.nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
    padding: 20px 0;
}

.nav-list li {
    margin: 0 15px;
}

.nav-list a {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    position: relative;
    padding-bottom: 5px;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}

.nav-list a:hover {
    color: var(--accent-color);
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.intro {
    text-align: center;
    margin-bottom: 60px;
}

.news-ticker {
    background: var(--accent-color);
    color: #000;
    padding: 5px 15px;
    display: inline-block;
    font-weight: bold;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60%;
    height: 4px;
    background: var(--accent-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Tricks Grid */
.tricks-grid, .tricks-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.trick-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-card);
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
}

.trick-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.trick-link {
    display: block; /* Make whole card clickable or styled properly */
    height: 100%;
}

.trick-image {
    height: 250px;
    width: 100%;
    object-fit: cover;
    display: block;
}

/* Placeholder for missing images */
.trick-image-placeholder {
    height: 250px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    position: relative;
}

/* Background Gradients for placeholders */
.push-bg { background: linear-gradient(135deg, #FDBB2D 0%, #22C1C3 100%); }
.ticktack-bg { background: linear-gradient(135deg, #FC466B 0%, #3F5EFB 100%); }
.fakie-bg { background: linear-gradient(135deg, #9D50BB 0%, #6E48AA 100%); }
.carving-bg { background: linear-gradient(135deg, #ffff1c 0%, #00c3ff 100%); }
.manual-bg { background: linear-gradient(135deg, #0cebeb 0%, #20e3b2 100%, #29ffc6 100%); }
.pickup-bg { background: linear-gradient(135deg, #d4fc79 0%, #96e6a1 100%); }
.boneless-bg { background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%); }
.kickturn-bg { background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%); }
.ollie-bg { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.dropin-bg { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.kickflip-bg { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
.handplant-bg { background: linear-gradient(135deg, #30cfd0 0%, #330867 100%); }
.heelflip-bg { background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%); }
.grind-bg { background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 99%, #fecfef 100%); }
.slide-bg { background: linear-gradient(135deg, #f6d365 0%, #fda085 100%); }

.trick-info {
    padding: 20px;
}

.trick-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.trick-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Footer / Ads */
.ad-section {
    text-align: center;
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.ad-container p {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

footer {
    text-align: center;
    padding: 40px;
    background: #000;
    color: #555;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-list li {
        margin: 10px 0;
    }
}
