/* ========================================
   DesiNet Archive - Main Stylesheet
   Frutiger Aero + Y2K Indian Internet Aesthetic
   ======================================== */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Frutiger Aero Color Palette */
    --aero-blue: #00a2ff;
    --aero-green: #7ec850;
    --aero-glass: rgba(255, 255, 255, 0.25);
    --aero-glass-border: rgba(255, 255, 255, 0.4);
    --aero-gradient-start: #0077cc;
    --aero-gradient-end: #00aaff;
    --gloss-white: rgba(255, 255, 255, 0.6);
    
    /* Indian Internet Nostalgia Colors */
    --india-saffron: #ff9933;
    --india-green: #138808;
    --india-blue: #000080;
    --india-chakra: #06038d;
    
    /* Y2K Vibes */
    --y2k-silver: #c0c0c0;
    --y2k-gray: #808080;
    --y2k-dark: #333333;
    --bubble-shadow: rgba(0, 162, 255, 0.3);
    
    /* Typography */
    --font-primary: 'Segoe UI', 'Trebuchet MS', 'Lucida Grande', Tahoma, sans-serif;
    --font-heading: 'Trebuchet MS', 'Lucida Sans Unicode', sans-serif;
    --font-mono: 'Consolas', 'Courier New', monospace;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: linear-gradient(135deg, #0066cc 0%, #00aaff 25%, #00ccff 50%, #7ec850 75%, #00aaff 100%);
    background-attachment: fixed;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(126, 200, 80, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 162, 255, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(0, 204, 255, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* ========================================
   Bubble Animation
   ======================================== */
.bubbles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -100px;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle at 30% 30%, 
        rgba(255, 255, 255, 0.8) 0%, 
        rgba(255, 255, 255, 0.4) 30%, 
        rgba(0, 162, 255, 0.2) 70%, 
        rgba(0, 162, 255, 0.1) 100%);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 
        inset 0 0 20px rgba(255, 255, 255, 0.5),
        0 0 10px rgba(0, 162, 255, 0.3);
    animation: float-up 15s infinite ease-in;
}

.bubble:nth-child(1) { left: 5%; width: 30px; height: 30px; animation-duration: 12s; animation-delay: 0s; }
.bubble:nth-child(2) { left: 15%; width: 50px; height: 50px; animation-duration: 18s; animation-delay: 2s; }
.bubble:nth-child(3) { left: 25%; width: 25px; height: 25px; animation-duration: 14s; animation-delay: 4s; }
.bubble:nth-child(4) { left: 40%; width: 45px; height: 45px; animation-duration: 16s; animation-delay: 1s; }
.bubble:nth-child(5) { left: 55%; width: 35px; height: 35px; animation-duration: 20s; animation-delay: 3s; }
.bubble:nth-child(6) { left: 70%; width: 55px; height: 55px; animation-duration: 13s; animation-delay: 5s; }
.bubble:nth-child(7) { left: 85%; width: 28px; height: 28px; animation-duration: 17s; animation-delay: 2.5s; }
.bubble:nth-child(8) { left: 95%; width: 42px; height: 42px; animation-duration: 15s; animation-delay: 4.5s; }

@keyframes float-up {
    0% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-120vh) translateX(100px) scale(0.5);
        opacity: 0;
    }
}

/* ========================================
   Top Banner (Marquee)
   ======================================== */
.top-banner {
    background: linear-gradient(90deg, #003366 0%, #0066cc 50%, #003366 100%);
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.top-banner marquee {
    font-family: var(--font-mono);
    letter-spacing: 0.5px;
}

/* ========================================
   Header
   ======================================== */
.main-header {
    position: relative;
    background: linear-gradient(180deg, #0055aa 0%, #0077cc 50%, #0099ee 100%);
    padding: 30px 40px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    overflow: hidden;
}

.header-gloss {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.4) 0%, 
        rgba(255, 255, 255, 0.1) 100%);
    border-radius: 0 0 50% 50% / 0 0 20% 20%;
    pointer-events: none;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-icon {
    position: relative;
    width: 80px;
    height: 80px;
}

.globe {
    font-size: 60px;
    position: absolute;
    top: 0;
    left: 0;
    animation: spin-slow 20s linear infinite;
}

.india-map {
    font-size: 30px;
    position: absolute;
    bottom: 0;
    right: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.site-title h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #fff;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(0, 162, 255, 0.5);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.header-right {
    text-align: right;
    color: #fff;
}

.date-display {
    font-size: 0.9rem;
    margin-bottom: 8px;
    opacity: 0.9;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-dot.online {
    background: #00ff00;
    box-shadow: 0 0 10px #00ff00;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

/* ========================================
   Navigation
   ======================================== */
.main-nav {
    position: relative;
    background: linear-gradient(180deg, #4a90d9 0%, #357abd 50%, #2a6496 100%);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.nav-gloss {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.3) 0%, 
        rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.main-nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.main-nav a:hover,
.main-nav a.active {
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        rgba(255, 255, 255, 0.1) 100%);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    border-radius: 2px;
}

.nav-icon {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

/* ========================================
   Content Layout
   ======================================== */
.content-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 20px;
    max-width: 1400px;
    margin: 20px auto;
    padding: 0 20px;
}

/* ========================================
   Sidebar
   ======================================== */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-box {
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(240, 248, 255, 0.95) 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.box-header {
    background: linear-gradient(180deg, #5ba3e6 0%, #3d8bd4 50%, #2a7bc2 100%);
    padding: 10px 15px;
    position: relative;
    overflow: hidden;
}

.box-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.4) 0%, 
        rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.box-header h3 {
    color: #fff;
    font-size: 0.95rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.box-content {
    padding: 15px;
}

.link-list {
    list-style: none;
}

.link-list li {
    padding: 6px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.link-list li:last-child {
    border-bottom: none;
}

.link-list a {
    color: #0066cc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
    display: block;
    padding: 4px 8px;
    border-radius: 4px;
}

.link-list a:hover {
    background: rgba(0, 102, 204, 0.1);
    color: #004499;
}

/* Music Player */
.music-player {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 8px;
    padding: 12px;
    color: #fff;
}

.player-display {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.album-art {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.track-info {
    flex: 1;
}

.track-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #00ff88;
}

.artist-name {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.player-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.control-btn {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(180deg, #4a5568 0%, #2d3748 100%);
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.2s;
}

.control-btn:hover {
    background: linear-gradient(180deg, #5a6578 0%, #3d4758 100%);
    transform: translateY(-1px);
}

.control-btn.play {
    width: 40px;
    height: 40px;
    background: linear-gradient(180deg, #00a2ff 0%, #0077cc 100%);
}

.progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    width: 35%;
    height: 100%;
    background: linear-gradient(90deg, #00ff88, #00a2ff);
    border-radius: 2px;
}

/* Stats */
.stat-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-label {
    color: #666;
}

.stat-value {
    color: #0066cc;
    font-weight: 600;
}

/* Webring */
.webring-title {
    text-align: center;
    font-weight: 600;
    color: #0066cc;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.webring-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.webring-btn {
    padding: 6px 12px;
    background: linear-gradient(180deg, #5ba3e6 0%, #3d8bd4 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.2s;
}

.webring-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}

/* Badges */
.badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.badge {
    background: linear-gradient(180deg, #f0f8ff 0%, #e0f0ff 100%);
    border: 1px solid #b0d0f0;
    border-radius: 4px;
    padding: 8px 4px;
    text-align: center;
    font-size: 0.65rem;
    color: #333;
    font-weight: 600;
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* ========================================
   Main Content
   ======================================== */
.main-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.content-box {
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(240, 248, 255, 0.95) 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.box-content {
    padding: 20px;
}

/* Welcome Section */
.welcome .box-content {
    padding: 25px;
}

.welcome-banner {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.banner-image {
    height: 200px;
    background: linear-gradient(135deg, 
        #00a2ff 0%, 
        #00ccff 25%, 
        #7ec850 50%, 
        #00a2ff 75%, 
        #0066cc 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(126, 200, 80, 0.3) 0%, transparent 50%);
}

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

.banner-overlay h3 {
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    margin-bottom: 5px;
}

.banner-overlay p {
    font-size: 1.2rem;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.intro-text {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

.highlight-box {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cc 100%);
    border-left: 4px solid #ff9933;
    border-radius: 0 8px 8px 0;
    padding: 15px 20px;
    margin-top: 20px;
}

.highlight-box h4 {
    color: #cc6600;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.highlight-box p {
    color: #664400;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Featured Grid */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.featured .box-content {
    padding: 15px;
}

.featured-image {
    height: 120px;
    border-radius: 8px;
    margin-bottom: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.featured-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.3) 0%, 
        rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.cyber-cafe-img {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
}

.cyber-cafe-img::after {
    content: '💻';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    opacity: 0.8;
}

.dialup-img {
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 50%, #8e44ad 100%);
}

.dialup-img::after {
    content: '📞';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    opacity: 0.8;
}

.rediff-img {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 50%, #e74c3c 100%);
}

.rediff-img::after {
    content: '📧';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    opacity: 0.8;
}

.orkut-img {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 50%, #3498db 100%);
}

.orkut-img::after {
    content: '👥';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    opacity: 0.8;
}

.featured p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(180deg, #5ba3e6 0%, #3d8bd4 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.2s;
}

.read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

/* Timeline */
.timeline-container {
    position: relative;
    padding-left: 40px;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #00a2ff, #7ec850, #00a2ff);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 25px;
    padding-left: 20px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 5px;
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, #00a2ff 0%, #0077cc 100%);
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 10px rgba(0, 162, 255, 0.4);
}

.timeline-year {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 5px;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1);
}

.timeline-content h4 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.timeline-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Quote Section */
.quote-section .box-content {
    padding: 30px;
}

.nostalgia-quote {
    border-left: 4px solid #00a2ff;
    padding: 20px 25px;
    background: linear-gradient(135deg, #f0f8ff 0%, #e8f4ff 100%);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.7;
}

.nostalgia-quote cite {
    display: block;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
    font-style: normal;
}

/* ========================================
   Footer
   ======================================== */
.main-footer {
    position: relative;
    background: linear-gradient(180deg, #1a365d 0%, #0f2440 100%);
    color: #fff;
    margin-top: 40px;
    overflow: hidden;
}

.footer-gloss {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 40px 30px 30px;
    position: relative;
    z-index: 1;
}

.footer-section h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #5ba3e6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-section p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.footer-section a:hover {
    color: #5ba3e6;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
}

.footer-note {
    font-size: 0.75rem !important;
    font-style: italic;
}

/* Visitor Counter */
.visitor-counter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
    font-family: var(--font-mono);
}

.visitor-counter span {
    color: #00ff00;
    font-size: 0.9rem;
}

.counter-digits {
    display: flex;
    gap: 3px;
}

.digit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 28px;
    background: linear-gradient(180deg, #003300 0%, #001a00 100%);
    color: #00ff00;
    font-size: 1rem;
    font-weight: bold;
    border: 1px solid #004400;
    border-radius: 3px;
    box-shadow: inset 0 0 5px rgba(0, 255, 0, 0.3);
}

/* Under Construction */
.under-construction {
    background: repeating-linear-gradient(
        45deg,
        #ffcc00,
        #ffcc00 10px,
        #000 10px,
        #000 20px
    );
    padding: 3px;
}

.under-construction marquee {
    background: #000;
    color: #ffcc00;
    padding: 8px;
    font-weight: bold;
    font-family: var(--font-mono);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        order: 2;
    }
    
    .main-content {
        order: 1;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .logo-area {
        flex-direction: column;
    }
    
    .header-right {
        text-align: center;
        margin-top: 15px;
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav a {
        border-left: none;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .site-title h1 {
        font-size: 1.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .badges {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .main-header {
        padding: 20px;
    }
    
    .site-title h1 {
        font-size: 1.5rem;
    }
    
    .banner-overlay h3 {
        font-size: 1.5rem;
    }
    
    .banner-overlay p {
        font-size: 1rem;
    }
    
    .content-box .box-content {
        padding: 15px;
    }
}

/* ========================================
   Utility Classes
   ======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* Glossy Button Style */
.glossy-btn {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(180deg, #5ba3e6 0%, #3d8bd4 50%, #2a7bc2 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 
        0 4px 10px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #1a5a9e;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}

.glossy-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.3) 0%, 
        rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.glossy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 15px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.glossy-btn:active {
    transform: translateY(0);
}
