/* ==================================================
   90s PUKE SUMMER CAMP STYLES
   ================================================== */

/* ==================================================
   GLOBAL STYLES
   ================================================== */

/* Minimum width for all pages */
body {
    min-width: 320px;
    overflow-x: hidden;
}

/* Prevent horizontal scroll globally */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.5; }
}

/* ==================================================
   LOGIN PAGE STYLES
   ================================================== */
.login-body {
    background-color: #000;
    background-image: url('/assets/media/images/tile_star.gif');
    margin: 0;
    padding: 0;
    font-family: "Comic Sans MS", cursive;
    overflow: hidden;
}

.login-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(45deg, #ff00ff, #00ffff, #ffff00, #ff00ff);
    padding: 5px;
    border: 3px ridge #fff;
    box-shadow: 10px 10px 20px rgba(0,0,0,0.8);
    animation: shake 0.1s infinite;
    width: 90%;
    max-width: 500px;
}

@keyframes shake {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    25% { transform: translate(-49.5%, -50%) rotate(0.1deg); }
    50% { transform: translate(-50%, -49.5%) rotate(0deg); }
    75% { transform: translate(-50.5%, -50%) rotate(-0.1deg); }
    100% { transform: translate(-50%, -50%) rotate(0deg); }
}

.login-inner {
    background-color: #000080;
    padding: 20px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.login-title {
    color: #ffff00;
    text-shadow: 3px 3px 0 #ff00ff;
    margin: 0 0 20px 0;
    font-size: 28px;
    animation: title-blink 1s infinite;
}

@keyframes title-blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.login-warning {
    color: #ff0000;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: flash 0.5s infinite;
}

@keyframes flash {
    0%, 50% { color: #ff0000; }
    51%, 100% { color: #ffff00; }
}

.login-input {
    display: block;
    width: 100%;
    max-width: 250px;
    margin: 10px auto;
    padding: 8px;
    border: 3px inset #ccc;
    background-color: #000;
    color: #00ff00;
    font-family: "Courier New", monospace;
    font-size: 16px;
}

.login-submit {
    background: linear-gradient(to bottom, #c0c0c0, #808080);
    border: 3px outset #dfdfdf;
    padding: 10px 30px;
    font-family: "Comic Sans MS", cursive;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
}

.login-submit:active {
    border: 3px inset #dfdfdf;
}

.login-error {
    color: #ff0000;
    background-color: #ffff00;
    padding: 5px;
    margin-top: 10px;
    font-weight: bold;
    animation: error-blink 0.3s infinite;
}

@keyframes error-blink {
    0%, 50% { background-color: #ffff00; }
    51%, 100% { background-color: #ff0000; color: #ffff00; }
}

.login-marquee {
    position: absolute;
    top: 10px;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.login-marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 15s linear infinite;
    color: #00ff00;
    font-size: 40px;
    text-shadow: 2px 2px 0 #ff00ff;
    white-space: nowrap;
}

@keyframes marquee {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

.login-construction {
    position: absolute;
    bottom: 10px;
    left: 10px;
}

.login-construction img {
    width: 100px;
}

.login-counter {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: #00ff00;
    font-family: "Courier New", monospace;
    background-color: #000;
    padding: 5px;
    border: 2px solid #00ff00;
}

/* ==================================================
   HOME PAGE STYLES
   ================================================== */

/* Logout Button */
.logout-btn {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1001;
    background: linear-gradient(to bottom, #ff0000, #cc0000);
    color: #ffff00;
    text-decoration: none;
    padding: 8px 16px;
    border: 3px outset #ff6666;
    font-family: 'Comic Sans MS', cursive;
    font-weight: bold;
    font-size: 16px;
    text-shadow: 2px 2px 2px #000;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.5);
    display: inline-block;
    animation: pulse 2s infinite;
}

.logout-btn:hover {
    border: 3px inset #ff6666;
    background: linear-gradient(to bottom, #cc0000, #990000);
    text-decoration: none;
    color: #ffff00;
}

/* Music Control Buttons */
.music-btn-play {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
    padding: 10px 20px;
    font-size: 18px;
    font-family: "Comic Sans MS", cursive;
    font-weight: bold;
    background: linear-gradient(to bottom, #ffff00, #f2d314);
    color: #ff00ff;
    text-shadow: 2px 2px 2px #000;
    border: 3px outset #ffcc00;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.5);
    cursor: pointer;
    animation: pulse 2s infinite;
}

.music-btn-play:hover {
    border: 3px inset #ffcc00;
    background: linear-gradient(to bottom, #f2d314, #e6c200);
}

.music-btn-stop {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
    padding: 10px 20px;
    font-size: 18px;
    font-family: "Comic Sans MS", cursive;
    font-weight: bold;
    background: linear-gradient(to bottom, #ff66c4, #cc0099);
    color: #ffff00;
    text-shadow: 2px 2px 2px #000;
    border: 3px outset #ff99dd;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.5);
    cursor: pointer;
    animation: pulse 2s infinite;
    display: flex;
    align-items: center;
}

.music-btn-stop:hover {
    border: 3px inset #ff99dd;
    background: linear-gradient(to bottom, #cc0099, #990066);
}

/* 90s Email Link */
.email-link {
    color: #0000ff !important;
    text-decoration: underline !important;
    font-weight: bold;
    font-size: 20px;
    text-shadow: 1px 1px 2px #ff00ff;
    transition: all 0.3s;
}

.email-link:hover {
    color: #ff00ff !important;
    text-decoration: underline overline !important;
    animation: blink 0.5s infinite;
}

.email-link:visited {
    color: #800080 !important;
}

/* 90s Contact Info Box */
.contact-info {
    background: linear-gradient(135deg, #ffff00, #00ffff, #ff00ff, #00ff00);
    padding: 5px;
    border-radius: 0;
    box-shadow: inset -3px -3px 10px rgba(0,0,0,0.5), inset 3px 3px 10px rgba(255,255,255,0.5);
}

.contact-info p {
    background: #000080;
    color: #ffff00 !important;
    padding: 20px;
    margin: 0;
    border: 3px ridge #c0c0c0;
    font-family: "Comic Sans MS", cursive;
    font-size: 18px;
    text-align: center;
    text-shadow: 2px 2px 4px #000;
}

/* Rainbow text animation for titles */
.welcome-text, .camp-title {
    background: linear-gradient(to right, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #8b00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: rainbow-slide 3s linear infinite;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-family: "Comic Sans MS", cursive !important;
    font-weight: bold;
}

@keyframes rainbow-slide {
    to { background-position: 200% center; }
}

/* Marquee styling */
.tagline marquee {
    font-size: 24px;
    color: #ff00ff;
    text-shadow: 2px 2px 4px #000;
    background: linear-gradient(to right, #ffff00, #00ffff);
    padding: 10px;
    border: 3px double #ff00ff;
}

/* Paul Chuckle Announcement Box */
.chuckle-announcement {
    background: linear-gradient(45deg, #ff0000, #ffff00, #00ff00, #00ffff, #ff00ff);
    padding: 5px;
    animation: border-flash 2s infinite;
}

.chuckle-announcement p {
    background: #000;
    color: #00ff00 !important;
    padding: 20px;
    margin: 0;
    border: 3px ridge #00ff00;
    font-family: "Courier New", monospace;
    font-size: 16px;
    text-align: center;
}

@keyframes border-flash {
    0%, 100% { box-shadow: 0 0 20px #ff00ff; }
    50% { box-shadow: 0 0 40px #00ffff; }
}

/* Scale the entire Chuckle row by 25% */
.chuckle-row {
    transform: scale(1.25);
    transform-origin: center;
}

/* Scale down on larger screens to prevent overflow */
@media (min-width: 992px) {
    .chuckle-row {
        transform: scale(1.1);
    }
}

@media (min-width: 1200px) {
    .chuckle-row {
        transform: scale(1);
    }
}

/* News Icon Styling */
.news-icon-container {
    position: relative;
    display: inline-block;
}

.news-icon {
    font-size: 80px;
    color: #ff0000;
    text-shadow: 3px 3px 0 #ffff00, 6px 6px 0 #00ffff;
    filter: drop-shadow(0 0 10px #ffff00);
}

.news-sparkles {
    position: absolute;
    font-size: 25px;
    color: #ff00ff;
    text-shadow: 2px 2px 0 #ffff00;
}

.news-sparkles:nth-child(2) {
    top: -15px;
    left: -15px;
}

.news-sparkles:nth-child(3) {
    top: -15px;
    right: -15px;
}

.news-sparkles:nth-child(4) {
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.news-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Comic Sans MS", cursive;
    font-weight: bold;
    font-size: 14px;
    color: #ff0000;
    text-shadow: 2px 2px 0 #ffff00, 4px 4px 0 #00ffff;
    white-space: nowrap;
    z-index: 2;
}

/* Paul Chuckle Image Styling */
.paul-chuckle-container {
    position: relative;
    display: inline-block;
    animation: wiggle 2s ease-in-out infinite;
}

.paul-chuckle-img {
    max-width: 150px;
    border: 5px solid;
    border-image: linear-gradient(45deg, #ff0000, #00ff00, #0000ff, #ffff00) 1;
    box-shadow: 0 0 30px #ff00ff, 0 0 50px #00ffff;
    animation: spin-slow 10s linear infinite, glow 2s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

@keyframes spin-slow {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

@keyframes glow {
    0%, 100% { filter: brightness(1) contrast(1); }
    50% { filter: brightness(1.5) contrast(1.2); }
}

.chuckle-sparkles {
    position: absolute;
    font-size: 30px;
    animation: sparkle 3s linear infinite;
    top: -20px;
    left: 20px;
}

.sparkle-2 {
    top: auto;
    bottom: -20px;
    right: 20px;
    left: auto;
    animation-delay: 1s;
}

.sparkle-3 {
    top: 50%;
    right: -30px;
    left: auto;
    animation-delay: 2s;
}

@keyframes sparkle {
    0%, 100% { 
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% { 
        opacity: 1;
        transform: scale(1.5) rotate(180deg);
    }
}

.chuckle-text, .chuckle-text-2 {
    position: absolute;
    font-family: "Comic Sans MS", cursive;
    font-weight: bold;
    font-size: 20px;
    color: #ff00ff;
    text-shadow: 2px 2px 0 #ffff00, 4px 4px 0 #00ffff;
    animation: bounce 1s ease-in-out infinite;
    white-space: nowrap;
}

.chuckle-text {
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.chuckle-text-2 {
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.5s;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Spacer utility */
.spacer-3em {
    height: 3em;
}

/* Paul Message Row */
.paul-message-row {
    transform: scale(1.1);
    transform-origin: center;
    margin-top: 2em;
}

/* Explosion Link Styling */
.explosion-link-container {
    position: relative;
    display: inline-block;
}

.explosion-link {
    display: block;
    background: linear-gradient(45deg, #ff0000, #ffff00, #ff0000, #ffff00, #ff0000);
    background-size: 400% 400%;
    animation: explosion-gradient 3s ease infinite;
    color: #fff;
    text-decoration: none;
    padding: 20px 30px;
    border: 5px solid #000;
    border-radius: 15px;
    box-shadow: 0 0 30px #ff0000, 0 0 60px #ffff00, inset 0 0 20px rgba(255,255,255,0.2);
    font-family: "Comic Sans MS", cursive;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.explosion-link:hover {
    text-decoration: none;
    color: #fff;
    transform: scale(1.05);
}

@keyframes explosion-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.explosion-text {
    font-size: 22px;
    text-shadow: 3px 3px 0 #000, 6px 6px 0 #ff00ff;
    z-index: 2;
    position: relative;
}

.explosion-sparkles {
    position: absolute;
    font-size: 35px;
    z-index: 1;
    opacity: 0.8;
}

.explosion-sparkles:nth-child(2) {
    top: -30px;
    left: -20px;
}

.explosion-sparkles:nth-child(3) {
    top: -30px;
    right: -20px;
}

.explosion-sparkles:nth-child(4) {
    bottom: -30px;
    left: -20px;
}

.explosion-sparkles:nth-child(5) {
    bottom: -30px;
    right: -20px;
}

/* ==================================================
   GUESTBOOK SECTION
   ================================================== */

.guestbook-title {
    font-family: "Comic Sans MS", cursive;
    font-weight: bold;
    font-size: 32px;
    color: #ff00ff;
    text-shadow: 3px 3px 0 #ffff00, 6px 6px 0 #00ffff;
    margin-bottom: 30px;
}

.guestbook-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.gang-image-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 20px;
}

.gang-image {
    width: 300px;
    height: auto;
    transform: rotate(15deg);
    border: 5px solid #ff00ff;
    border-radius: 15px;
    box-shadow: 8px 8px 25px rgba(0,0,0,0.5);
}

.quote-bubble {
    position: relative;
    background: linear-gradient(135deg, #ffff00, #fff700, #ffff00);
    border: 4px ridge #000;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.5), inset 2px 2px 8px rgba(255,255,255,0.3);
    font-family: "Comic Sans MS", cursive;
    transform: scale(1.15);
    animation: subtle-glow 4s ease-in-out infinite;
}

.quote-bubble:nth-child(even) {
    background: linear-gradient(135deg, #87ceeb, #add8e6, #87ceeb);
}

@keyframes subtle-glow {
    0%, 100% { box-shadow: 5px 5px 15px rgba(0,0,0,0.5), inset 2px 2px 8px rgba(255,255,255,0.3); }
    50% { box-shadow: 5px 5px 20px rgba(0,0,0,0.6), inset 2px 2px 12px rgba(255,255,255,0.4), 0 0 15px rgba(255,255,0,0.3); }
}

.quote-text {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.5;
    text-shadow: 1px 1px 0 rgba(255,255,255,0.7);
    letter-spacing: 0.5px;
}

.quote-triangle {
    position: absolute;
    bottom: -18px;
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 18px solid #ffff00;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.quote-bubble:nth-child(even) .quote-triangle {
    border-top-color: #87ceeb;
}

.quote-author {
    font-size: 16px;
    font-weight: bold;
    color: #ff00ff;
    text-shadow: 2px 2px 0 #000, 4px 4px 0 #ffff00;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: author-shimmer 3s ease-in-out infinite;
}

@keyframes author-shimmer {
    0%, 100% { text-shadow: 2px 2px 0 #000, 4px 4px 0 #ffff00; }
    50% { text-shadow: 2px 2px 0 #000, 4px 4px 0 #00ffff; }
}

/* Different positioning for speech triangles */
.quote-1 {
    align-self: flex-start;
    max-width: 85%;
    transform: scale(1.15) rotate(-2deg);
}

.quote-1 .quote-triangle {
    left: 30px;
}

.quote-2 {
    align-self: flex-end;
    max-width: 90%;
    transform: scale(1.15) rotate(3deg);
}

.quote-2 .quote-triangle {
    right: 40px;
}

.quote-3 {
    align-self: flex-start;
    max-width: 80%;
    transform: scale(1.15) rotate(-1deg);
}

.quote-3 .quote-triangle {
    left: 50px;
}

.quote-4 {
    align-self: flex-end;
    max-width: 95%;
    transform: scale(1.15) rotate(2deg);
}

.quote-4 .quote-triangle {
    right: 25px;
}

.quote-5 {
    align-self: flex-start;
    max-width: 85%;
    transform: scale(1.15) rotate(-3deg);
}

/* Guestbook Footer */
.guestbook-footer {
    margin-top: 30px;
    padding: 20px;
}

.puke-gang-image {
    max-width: 400px;
    height: auto;
    border: 4px solid #00ffff;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    transform: rotate(-2deg);
    display: block;
    margin: 0 auto;
}

/* ==================================================
   POPUP MODAL STYLES
   ================================================== */

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none;
    animation: popup-fade-in 0.3s ease-out;
}

.popup-overlay.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes popup-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.popup-realplayer {
    background: #c0c0c0;
    border: 3px outset #dfdfdf;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.7);
    animation: popup-slide-in 0.5s ease-out;
    position: relative;
    width: 80vw;
    max-width: 1200px;
    max-height: 90vh;
}

.popup-realplayer .rp-display {
    background: #000;
    border: 2px inset #C0C0C0;
    margin-bottom: 10px;
}

.popup-realplayer .rp-display video {
    width: 100%;
    height: auto;
    background: #000;
}

@keyframes popup-slide-in {
    from { 
        transform: scale(0.7) translateY(-50px);
        opacity: 0;
    }
    to { 
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.popup-close {
    cursor: pointer;
}

.popup-close:hover {
    background: #ff0000 !important;
    color: #fff !important;
}

/* ==================================================
   LOGIN ERROR POPUP MODAL
   ================================================== */

.login-error-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: none;
    animation: login-popup-fade-in 0.3s ease-out;
}

.login-error-overlay.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes login-popup-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.login-error-modal {
    background: #ffffff;
    border: 5px solid #ff0000;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(255, 0, 0, 0.8);
    animation: login-popup-shake 0.5s ease-out;
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    overflow: hidden;
}

@keyframes login-popup-shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-10px); }
    20%, 40%, 60%, 80% { transform: translateX(10px); }
}

.login-error-modal video {
    width: 100%;
    height: auto;
    display: block;
}

.login-error-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff0000;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    line-height: 1;
}

.login-error-close:hover {
    background: #cc0000;
}

.login-unmute-btn {
    display: block;
    background: #00ff00;
    color: #000000;
    border: 2px solid #000000;
    border-radius: 5px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    font-family: "Comic Sans MS", cursive;
    animation: pulse 2s infinite;
    margin: 15px auto;
    width: fit-content;
}

.login-unmute-btn:hover {
    background: #00cc00;
    transform: scale(1.1);
}

.magic-word-text {
    background: #000000;
    color: #00ff00;
    padding: 15px;
    font-family: "Courier New", monospace;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    border-top: 2px solid #ff0000;
    overflow: hidden;
    white-space: nowrap;
}

.scrolling-text {
    display: inline-block;
    padding-left: 100%;
    animation: magic-scroll 8s linear infinite;
    text-shadow: 2px 2px 0 #ff0000;
}

@keyframes magic-scroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* ==================================================
   RESPONSIVE DESIGN FOR MOBILE (iOS 11 and similar)
   ================================================== */

/* Mobile-first responsive breakpoints */
@media (max-width: 575.98px) {
    /* Login page responsive adjustments */
    .login-container {
        width: 95vw !important;
        max-width: none !important;
    }
    
    .login-inner {
        padding: 10px !important;
    }
    
    .login-title {
        font-size: 20px !important;
    }
    
    .login-warning {
        font-size: 16px !important;
    }
    
    .login-input {
        font-size: 14px !important;
        padding: 6px !important;
        max-width: 100% !important;
        width: 90% !important;
    }
    
    .login-submit {
        font-size: 14px !important;
        padding: 8px 20px !important;
        width: 90% !important;
    }
    
    /* Font size adjustments for small screens */
    .welcome-text {
        font-size: 1.5rem !important;
        line-height: 1.3;
    }
    
    .camp-title {
        font-size: 2rem !important;
    }
    
    .tagline {
        font-size: 1.2rem !important;
    }
    
    .tagline marquee {
        font-size: 16px !important;
        padding: 5px !important;
    }
    
    .contact-info {
        font-size: 1.8rem !important;
        padding: 0.5rem !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .contact-info p {
        font-size: 14px !important;
        line-height: 1.4;
        padding: 15px !important;
        word-break: break-word !important;
    }
    
    .guestbook-title {
        font-size: 24px !important;
    }
    
    .quote-text {
        font-size: 14px !important;
    }
    
    .quote-author {
        font-size: 12px !important;
    }
    
    /* Layout adjustments */
    .chuckle-row {
        transform: scale(1) !important;
    }
    
    .paul-message-row {
        transform: scale(1) !important;
    }
    
    .news-icon {
        font-size: 50px !important;
    }
    
    .news-text {
        font-size: 10px !important;
    }
    
    .explosion-text {
        font-size: 16px !important;
    }
    
    .paul-chuckle-img {
        max-width: 100px !important;
    }
    
    .chuckle-text, .chuckle-text-2 {
        font-size: 14px !important;
    }
    
    /* Gang image scaling */
    .gang-image {
        width: 250px !important;
        max-width: 100% !important;
        display: block !important;
        margin: 0 auto 30px auto !important;
    }
    
    /* Quote bubble adjustments */
    .quote-bubble {
        padding: 15px !important;
        margin-bottom: 20px !important;
        transform: scale(1) !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Reduce spacers on mobile */
    .spacer-3em {
        height: 1.5em !important;
    }
    
    /* Logout button adjustments */
    .logout-btn {
        font-size: 10px !important;
        padding: 4px 8px !important;
        top: 5px !important;
        left: 5px !important;
    }
    
    .music-btn-play, .music-btn-stop {
        font-size: 12px !important;
        padding: 6px 12px !important;
        top: 5px !important;
        right: 5px !important;
    }
    
    /* Admin link adjustments */
    .admin-hacker-link {
        top: 40px !important;
        right: 5px !important;
        font-size: 10px !important;
        padding: 3px 6px !important;
    }
    
    
    /* Email link smaller text on extra small screens */
    .email-link {
        font-size: 1.1rem !important;
    }
    
    /* Ensure no horizontal overflow */
    .container {
        max-width: 100% !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
        overflow-x: hidden !important;
    }
    
    /* Prevent any element from causing horizontal scroll */
    * {
        box-sizing: border-box !important;
    }
    
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .col, .col-12, [class*="col-"] {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
    
    /* Puke gang image centering on XS screens */
    .puke-gang-image {
        max-width: 250px !important;
        display: block !important;
        margin: 0 auto !important;
    }
}

/* Tablet adjustments */
@media (min-width: 576px) and (max-width: 991.98px) {
    .welcome-text {
        font-size: 2rem !important;
    }
    
    .camp-title {
        font-size: 2.5rem !important;
    }
    
    .contact-info {
        font-size: 2rem !important;
    }
    
    .chuckle-row {
        transform: scale(1.1) !important;
    }
    
    .paul-message-row {
        transform: scale(1.05) !important;
    }
    
    /* Gang image adjustments for sm breakpoint */
    .gang-image-container {
        margin-bottom: 60px !important;
    }
    
    .gang-image {
        width: 400px !important;
        max-width: 100% !important;
    }
}

/* ==================================================
   SMILEY ICON MAX WIDTH
   ================================================== */

.smiley-icon {
    max-width: 100px !important;
    margin: 4em;
}

/* Mobile smiley icon override */
@media (max-width: 575.98px) {
    .smiley-icon {
        max-width: 50px !important;
        margin: 2em !important;
    }
}

/* Prevent smiley overlap on medium-large screens */
@media (min-width: 1200px) and (max-width: 1400px) {
    .smiley-icon {
        max-width: 80px !important;
        margin: 2em 1em !important;
    }
}

/* ==================================================
   ADMIN HACKER LINK STYLES  
   ================================================== */

.admin-hacker-link {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 999;
    background: #000;
    border: 1px solid #00ff00;
    padding: 5px 10px;
    font-family: "Courier New", monospace;
    font-size: 12px;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.admin-hacker-link a {
    color: #00ff00;
    text-decoration: none;
    display: block;
}

.admin-hacker-link a:hover {
    color: #ffffff;
    text-decoration: none;
    text-shadow: 0 0 5px #00ff00;
}

.admin-hacker-link:hover {
    background: #001100;
    border-color: #ffffff;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
}

/* ==================================================
   GAMING LEAGUE LINK STYLES
   ================================================== */

.gaming-league-link-container {
    position: relative;
    display: inline-block;
}

.gaming-league-link {
    display: block;
    background: linear-gradient(45deg, #00ff00, #ffff00, #ff0000, #ff00ff, #0000ff);
    background-size: 400% 400%;
    animation: gaming-gradient 4s ease infinite;
    color: #fff;
    text-decoration: none;
    padding: 25px 40px;
    border: 5px solid #000;
    border-radius: 20px;
    box-shadow: 0 0 30px #00ff00, 0 0 60px #ffff00, inset 0 0 20px rgba(255,255,255,0.2);
    font-family: "Comic Sans MS", cursive;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transform: scale(1.1);
}

.gaming-league-link:hover {
    text-decoration: none;
    color: #fff;
    transform: scale(1.15);
    animation-duration: 2s;
}

@keyframes gaming-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.gaming-league-text {
    font-size: 28px;
    text-shadow: 3px 3px 0 #000, 6px 6px 0 #ff0000;
    z-index: 2;
    position: relative;
    margin-bottom: 10px;
}

.gaming-league-subtitle {
    font-size: 16px;
    text-shadow: 2px 2px 0 #000;
    z-index: 2;
    position: relative;
    animation: subtitle-flash 2s ease-in-out infinite;
}

@keyframes subtitle-flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.gaming-sparkles {
    position: absolute;
    font-size: 35px;
    z-index: 1;
    opacity: 0.8;
    animation: gaming-sparkle 3s linear infinite;
}

.gaming-sparkles:nth-child(3) {
    top: -30px;
    left: -20px;
}

.gaming-sparkles:nth-child(4) {
    top: -30px;
    right: -20px;
    animation-delay: 0.5s;
}

.gaming-sparkles:nth-child(5) {
    bottom: -30px;
    left: -20px;
    animation-delay: 1s;
}

.gaming-sparkles:nth-child(6) {
    bottom: -30px;
    right: -20px;
    animation-delay: 1.5s;
}

@keyframes gaming-sparkle {
    0% { 
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% { 
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
    }
    100% { 
        opacity: 0;
        transform: scale(0) rotate(360deg);
    }
}

/* Mobile responsive for gaming league link */
@media (max-width: 575.98px) {
    .gaming-league-link {
        transform: scale(1) !important;
        padding: 15px 20px !important;
    }
    
    .gaming-league-link:hover {
        transform: scale(1.05) !important;
    }
    
    .gaming-league-text {
        font-size: 20px !important;
    }
    
    .gaming-league-subtitle {
        font-size: 12px !important;
    }
}