/* Background (dark gradient + subtle stars) */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: radial-gradient(circle at top, #222, #000);
    color: white;
}

/* Main rounded box */
.content-box {
    width: 60%;
    max-width: 800px;
    margin: 50px auto;
    background: #3a3a3a;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    border: 2px solid #555;
}

/* Title */
h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* Tagline */
.tagline {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Divider line */
hr {
    border: none;
    height: 1px;
    background: #aaa;
    width: 80%;
    margin: 30px auto;
}

/* Subtext */
.subtext {
    font-size: 0.9rem;
    margin-bottom: 30px;
    opacity: 0.85;
}

/* Logos stacked vertically */
.logos img {
    width: 250px;
    max-width: 90%;
    margin: 25px auto;
    display: block;
}

/* Section wrapper for spacing & layout */
.section {
    width: 60%;
    max-width: 800px;
    margin: 40px auto;
    background: #3a3a3a;
    padding: 35px;
    border-radius: 15px;
    border: 2px solid #555;
    text-align: center;
}

/* Section titles */
.section h2 {
    margin-top: 0;
    font-size: 1.6rem;
    color: #fff;
}

/* Buttons layout */
.buttons {
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 8px;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 8px;
    color: white;
    border: 1px solid #777;
    transition: 0.25s;
}

/* Button styles */
.insta { background: #E4405F; }
.email { background: #444; }
.yt { background: #FF0000; }

.btn:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

/* Video embed styling */
.videos {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 25px;
}

.videos iframe {
    width: 100%;
    height: 315px;
    border-radius: 10px;
    border: 2px solid #555;
}

/* Mobile responsiveness */
@media (max-width: 700px) {
    .section, .content-box {
        width: 90%;
        padding: 25px;
    }
}
/* Divider lines like in screenshot */
.divider {
    width: 85%;
    margin: 40px auto;
    border: none;
    border-top: 1px solid #888;
}

/* ===== FOLLOW SECTION ===== */
.follow-section {
    width: 60%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    padding-bottom: 20px;
}

.follow-section p {
    line-height: 1.6;
    font-size: 0.95rem;
    opacity: 0.95;
}

/* Round icon buttons */
.icon-row {
    margin-top: 20px;
}

.icon-btn {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px;
    transition: 0.25s;
}

.icon-btn img {
    width: 24px;
    height: 24px;
}

.icon-btn:hover {
    transform: scale(1.08);
    background: #e6e6e6;
}

/* ===== STREAMS SECTION ===== */
.streams-section {
    width: 60%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.streams-header {
    margin-bottom: 20px;
    opacity: 0.95;
}

/* YouTube preview boxes (match your dashed border style) */
.stream-box {
    background: #4b4b4b;
    border: 2px dashed #777;
    border-radius: 8px;
    padding: 10px;
    margin: 20px 0;
}

.stream-box iframe {
    width: 100%;
    height: 315px;
    border-radius: 5px;
}

/* Mobile */
@media (max-width: 700px) {
    .follow-section,
    .streams-section {
        width: 90%;
    }
}
/* Replay Section */
.replay-section {
    width: 60%;
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    color: #fff;
}

/* Event Dropdown Blocks */
.event {
    margin-bottom: 20px;
    text-align: left;
    background: #3a3a3a;
    border: 2px solid #555;
    border-radius: 10px;
}

/* Event header button */
.event-header {
    display: block;
    padding: 15px 20px;
    background: #4b4b4b;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    margin: 10px 0;
    transition: background 0.2s;
}

.event-header:hover {
    background: #5b5b5b;
}


/* Expandable content */
.event-content {
    display: none;
    padding: 15px 20px;
    border-top: 1px solid #666;
}

.event-content a {
    display: block;
    color: #cfcfcf;
    margin: 8px 0;
    text-decoration: none;
}

.event-content a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 700px) {
    .replay-section {
        width: 90%;
    }
}
/* Password Gate */
.replay-lock {
    width: 60%;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    background: #3a3a3a;
    border: 2px solid #555;
    border-radius: 12px;
    padding: 30px;
}

.replay-lock input {
    width: 70%;
    padding: 10px;
    font-size: 1rem;
    border-radius: 6px;
    border: 1px solid #777;
    margin: 10px 0 15px;
}

.replay-lock button {
    padding: 10px 20px;
    background: #4b4b4b;
    color: white;
    border: 1px solid #777;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.2s;
}

.replay-lock button:hover {
    background: #5b5b5b;
}

.error-msg {
    color: #ff6b6b;
    margin-top: 10px;
    font-size: 0.9rem;
}

/* Replay section already styled — use previous replay CSS */


.site-footer {
  background-color: #2c2c2c;
  border-top: 1px solid #555;
  padding: 15px 20px;
  color: #aaa;
  font-size: 0.85rem;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  user-select: none;
}

.site-footer a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.25s;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-content p {
  margin: 5px 0;
}
.lock-icon {
    font-size: 1.3rem;
    margin-left: 8px;
    color: #ffcc00;
    vertical-align: middle;
}

/* Optional: animate lock icon for attention */
.lock-icon {
    display: inline-block;
    animation: lock-pulse 1.2s infinite;
}

@keyframes lock-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

