/* Reset and Base Styles - Updated to fix Kowloon background issue */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    transition: background-image 0.5s ease-in-out;
    background: #000 !important; /* Default to black background - force override */
    background-image: none !important; /* Remove any background images */
}

/* Kowloon background for shows page */
body.show-kowloon {
    background: url('Images/Kowloon.png') no-repeat center center fixed !important;
    background-size: cover !important;
}

/* Dynamic Background for Shows Page */
body.show-all-time-high {
    background: url('Images/background/ath background.png') no-repeat center center fixed !important;
    background-size: cover !important;
}

body.show-claret {
    background: url('Images/background/claret background.png') no-repeat center center fixed !important;
    background-size: cover !important;
}

body.show-elixir {
    background: url('Images/background/elixir.png') no-repeat center center fixed !important;
    background-size: cover !important;
}

body.show-rusty-nickels {
    background: url('Images/background/rusty2.png') no-repeat center center fixed !important;
    background-size: cover !important;
}

/* Default background for shows page */
.shows-section {
    background: transparent; /* Remove background so body background shows through */
    min-height: 100vh;
    padding-top: 100px;
    position: relative;
    z-index: 1;
}

.shows-section .container {
    position: relative;
    z-index: 2;
}

.shows-section h1,
.shows-section h3,
.shows-section p,
.shows-section .tab-btn {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hidden class for elements that should be hidden initially */
.hidden {
    display: none !important;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-logo h2 {
    color: #fff;
    font-weight: 600;
    font-size: 1.5rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
}

.logo-link:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ffd700;
}

.nav-link.active {
    color: #ffd700;
    border-bottom: 2px solid #ffd700;
}

/* Investor Portal Dropdown */
.investor-portal-dropdown {
    position: relative;
}

.investor-btn {
    background: none;
    border: none;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.investor-btn:hover {
    color: #ffd700;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.investor-portal-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.password-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.password-form input {
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 14px;
}

.password-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.password-form button {
    padding: 10px;
    background: #ffd700;
    color: #000;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.password-form button:hover {
    background: #ffed4e;
}

.error-message {
    color: #ff6b6b;
    font-size: 12px;
    margin: 0;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Landing Section */
.landing {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: #000;
}

.landing-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    max-width: 800px;
    height: auto;
    z-index: 1;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.landing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 3;
}

.landing-content {
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.landing-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.landing-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1.1rem;
}

.cta-btn.primary {
    background: #ffd700;
    color: #000;
}

.cta-btn.primary:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.cta-btn.secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.cta-btn.secondary:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

/* Investor Portal Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #fff;
    border-radius: 15px;
    padding: 0;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-header {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    padding: 25px 30px;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: #000;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: #000;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.close-btn:hover {
    background: rgba(0, 0, 0, 0.1);
}

.modal-body {
    padding: 30px;
}

.modal-body p {
    margin-bottom: 25px;
    color: #666;
    text-align: center;
    font-size: 1rem;
    line-height: 1.6;
}

/* Registration Form */
.registration-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.form-group input {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus {
    outline: none;
    border-color: #ffd700;
    background: #fff;
}

.form-group input::placeholder {
    color: #999;
}

.registration-form button {
    padding: 15px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.registration-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.error-message {
    color: #ff6b6b;
    font-size: 14px;
    margin: 0;
    text-align: center;
}

/* About Section */
.about-section {
    padding: 120px 0 80px 0;
    background: #f8f9fa;
}

.about-section h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 50px;
    color: #333;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.7;
}

.about-content p {
    margin-bottom: 20px;
}

/* Investor Deck Section */
.investor-deck-section {
    padding: 120px 0 80px 0;
    background: #fff;
}

.investor-deck-section h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 50px;
    color: #333;
}

.deck-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.deck-container iframe {
    width: 100%;
    height: 800px;
    border: none;
    display: block;
}

/* Shows Section */
.shows-section {
    padding: 120px 0 80px 0;
    background: transparent; /* Remove background so body background shows through */
}



.shows-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 15px 25px;
    background: #f8f9fa;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.tab-btn:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.tab-btn.active {
    background: #ffd700;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Kowloon tab specific styling */
.tab-btn[data-show="kowloon"] {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('Images/Kowloon.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    border: 2px solid transparent;
}

.tab-btn[data-show="kowloon"]:hover {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('Images/Kowloon.png');
    background-size: cover;
    background-position: center;
    border-color: #ffd700;
    transform: translateY(-2px);
}

.tab-btn[data-show="kowloon"].active {
    background: #ffd700 !important;
    color: #000;
    text-shadow: none;
    border-color: #ffd700;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

/* All Time High tab specific styling */
.tab-btn[data-show="all-time-high"] {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('Images/background/ath background.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    border: 2px solid transparent;
}

.tab-btn[data-show="all-time-high"]:hover {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('Images/background/ath background.png');
    background-size: cover;
    background-position: center;
    border-color: #ffd700;
    transform: translateY(-2px);
}

.tab-btn[data-show="all-time-high"].active {
    background: #ffd700 !important;
    color: #000;
    text-shadow: none;
    border-color: #ffd700;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

/* Claret tab specific styling */
.tab-btn[data-show="claret"] {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('Images/background/claret background.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    border: 2px solid transparent;
}

.tab-btn[data-show="claret"]:hover {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('Images/background/claret background.png');
    background-size: cover;
    background-position: center;
    border-color: #ffd700;
    transform: translateY(-2px);
}

.tab-btn[data-show="claret"].active {
    background: #ffd700 !important;
    color: #000;
    text-shadow: none;
    border-color: #ffd700;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

/* The Elixir tab specific styling */
.tab-btn[data-show="elixir"] {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('Images/background/elixir.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    border: 2px solid transparent;
}

.tab-btn[data-show="elixir"]:hover {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('Images/background/elixir.png');
    background-size: cover;
    background-position: center;
    border-color: #ffd700;
    transform: translateY(-2px);
}

.tab-btn[data-show="elixir"].active {
    background: #ffd700 !important;
    color: #000;
    text-shadow: none;
    border-color: #ffd700;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

/* Rusty Nickels tab specific styling */
.tab-btn[data-show="rusty-nickels"] {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('Images/background/rusty.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    border: 2px solid transparent;
}

.tab-btn[data-show="rusty-nickels"]:hover {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('Images/background/rusty.png');
    background-size: cover;
    background-position: center;
    border-color: #ffd700;
    transform: translateY(-2px);
}

.tab-btn[data-show="rusty-nickels"].active {
    background: #ffd700 !important;
    color: #000;
    text-shadow: none;
    border-color: #ffd700;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

.show-content {
    display: none;
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    margin: 20px auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.show-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.show-header {
    text-align: center;
    margin-bottom: 40px;
}

.show-header h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #333;
    text-shadow: none;
}

.pitchline {
    font-size: 1.4rem;
    color: #000;
    font-weight: 400;
    font-style: italic;
    text-shadow: none;
    margin: 15px 0;
}

/* Show Tabs */
.show-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.show-tab-btn {
    padding: 15px 30px;
    background: #f8f9fa;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 150px;
    text-align: center;
}

.show-tab-btn:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.show-tab-btn.active {
    background: #ffd700;
    border-color: #ffd700;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.show-tab-content {
    position: relative;
    min-height: 400px;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-panel.active {
    display: block;
}

.script-container {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.show-info {
    margin-bottom: 40px;
    color: #333;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
}

.show-info-content {
    width: 100%;
}

.show-info p {
    margin-bottom: 18px;
    line-height: 1.7;
    color: #333;
    text-shadow: none;
    font-size: 1.3rem;
}

.show-info strong {
    color: #000;
    font-weight: 600;
}

/* Show Logos Section */
.show-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.show-logo {
    max-width: 180px;
    max-height: 70px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Make VREG logo bigger */
.show-logo[alt*="Village Roadshow"] {
    max-width: 360px;
    max-height: 140px;
}

.show-logo:hover {
    transform: scale(1.05);
}



/* Script Header */
.script-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-bottom: 1px solid #e0e0e0;
}

.script-header h4 {
    margin: 0;
    color: #000;
    font-weight: 600;
    font-size: 18px;
}

.fullscreen-btn {
    background: rgba(0, 0, 0, 0.1);
    color: #000;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.fullscreen-btn:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

.fullscreen-btn i {
    font-size: 14px;
}

.show-media {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
}

.media-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: center;
}

.media-tab {
    padding: 15px 30px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 150px;
    text-align: center;
}

.media-tab:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.media-tab.active {
    background: #ffd700;
    border-color: #ffd700;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.media-content {
    position: relative;
    min-height: 300px;
}

.video-player, .script-reader {
    display: none;
    width: 100%;
    height: 400px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.video-player.active, .script-reader.active {
    display: block;
}

.placeholder-video, .placeholder-script {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #666;
    text-align: center;
}

.placeholder-video i, .placeholder-script i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ddd;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 15px 0;
}

/* External Content Placeholder */
.external-content-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    border: 2px dashed #ddd;
}

.placeholder-content {
    text-align: center;
    padding: 40px;
    max-width: 400px;
}

.placeholder-content i {
    font-size: 4rem;
    color: #ffd700;
    margin-bottom: 20px;
}

.placeholder-content h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.placeholder-content p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.external-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #ffd700;
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #ffd700;
}

.external-link-btn:hover {
    background: #fff;
    color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.external-link-btn i {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .nav-link {
        margin: 20px 0;
        font-size: 1.2rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .landing-content h1 {
        font-size: 2.5rem;
    }
    
    .landing-content p {
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-section h1 {
        font-size: 2rem;
    }
    
    .show-tabs {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .show-tab-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .show-logos {
        gap: 20px;
        padding: 20px;
    }
    
    .show-logo {
        max-width: 150px;
        max-height: 60px;
    }
    
    .show-info {
        flex-direction: column;
        gap: 30px;
    }
    
    .show-info-content {
        width: 100%;
    }
    
    .show-logos {
        justify-content: center;
        padding: 15px;
    }
    
    .shows-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .show-header h3 {
        font-size: 2rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .deck-container iframe {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .landing-content h1 {
        font-size: 2rem;
    }
    
    .landing-content p {
        font-size: 1rem;
    }
    
    .about-section,
    .shows-section {
        padding: 80px 0 60px 0;
    }
    
    .deck-container iframe {
        height: 300px;
    }
}

/* Fullscreen Script Reader */
.script-reader.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000;
    background: #fff;
}

.script-reader.fullscreen iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Prevent PDF saving and right-click */
.script-container iframe,
.script-reader iframe {
    pointer-events: auto;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Add overlay to prevent right-click on PDFs */
.script-container {
    position: relative;
}

/* Disable context menu on script containers */
.script-container,
.script-reader {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Video Player Styles */
.video-player iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.loading::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #ffd700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Team Section Styles */
.team-section {
    padding: 80px 0;
    background: #fff;
    color: #333;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #333;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.member-image {
    flex-shrink: 0;
}

.member-photo {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid #ffd700;
}

.how-we-met-icon {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    border: 3px solid #ffd700;
    background: #f8f9fa;
}

.how-we-met-icon i {
    font-size: 4rem;
}

/* Image Script Viewer Styles */
.image-script-viewer {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.image-viewer-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #333;
    color: white;
    flex-shrink: 0;
}

.control-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav-btn {
    background: #ffd700;
    color: #333;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-btn:hover:not(:disabled) {
    background: #ffed4e;
    transform: translateY(-1px);
}

.nav-btn:disabled {
    background: #666;
    color: #999;
    cursor: not-allowed;
    transform: none;
}

#page-indicator {
    font-weight: 600;
    font-size: 14px;
}

.image-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: white;
    overflow-y: auto;
    overflow-x: hidden;
    gap: 10px;
}

.image-container img {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
}

.image-container img:hover {
    transform: scale(1.02);
}

/* Zoom controls */
.zoom-controls {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: auto;
}

.zoom-btn {
    background: #ffd700;
    color: #333;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.3s ease;
}

.zoom-btn:hover {
    background: #ffed4e;
    transform: translateY(-1px);
}

.zoom-btn:disabled {
    background: #666;
    color: #999;
    cursor: not-allowed;
    transform: none;
}

/* Fullscreen modal overlay */
.fullscreen-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 10000;
    display: none;
    flex-direction: column;
}

.fullscreen-modal.active {
    display: flex;
}

.fullscreen-modal-header {
    background: #333;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.fullscreen-modal-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.fullscreen-modal img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
}

.modal-page-break {
    width: 100%;
    height: 10px;
    background: #ddd;
    margin: 5px 0;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.fullscreen-modal-footer {
    background: #e9ecef;
    padding: 10px 20px;
    text-align: center;
    font-size: 12px;
    color: #666;
    flex-shrink: 0;
}

.fullscreen-btn {
    display: flex;
    align-items: center;
    gap: 5px;
}

.fullscreen-btn i {
    font-size: 14px;
}

.image-viewer-footer {
    padding: 10px 20px;
    background: #e9ecef;
    text-align: center;
    font-size: 12px;
    color: #666;
    border-top: 1px solid #dee2e6;
}

/* Mobile responsive for image viewer */
@media (max-width: 768px) {
    .image-viewer-controls {
        padding: 10px 15px;
        flex-direction: column;
        gap: 10px;
    }
    
    .control-buttons {
        width: 100%;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .zoom-controls {
        gap: 5px;
        justify-content: center;
    }
    
    .nav-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .fullscreen-btn {
        padding: 8px 16px;
        font-size: 14px;
        width: 100%;
        max-width: 200px;
    }
    
    #page-indicator {
        font-size: 12px;
        text-align: center;
    }
    
    .image-container {
        padding: 15px;
    }
    
    .image-container img {
        max-height: 60vh;
    }
}

.member-info h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.member-info p {
    line-height: 1.7;
    font-size: 1rem;
    color: #666;
}


/* Home Section Styles */
.home-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    text-align: center;
    padding-top: 70px;
    position: relative;
}

.home-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    max-width: 800px;
    height: auto;
    z-index: 1;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.home-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.home-content {
    opacity: 0;
    transition: opacity 1s ease-in-out;
    max-width: 600px;
    margin: 0 auto;
}

.home-content.show {
    opacity: 1;
}

.home-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.home-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Responsive Design for Team Section */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-member {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .member-photo {
        width: 250px;
        height: 250px;
    }
    
    .team-section h2,
    .how-we-met-section h2 {
        font-size: 2rem;
    }
    
    .how-we-met-content {
        padding: 30px 20px;
    }
    
    .home-content h1 {
        font-size: 2.5rem;
    }
    
    .home-video {
        width: 90%;
        max-width: 400px;
    }
    
    .landing-video {
        width: 90%;
        max-width: 400px;
    }
}
