body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1a0a0f;
    color: #f6ccd6;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.6;
    overflow: hidden;
}

h1 {
    color: #ff6464;
    border-bottom: 1px solid #552233;
    padding-bottom: 10px;
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1a0a0f;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 0.5s ease-out;
}

.loading-content {
    text-align: center;
}

.loading-spinner {
    font-size: 3rem;
    color: #ff6464;
    margin-bottom: 20px;
}

.loading-text {
    font-size: 1.2rem;
    color: #f6ccd6;
}

.main-content {
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

.device-info {
    background-color: #240011;
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
    border-left: 3px solid #ff6464;
}

.icon {
    margin-right: 10px;
    color: #ff6464;
}

footer {
    font-size: 14px;
    color: #b08892;
    text-align: center;
    margin-top: 40px;
    position: fixed;
    bottom: 20px;
    width: 100%;
    left: 0;
}

footer a {
    color: #ff6464;
    text-decoration: none;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fa-spinner {
    animation: spin 1.5s linear infinite;
}