:root {
    --gold-primary: #D0A341;
    --gold-light: #F1D47B;
    --gold-dark: #956D1F;
    --bg-dark: #12100E;
    --bg-card: rgba(30, 26, 24, 0.85);
    --text-white: #F5F5F5;
    --text-gray: #B0B0B0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top center, #2C2621 0%, #0A0908 80%);
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    z-index: -1;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

h1,
h2,
h3 {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

h2 {
    color: var(--gold-light);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* Hero Section */
.hero {
    text-align: center;
    margin-top: 3rem;
    animation: fadeInDown 1s ease-out;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.ttv {
    font-size: 7rem;
    font-weight: 900;
    background: linear-gradient(to bottom, var(--gold-light), var(--gold-primary), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 8px 15px rgba(0, 0, 0, 0.6);
    letter-spacing: -2px;
}

.on-the-road {
    font-size: 2.2rem;
    font-weight: 800;
    background-color: #111;
    padding: 0.5rem 2.5rem;
    border: 3px solid var(--gold-primary);
    border-radius: 6px;
    margin-top: -1.5rem;
    z-index: 1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
    color: var(--gold-light);
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.3rem;
    color: var(--text-gray);
    font-weight: 500;
    margin-top: 1rem;
}

/* Content Section */
.content-section {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    animation: fadeIn 1.5s ease-out;
}

.card {
    background: var(--bg-card);
    border: 1px solid rgba(208, 163, 65, 0.2);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(208, 163, 65, 0.5);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8);
}

.divider {
    height: 3px;
    width: 60px;
    background: var(--gold-primary);
    margin: 1.5rem auto;
    border-radius: 2px;
}

.behind-the-scenes p {
    font-size: 1.15rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.behind-the-scenes p:last-child {
    margin-bottom: 0;
    color: var(--text-gray);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    background: rgba(20, 18, 16, 0.9);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border-top: 3px solid var(--gold-dark);
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.feature-item:hover {
    transform: translateY(-5px);
    border-top-color: var(--gold-light);
    background: rgba(30, 26, 24, 0.95);
}

.feature-item .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.feature-item h3 {
    color: var(--gold-primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Connect Section */
.connect-section {
    text-align: center;
    background: linear-gradient(135deg, rgba(44, 38, 33, 0.9) 0%, rgba(18, 16, 14, 0.95) 100%);
    padding: 4rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(208, 163, 65, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.connect-section p {
    font-size: 1.2rem;
    color: var(--text-white);
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(to right, var(--gold-dark), var(--gold-primary));
    color: #000;
    box-shadow: 0 4px 15px rgba(208, 163, 65, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(to right, var(--gold-primary), var(--gold-light));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(208, 163, 65, 0.4);
}

.btn-secondary {
    background: rgba(0, 0, 0, 0.3);
    color: var(--gold-light);
    border: 2px solid var(--gold-dark);
}

.btn-secondary:hover {
    background: rgba(208, 163, 65, 0.1);
    border-color: var(--gold-primary);
    color: #FFF;
    transform: translateY(-2px);
}

/* Footer */
footer {
    text-align: center;
    margin-top: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
}

footer strong {
    color: var(--gold-primary);
}

.sub-footer {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.hashtags {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-gray);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hashtags span {
    color: var(--gold-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.hashtags span:hover {
    color: var(--gold-light);
    cursor: pointer;
}

.main-logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.8));
    animation: fadeInDown 1s ease-out;
}

.featured-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem auto;
    display: block;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
    border: 2px solid var(--gold-dark);
}

.behind-the-scenes-text {
    margin-top: 1.5rem;
}



/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .ttv {
        font-size: 5rem;
    }

    .on-the-road {
        font-size: 1.6rem;
        padding: 0.5rem 1.5rem;
    }

    .social-links {
        flex-direction: column;
    }

    .card {
        padding: 2rem;
    }
}