/* JSRF Street Homepage CSS */

body {
    background: #0a0a0a url('concrete.jpg') repeat;
    font-family: Arial, Helvetica, sans-serif;
    margin: 10px;
    color: #FFFFFF;
    position: relative;
    overflow-x: hidden;
}

/* Main title styling */
.main-title {
    font-family: 'Bungee', cursive;
    text-shadow: 
        3px 3px 0px #000000,
        0 0 15px #FF00C1,
        0 0 25px #FF00C1;
    animation: title-pulse 3s ease-in-out infinite alternate;
}

@keyframes title-pulse {
    from {
        text-shadow: 
            3px 3px 0px #000000,
            0 0 15px #FF00C1,
            0 0 25px #FF00C1;
    }
    to {
        text-shadow: 
            3px 3px 0px #000000,
            0 0 10px #FF00C1,
            0 0 20px #FF00C1,
            0 0 30px #FF00C1;
    }
}

.subtitle {
    font-family: 'Righteous', cursive;
    text-shadow: 2px 2px 4px #000000;
}

/* Section headers with different fonts */
.section-header {
    font-family: 'Alfa Slab One', cursive;
    transform: rotate(-2deg);
    display: inline-block;
}

.nav-header {
    font-family: 'Press Start 2P', cursive;
    letter-spacing: 2px;
    font-size: 10px !important;
}

.gallery-header {
    font-family: 'Bungee', cursive;
    transform: rotate(1deg);
    display: inline-block;
}

.links-header {
    font-family: 'Righteous', cursive;
    transform: rotate(-1deg);
    display: inline-block;
}

.buttons-header {
    font-family: 'Alfa Slab One', cursive;
    letter-spacing: 3px;
}

/* Table styling with street vibes */
.section-box {
    transform: rotate(-0.5deg);
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.7);
}

.nav-box {
    transform: rotate(0.8deg);
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

.status-box {
    transform: rotate(-0.3deg);
    border: 3px dashed #9900FF;
}

.links-box {
    transform: rotate(0.6deg);
}

.random-box {
    transform: rotate(-1deg);
    border: 2px dotted #FF00C1;
}

/* Web buttons horizontal slideshow */
.web-buttons-container {
    width: 100%;
    overflow: hidden;
    height: 60px;
    background: #1a1a1a;
    border: 2px solid #00C1FF;
    position: relative;
}

.web-buttons-strip {
    display: flex;
    align-items: center;
    height: 60px;
    animation: scroll-buttons 90s linear infinite;
    gap: 8px;
    padding: 5px 0;
}

.web-buttons-strip img {
    height: auto;
    max-height: 50px;
    width: auto;
    border: 1px solid #404040;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.web-buttons-strip img:hover {
    border-color: #C1FF00;
    transform: scale(1.1);
}

@keyframes scroll-buttons {
    0% {
        transform: translateX(10%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Marquee styling */
marquee {
    border: 2px solid #00C1FF;
    background: rgba(0, 193, 255, 0.1);
}

.ticker-text {
    font-family: 'Press Start 2P', cursive;
    letter-spacing: 1px;
    font-size: 10px !important;
}

/* Text effects */
.status-text {
    font-family: 'Courier New', monospace;
}

.counter-text {
    font-family: 'Righteous', cursive;
}

/* Link styling */
a:link {
    color: #00C1FF;
    text-decoration: underline;
    font-weight: bold;
}

a:visited {
    color: #FF00C1;
}

a:hover {
    color: #C1FF00;
    background-color: rgba(64, 64, 64, 0.8);
    text-decoration: none;
    padding: 2px 4px;
    text-shadow: 0 0 5px #C1FF00;
}

.footer-text {
    font-family: 'Press Start 2P', cursive;
    font-size: 8px !important;
}

#visitor-count {
    text-shadow: 0 0 10px #C1FF00;
    animation: glow-pulse 2s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
    from {
        text-shadow: 0 0 10px #C1FF00;
    }
    to {
        text-shadow: 0 0 20px #C1FF00, 0 0 30px #C1FF00;
    }
}

.footer-text {
    font-family: 'Courier New', monospace;
}

/* Blink animation */
blink {
    animation: blink-text 1.5s infinite;
}

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

/* General font effects */
font[color="#FF00C1"] {
    text-shadow: 1px 1px 2px #000000, 0 0 8px #FF00C1;
}

font[color="#C1FF00"] {
    text-shadow: 1px 1px 2px #000000, 0 0 8px #C1FF00;
}

font[color="#00C1FF"] {
    text-shadow: 1px 1px 2px #000000, 0 0 8px #00C1FF;
}

font[color="#FF6600"] {
    text-shadow: 1px 1px 2px #000000, 0 0 8px #FF6600;
}

font[color="#9900FF"] {
    text-shadow: 1px 1px 2px #000000, 0 0 8px #9900FF;
}

/* Table general styling */
table {
    border-collapse: separate;
    border-spacing: 3px;
}

/* Responsive design */
@media (max-width: 768px) {
    table[width="100%"] {
        width: 100% !important;
    }
    
    .web-buttons-container {
        height: 50px;
    }
    
    .web-buttons-strip {
        height: 50px;
    }
    
    .web-buttons-strip img {
        max-height: 40px;
    }
}