body {
    margin: 0;
    padding: 0;
    font-family: 'Courier New', monospace;
    background: linear-gradient(135deg, #1a0005 0%, #0d0009 50%, #05000c 100%);
    color: #FFFFFF;
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    width: 418px;
    height: 101px;
}

.gif-container {
    margin-bottom: 20px;
}

.gif {
    width: 320px;
    height: 100px;
}

.main-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    border-bottom: 1px solid #87001d;
    padding-bottom: 15px;
}

.main-nav a {
    color: #ff5050;
    text-decoration: none;
    margin: 0 15px;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.main-nav a:hover {
    background: rgba(135, 0, 29, 0.3);
    color: #FFFFFF;
}

.status-bar {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #87001d 0%, #ff5050 100%);
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 25px;
}

.status-indicator {
    width: 12px;
    height: 12px;
    background-color: #00ff00;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 8px #00ff00;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.status-text {
    font-weight: bold;
    letter-spacing: 1px;
}

.warning-box {
    background: linear-gradient(135deg, #87001d 0%, #600015 100%);
    border: 1px solid #ff5050;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.warning-box h3 {
    margin-top: 0;
    color: #ff5050;
}

.section {
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    border-left: 3px solid #ff5050;
}

.section h2 {
    color: #ff5050;
    margin-top: 0;
    border-bottom: 1px solid #87001d;
    padding-bottom: 10px;
}

.links-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.link-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #87001d;
    border-radius: 4px;
    padding: 15px;
    transition: all 0.3s ease;
}

.link-item:hover {
    background: rgba(135, 0, 29, 0.2);
    transform: translateX(5px);
}

.market-link {
    color: #ff5050;
    text-decoration: none;
    font-weight: bold;
    word-break: break-all;
    display: block;
}

.market-link:hover {
    color: #FFFFFF;
    text-shadow: 0 0 5px #ff5050;
}

.info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.info-card {
    background: linear-gradient(135deg, rgba(135, 0, 29, 0.2) 0%, rgba(0, 0, 0, 0.3) 100%);
    border: 1px solid #87001d;
    border-radius: 4px;
    padding: 20px;
    text-align: center;
}

.info-card h3 {
    color: #ff5050;
    margin-top: 0;
}

.faq-item {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
}

.faq-item h3 {
    color: #ff5050;
    margin-bottom: 10px;
}

footer {
    text-align: center;
    padding: 30px 20px;
    border-top: 1px solid #87001d;
    font-size: 0.9em;
    opacity: 0.7;
    margin-top: 40px;
}

footer p {
    margin: 5px 0;
}

ul, ol {
    padding-left: 20px;
    margin: 15px 0;
}

li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .logo {
        width: 300px;
        height: auto;
    }
    
    .gif {
        width: 250px;
        height: auto;
    }
    
    .info-section {
        grid-template-columns: 1fr;
    }
    
    .main-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .main-nav a {
        margin: 5px 0;
        width: 100%;
        text-align: center;
    }
}