:root {
    --jungle-green: #2E7D32;
    --caution-yellow: #FFD700;
    --earth-brown: #5D4037;
    --alert-red: #D32F2F;
    --dark-green: #1B5E20;
    --text-light: #f1f8e9;
    --font-heading: 'Black Ops One', cursive;
    --font-body: 'Roboto', sans-serif;
}

body {
    background-color: var(--dark-green);
    color: #fff;
    font-family: var(--font-body);
    overflow-x: hidden;
    background-image: repeating-linear-gradient(45deg,
            rgba(0, 0, 0, 0.1) 0px,
            rgba(0, 0, 0, 0.1) 20px,
            transparent 20px,
            transparent 40px);
}

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Black+Ops+One&family=Roboto:wght@400;700&display=swap');

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1.hero-title {
    font-size: 4.5rem;
    color: var(--caution-yellow);
    text-shadow: 4px 4px 0px #000;
    margin-bottom: 20px;
    border-bottom: 5px solid var(--alert-red);
    display: inline-block;
    padding-bottom: 10px;
}

h2.section-title {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    padding: 10px 30px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid var(--caution-yellow);
    border-radius: 5px;
}

/* Components */
.dino-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 5px;
    padding: 2rem;
    margin-bottom: 2rem;
    color: #333;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    border-left: 10px solid var(--caution-yellow);
    position: relative;
}

.dino-card::before {
    content: '';
    position: absolute;
    top: -5px;
    bottom: -5px;
    right: 10px;
    width: 20px;
    background: repeating-linear-gradient(-45deg,
            var(--caution-yellow),
            var(--caution-yellow) 10px,
            #000 10px,
            #000 20px);
    border: 2px solid #000;
}

.icon-dino {
    font-size: 3rem;
    color: var(--jungle-green);
    margin-bottom: 1rem;
}

/* Hero Section */
.hero-wrapper {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1598335624129-9e320562e7c7?q=80&w=2000&auto=format&fit=crop');
    /* Placeholder helpful text, using CSS gradient mostly */
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
    position: relative;
    border-bottom: 20px solid var(--earth-brown);
}

/* Caution Tape Divider */
.caution-tape {
    background: repeating-linear-gradient(45deg,
            var(--caution-yellow),
            var(--caution-yellow) 20px,
            #000 20px,
            #000 40px);
    height: 40px;
    width: 100%;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    margin: 30px 0;
}

/* Countdown */
.dino-countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 3rem;
}

.count-crate {
    background: var(--earth-brown);
    border: 2px solid var(--caution-yellow);
    padding: 15px;
    min-width: 80px;
    color: var(--caution-yellow);
    box-shadow: inset 0 0 10px #000;
    position: relative;
}

.count-crate::after {
    content: 'TOP SECRET';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--alert-red);
    color: white;
    font-size: 0.5rem;
    padding: 2px 5px;
    font-weight: bold;
}

.count-crate span {
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1;
    display: block;
}

.count-crate small {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #ccc;
    display: block;
    margin-top: 5px;
}

/* Buttons */
.btn-dino {
    background: var(--alert-red);
    color: white;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    padding: 12px 35px;
    border: 2px solid #fff;
    text-transform: uppercase;
    box-shadow: 0 5px 0 #8b0000;
    transition: all 0.2s;
}

.btn-dino:hover {
    background: #ff0000;
    color: white;
    transform: translateY(2px);
    box-shadow: 0 3px 0 #8b0000;
    text-decoration: none;
}

/* Music Control */
.music-control {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}

.btn-music-dino {
    width: 55px;
    height: 55px;
    border-radius: 5px;
    background: var(--jungle-green);
    color: var(--caution-yellow);
    border: 2px solid var(--caution-yellow);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}