body {
    background: #000;
    color: #cfffff;
    font-family: 'VT323', monospace;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding-top: 10px;
    box-sizing: border-box;
}

.logo {
    text-align: center;
    margin: 20px 0;
    font-size: 48px;
    font-family: 'VT323', monospace;
    text-decoration: none;
    display: block;
}

.logo:hover {
    transform: scale(1.02);
    transition: transform 0.2s ease;
}

.logo-image {
    max-width: 300px;
    max-height: 100px;
    display: block;
    margin: 0 auto;
}

/* Logo text styles */
.logo span {
    display: inline-block;
    transition: all 0.2s ease;
}

.logo .s { color: #00ff00; text-shadow: 0 0 10px #00ff00; }
.logo .p { color: #ff0000; text-shadow: 0 0 10px #ff0000; }
.logo .a { color: #0000ff; text-shadow: 0 0 10px #0000ff; }
.logo .m { color: #ffff00; text-shadow: 0 0 10px #ffff00; }
.logo .lab {
    color: #ffffff; 
    text-shadow: 0 0 10px #ffffff;
    letter-spacing: 1px;
}

.logo:hover span {
    transform: scale(1.1);
}

.welcome {
    font-size: 28px;
    margin: 20px 0;
    padding: 15px;
    color: #cfffff;
    text-shadow: 0 0 5px #00ffff;
    text-align: center;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
    animation: welcomePulse 2s infinite;
}

@keyframes welcomePulse {
    0% { box-shadow: 0 0 15px rgba(0, 255, 255, 0.2); }
    50% { box-shadow: 0 0 25px rgba(0, 255, 255, 0.4); }
    100% { box-shadow: 0 0 15px rgba(0, 255, 255, 0.2); }
}

.email {
    color: #ffd700;
    text-shadow: 0 0 10px #ffd700;
    font-weight: bold;
    padding: 0 5px;
    animation: glowText 1.5s infinite;
}

.balance {
    background: rgba(0, 255, 255, 0.1);
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid #00ff00;
    margin-left: 10px;
    animation: balancePulse 2s infinite;
}

@keyframes glowText {
    0% { text-shadow: 0 0 10px currentColor; }
    50% { text-shadow: 0 0 20px currentColor; }
    100% { text-shadow: 0 0 10px currentColor; }
}

@keyframes balancePulse {
    0% { 
        box-shadow: 0 0 10px #00ff00;
        text-shadow: 0 0 10px #00ff00;
    }
    50% { 
        box-shadow: 0 0 20px #00ff00;
        text-shadow: 0 0 20px #00ff00;
    }
    100% { 
        box-shadow: 0 0 10px #00ff00;
        text-shadow: 0 0 10px #00ff00;
    }
}

.navbar {
    background: rgba(0, 255, 255, 0.1);
    border-radius: 15px;
    padding: 15px 0 !important;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 0 15px #00ffff;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
    width: 100%;
    box-sizing: border-box;
}

.navbar a, .dropdown {
    color: #cfffff;
    font-size: 24px;
    padding: 0 10px;
    text-decoration: none;
    text-shadow: 0 0 10px #00ffff;
    transition: color 0.2s;
    white-space: nowrap;
    flex: 0 1 auto;
    min-width: 0;
    text-align: center;
    position: relative;
}

.navbar a:hover {
    color: #ffd700;
}

.news-section {
    margin-top: 20px;
}
.news-title {
    font-size: 28px;
    margin-bottom: 10px;
    color: #cfffff;
    text-shadow: 0 0 10px #00ffff;
    letter-spacing: 2px;
}
.news-item {
    border-top: 2px solid #cfffff;
    padding: 10px 0;
    font-size: 22px;
    line-height: 1.3;
}
.news-date {
    color: #fff;
    font-size: 20px;
    letter-spacing: 1px;
}
.news-text {
    color: #cfffff;
}
.red-link {
    color: #ff3333;
    text-decoration: underline;
}
.red-link:hover {
    color: #ffd700;
}

.dropdown > .active {
    color: #ffd700;
    text-shadow: 0 0 10px #ffd700, 0 0 20px #ffd700;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    display: block;
}

.dropdown-content {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #07181a 80%, #222 100%);
    min-width: 220px;
    border-radius: 15px;
    box-shadow: 0 0 20px #00ffff, 0 0 40px #00ffff;
    z-index: 9999;
    padding: 18px 0 12px 0;
    margin-top: 4px;
    border: 2px solid rgba(0,255,255,0.2);
    text-align: center;
}

.dropdown-content a {
    display: block;
    color: #cfffff;
    padding: 8px 0;
    font-size: 22px;
    text-decoration: none;
    text-shadow: 0 0 10px #00ffff;
    transition: color 0.2s;
}

.dropdown-content a:hover {
    color: #ffd700;
    text-shadow: 0 0 10px #ffd700;
}