/* --- Base Styles --- */
:root {
    --accent-color: #ff9800; /* W3-orange equivalent */
    --accent-hover: #ffb74d;
    --bg-dark: #1a2e3e;
    --bg-darker: #18102b;
    --text-light: #f1f1f1;
    --font-main: 'Signika', sans-serif;
    --font-heading: 'Righteous', sans-serif;
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-main);
    font-weight: 300;
    line-height: 1.6;
    background-color: var(--bg-darker);
    color: var(--text-light);
    height: 100%;
    scroll-padding-top: 70px;
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 0.5em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }

/* --- Interactivity --- */
a, button, .w3-button {
    transition: var(--transition);
}

.w3-hover-invert-white:hover {
    filter: invert(100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,152,0,0.3);
}

/* --- Responsive Video --- */
.video-responsive { 
    overflow: hidden; 
    padding-bottom: 56.25%; 
    position: relative; 
    height: 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.video-responsive iframe {
    left: 0; 
    top: 0; 
    height: 100%;
    width: 100%;
    position: absolute;
    border: none;
}

.video-wrap {
    width: 95%;
    max-width: 1000px;
    margin: 40px auto;
}

/* --- Social Links & Navigation --- */
.w3-bar-item {
    letter-spacing: 0.5px;
}

.fa-brands, .fa-solid {
    transition: var(--transition);
}

.fa-brands:hover, .fa-solid:hover {
    transform: scale(1.1);
    color: var(--text-light) !important;
}

/* --- Content Styling --- */
.w3-light-grey {
    background-color: rgba(241, 241, 241, 0.05) !important;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
}

/* Custom links for the blog/content */
.pandora-blog-link {
    color: var(--accent-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.pandora-blog-link:hover {
    color: var(--accent-hover);
    border-bottom: 1px solid var(--accent-hover);
}
