/* ===================================
   SIXZERONINE - BLACK/WHITE/SILVER UNDERGROUND
   2000s Rapper Collective Aesthetic
   ================================== */

/* === RESET & BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    /* Pure black background */
    background-color: #000000;
    
    /* Subtle scanline effect */
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.02) 2px,
            rgba(255, 255, 255, 0.02) 4px
        );
    
    /* Clean, bold font */
    font-family: 'Arial Black', 'Arial Bold', Arial, sans-serif;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* === MAIN CONTAINER === */
.maindiv {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.container {
    width: 100%;
    padding: 0 15px;
    animation: fadeIn 0.8s ease-in;
}

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

/* === HEADER & LOGO === */
header {
    text-align: center;
    padding: 20px 0 15px 0;
    margin-bottom: 30px;
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    border-bottom: 2px solid #333333;
    position: relative;
}

header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #c0c0c0 50%, transparent 100%);
}

.logo {
    display: inline-block;
    position: relative;
}

.logo img {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(192, 192, 192, 0.5));
    transition: filter 0.4s ease, transform 0.4s ease;
}

.logo img:hover {
    filter: drop-shadow(0 0 35px rgba(255, 255, 255, 0.8));
    transform: scale(1.05);
}

/* === NAVIGATION MENU - PARALLELOGRAM BUTTONS === */
.main-nav {
    margin-bottom: 30px;
    padding: 0 10px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.main-nav li {
    flex: 1 1 auto;
    min-width: 140px;
    max-width: 250px;
}

.nav-button {
    /* Parallelogram shape with rounded corners on specific sides */
    display: block;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    font-size: 22px;
    font-weight: bold;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 2px;
    
    /* Silver gradient background */
    background: linear-gradient(135deg, 
        #f0f0f0 0%, 
        #c0c0c0 25%,
        #a8a8a8 50%,
        #c0c0c0 75%,
        #f0f0f0 100%);
    
    /* Parallelogram shape */
    transform: skewX(-15deg);
    
    /* Rounded corners on top-left and bottom-right only */
    border-radius: 15px 0 15px 0;
    
    /* Chrome metallic borders */
    border: 2px solid #ffffff;
    border-bottom: 3px solid #666666;
    border-right: 3px solid #666666;
    
    /* Smooth transitions */
    transition: all 0.4s ease;
    
    /* Metallic shadow effect */
    box-shadow: 
        0 6px 12px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    
    position: relative;
    overflow: hidden;
}

/* Un-skew the text */
.nav-button::before {
    content: attr(data-text);
}

/* Shine effect overlay */
.nav-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.nav-button:hover::after {
    transform: translateX(100%);
}

/* Hover state */
.nav-button:hover {
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        #d8d8d8 25%,
        #c0c0c0 50%,
        #d8d8d8 75%,
        #ffffff 100%);
    transform: skewX(-15deg) translateY(-4px) scale(1.05);
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 0 30px rgba(192, 192, 192, 0.5);
    border-color: #ffffff;
}

/* Active button state */
.nav-button.active {
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        #e8e8e8 25%,
        #cccccc 50%,
        #e8e8e8 75%,
        #ffffff 100%);
    color: #000000;
    border: 2px solid #ffffff;
    box-shadow: 
        0 6px 12px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 0 40px rgba(255, 255, 255, 0.6),
        inset 0 0 20px rgba(255, 255, 255, 0.3);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.nav-button.active:hover {
    transform: skewX(-15deg) translateY(-4px) scale(1.05);
}

/* === SCROLL EFFECTS ON BUTTONS === */
.nav-button.scrolled {
    animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 
            0 6px 12px rgba(0, 0, 0, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.7),
            0 0 0 rgba(192, 192, 192, 0);
    }
    50% {
        box-shadow: 
            0 6px 12px rgba(0, 0, 0, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.7),
            0 0 30px rgba(192, 192, 192, 0.6);
    }
}

/* === MAIN CONTENT GRID === */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
    padding: 0 10px;
    opacity: 0;
    animation: slideIn 0.8s ease-out 0.3s forwards;
}

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

/* === SIDEBAR STYLES === */
.sidebar {
    /* Black/silver gradient */
    background: linear-gradient(180deg, 
        rgba(30, 30, 30, 1) 0%, 
        rgba(15, 15, 15, 1) 50%,
        rgba(0, 0, 0, 1) 100%);
    
    /* Silver border */
    border: 2px solid #555555;
    border-top: 2px solid #999999;
    border-left: 2px solid #999999;
    border-radius: 3px;
    
    /* Metallic shadow */
    box-shadow: 
        0 6px 16px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    
    min-height: 350px;
    
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.sidebar:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 12px 24px rgba(0, 0, 0, 0.9),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 40px rgba(192, 192, 192, 0.2);
}

/* Silver accent bar */
.sidebar::before {
    content: '';
    display: block;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #666666 10%,
        #c0c0c0 30%,
        #ffffff 50%,
        #c0c0c0 70%,
        #666666 90%,
        transparent 100%);
    border-radius: 3px 3px 0 0;
}

.sidebar-header {
    background: linear-gradient(90deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    color: #c0c0c0;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 2px;
    padding: 10px 15px;
    border-bottom: 1px solid #444444;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.sidebar-content {
    padding: 20px 15px;
    color: #cccccc;
    font-size: 12px;
}

/* Track Item Styles */
.track-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #666666;
    border-radius: 2px;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
}

.track-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: #c0c0c0;
    transform: translateX(5px);
}

.track-number {
    color: #888888;
    font-weight: bold;
    font-size: 11px;
}

.track-name {
    flex: 1;
    color: #ffffff;
    font-size: 11px;
    font-weight: bold;
}

.track-plays {
    color: #999999;
    font-size: 10px;
}

/* Tour Date Styles */
.tour-section {
    margin-top: 15px;
}

.tour-date {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    margin-bottom: 8px;
    background: rgba(192, 192, 192, 0.1);
    border: 1px solid #333333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.tour-date:hover {
    background: rgba(192, 192, 192, 0.15);
    border-color: #666666;
    transform: translateX(5px);
}

.tour-date .date {
    color: #c0c0c0;
    font-weight: bold;
    font-size: 11px;
    min-width: 50px;
}

.tour-date .venue {
    color: #ffffff;
    font-size: 11px;
}

/* Member Card Styles */
.member-card {
    padding: 12px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, rgba(40,40,40,0.8) 0%, rgba(20,20,20,0.8) 100%);
    border: 1px solid #444444;
    border-left: 3px solid #888888;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.member-card:hover {
    border-left-color: #c0c0c0;
    transform: translateX(5px);
    background: linear-gradient(135deg, rgba(50,50,50,0.9) 0%, rgba(30,30,30,0.9) 100%);
}

.member-name {
    color: #ffffff;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.member-role {
    color: #999999;
    font-size: 10px;
    font-family: Arial, sans-serif;
}

/* Newsletter Section */
.newsletter-section {
    margin-top: 20px;
}

.newsletter-text {
    color: #aaaaaa;
    font-size: 11px;
    line-height: 1.5;
    margin-bottom: 12px;
    font-family: Arial, sans-serif;
}

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

.email-input {
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #555555;
    border-radius: 2px;
    color: #ffffff;
    font-size: 11px;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: #c0c0c0;
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 10px rgba(192, 192, 192, 0.3);
}

.email-input::placeholder {
    color: #666666;
}

.subscribe-btn {
    padding: 10px;
    background: linear-gradient(135deg, #e0e0e0 0%, #a0a0a0 100%);
    border: 1px solid #888888;
    border-radius: 2px;
    color: #000000;
    font-size: 11px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.subscribe-btn:hover {
    background: linear-gradient(135deg, #ffffff 0%, #c0c0c0 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

/* Merch Preview */
.merch-preview {
    margin-top: 20px;
}

.merch-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.merch-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #666666;
    transform: translateX(5px);
}

.merch-thumb {
    color: #888888;
    font-size: 10px;
    font-weight: bold;
    min-width: 60px;
}

.merch-name {
    flex: 1;
    color: #ffffff;
    font-size: 10px;
}

.merch-price {
    color: #c0c0c0;
    font-size: 11px;
    font-weight: bold;
}

/* === MAIN CONTENT AREA === */
.main-content {
    background: linear-gradient(180deg, 
        rgba(20, 20, 20, 1) 0%, 
        rgba(10, 10, 10, 1) 50%,
        rgba(0, 0, 0, 1) 100%);
    
    border: 2px solid #444444;
    border-top: 2px solid #888888;
    border-left: 2px solid #888888;
    border-radius: 3px;
    
    box-shadow: 
        0 6px 16px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    
    padding: 30px;
    min-height: 500px;
    
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.main-content:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 12px 24px rgba(0, 0, 0, 0.9),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 40px rgba(192, 192, 192, 0.2);
}

/* Chrome accent bar */
.main-content::before {
    content: '';
    display: block;
    height: 4px;
    background: linear-gradient(90deg, 
        #000000 0%,
        #333333 10%,
        #666666 20%,
        #999999 30%,
        #cccccc 40%,
        #ffffff 50%,
        #cccccc 60%,
        #999999 70%,
        #666666 80%,
        #333333 90%,
        #000000 100%);
    border-radius: 3px 3px 0 0;
    margin: -30px -30px 25px -30px;
}

/* Featured Box */
.featured-box {
    background: linear-gradient(135deg, rgba(40,40,40,0.6) 0%, rgba(10,10,10,0.9) 100%);
    border: 2px solid #555555;
    border-radius: 3px;
    padding: 30px;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.featured-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%,
        #c0c0c0 50%,
        transparent 100%);
}

.glitch-text {
    color: #c0c0c0;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    animation: glitchAnim 3s infinite;
}

@keyframes glitchAnim {
    0%, 90%, 100% {
        text-shadow: 0 0 5px rgba(192, 192, 192, 0.5);
    }
    95% {
        text-shadow: 
            -2px 0 rgba(255, 255, 255, 0.7),
            2px 0 rgba(192, 192, 192, 0.7),
            0 0 10px rgba(255, 255, 255, 0.5);
    }
}

.main-title {
    color: #ffffff;
    font-size: 32px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.8);
}

.release-tag {
    display: inline-block;
    background: linear-gradient(135deg, #ffffff 0%, #c0c0c0 100%);
    color: #000000;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 2px;
    border-radius: 2px;
    border: 1px solid #888888;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

/* Announcement Box */
.announcement-box {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #444444;
    border-left: 4px solid #c0c0c0;
    border-radius: 3px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.8);
}

.announcement-box h2 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* SoundCloud Placeholder */
.soundcloud-placeholder {
    background: linear-gradient(135deg, #2a2a2a 0%, #0a0a0a 100%);
    border: 2px solid #555555;
    color: #c0c0c0;
    padding: 60px 20px;
    text-align: center;
    margin-top: 15px;
    border-radius: 3px;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 
        0 6px 12px rgba(0, 0, 0, 0.8),
        inset 0 -2px 4px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

.soundcloud-placeholder:hover {
    background: linear-gradient(135deg, #3a3a3a 0%, #1a1a1a 100%);
    border-color: #888888;
    transform: scale(1.02);
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(192, 192, 192, 0.2);
}

.soundcloud-placeholder iframe {
    width: 100%;
    height: 166px;
    border: none;
    border-radius: 3px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.stat-box {
    background: linear-gradient(135deg, rgba(50,50,50,0.8) 0%, rgba(20,20,20,0.8) 100%);
    border: 2px solid #444444;
    border-top: 2px solid #666666;
    border-radius: 3px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box:hover {
    border-color: #888888;
    transform: translateY(-5px);
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(192, 192, 192, 0.2);
}

.stat-number {
    color: #ffffff;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 8px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.stat-label {
    color: #999999;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Social Section */
.social-section {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid #333333;
    border-radius: 3px;
    padding: 20px;
}

.social-header {
    color: #c0c0c0;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-align: center;
    font-weight: bold;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #d0d0d0 0%, #a0a0a0 100%);
    color: #000000;
    text-decoration: none;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1px;
    border: 1px solid #888888;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #ffffff 0%, #c0c0c0 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.6);
}

/* === BOTTOM TICKER === */
.ticker-wrap {
    overflow: hidden;
    background: linear-gradient(90deg, #1a1a1a 0%, #0a0a0a 50%, #1a1a1a 100%);
    border: 2px solid #333333;
    border-top: 2px solid #666666;
    padding: 15px 0;
    margin: 30px 0 20px 0;
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.8),
        0 4px 8px rgba(0, 0, 0, 0.6);
}

.ticker {
    display: flex;
    animation: scroll 20s linear infinite;
    white-space: nowrap;
}

.ticker span {
    color: #c0c0c0;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    padding: 0 30px;
    text-transform: uppercase;
}

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

/* === FOOTER === */
footer {
    text-align: center;
    padding: 25px 20px;
    color: #555555;
    font-size: 10px;
    border-top: 1px solid #222222;
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.8);
    font-family: Arial, sans-serif;
}

footer p {
    letter-spacing: 1px;
}

/* === SCROLL EFFECTS === */
/* Add class via JavaScript when scrolling */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

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

/* === RESPONSIVE DESIGN === */

/* Tablets (1024px and below) */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sidebar {
        min-height: 200px;
    }
    
    .sidebar.left,
    .sidebar.right {
        display: inline-block;
        width: calc(50% - 10px);
        vertical-align: top;
    }
    
    .sidebar.left {
        margin-right: 10px;
    }
    
    .sidebar.right {
        margin-left: 10px;
    }
    
    .main-nav ul {
        gap: 12px;
    }
    
    .nav-button {
        font-size: 18px;
        padding: 16px 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .main-title {
        font-size: 24px;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    header {
        padding: 15px 0 10px 0;
        margin-bottom: 20px;
    }
    
    .logo img {
        max-width: 220px;
    }
    
    .main-nav {
        padding: 0 5px;
        margin-bottom: 20px;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 12px;
    }
    
    .main-nav li {
        max-width: 100%;
        width: 100%;
    }
    
    .nav-button {
        font-size: 16px;
        padding: 14px 25px;
    }
    
    .sidebar.left,
    .sidebar.right {
        display: block;
        width: 100%;
        margin: 0 0 20px 0;
    }
    
    .content-grid {
        padding: 0 5px;
        gap: 15px;
    }
    
    .main-content {
        padding: 20px 15px;
    }
    
    .main-content::before {
        margin: -20px -15px 20px -15px;
    }
    
    .announcement-box {
        padding: 15px;
    }
    
    .announcement-box h2 {
        font-size: 14px;
    }
    
    .soundcloud-placeholder {
        padding: 40px 15px;
        font-size: 14px;
    }
    
    .main-title {
        font-size: 20px;
        letter-spacing: 2px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .social-links {
        flex-direction: column;
        align-items: stretch;
    }
    
    .social-link {
        text-align: center;
    }
    
    .ticker span {
        font-size: 12px;
        padding: 0 20px;
    }
}

/* Small phones (480px and below) */
@media (max-width: 480px) {
    .logo img {
        max-width: 180px;
    }
    
    .nav-button {
        font-size: 14px;
        padding: 12px 20px;
    }
    
    .announcement-box h2 {
        font-size: 12px;
    }
    
    .soundcloud-placeholder {
        padding: 30px 10px;
        font-size: 12px;
    }
    
    .main-title {
        font-size: 18px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    footer {
        font-size: 9px;
        padding: 20px 15px;
    }
}

/* === SELECTION STYLING === */
::selection {
    background: #c0c0c0;
    color: #000000;
}

::-moz-selection {
    background: #c0c0c0;
    color: #000000;
}

/* === CUSTOM SCROLLBAR === */
::-webkit-scrollbar {
    width: 14px;
}

::-webkit-scrollbar-track {
    background: #000000;
    border-left: 1px solid #222222;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #666666 0%, #333333 50%, #1a1a1a 100%);
    border-radius: 7px;
    border: 2px solid #000000;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #888888 0%, #555555 50%, #333333 100%);
}