* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #303948 0%, #252c35 100%);
    background-attachment: fixed;
    color: #FFFFFF;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.7;
    padding: 2rem 0;
}

.container {
    width: 90%;
    max-width: 1000px;
    padding: 2rem 0;
}

.logo-section {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(60, 190, 242, 0.1);
    border: 2px solid rgba(60, 190, 242, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.logo {
    width: 165px;
    height: 60px;
    filter: drop-shadow(0 4px 8px rgba(60, 190, 242, 0.3));
}

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

.status-indicator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 1rem 2rem;
    background: rgba(60, 190, 242, 0.15);
    border: 2px solid rgba(60, 190, 242, 0.4);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(60, 190, 242, 0.2);
}

.status-dot {
    width: 12px;
    height: 12px;
    background-color: #00ff00;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.8);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { 
        opacity: 1;
        box-shadow: 0 0 15px rgba(0, 255, 0, 0.8);
    }
    50% { 
        opacity: 0.3;
        box-shadow: 0 0 25px rgba(0, 255, 0, 1);
    }
}

.status-text {
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: #3cbef2;
}

.status-indicator i {
    color: #3cbef2;
    font-size: 1rem;
}

.links-container {
    margin-bottom: 3rem;
    display: grid;
    gap: 1.5rem;
}

.interface-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(60, 190, 242, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.interface-title {
    color: #3cbef2;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    text-align: center;
    padding: 1rem;
    border: 2px solid rgba(60, 190, 242, 0.3);
    border-radius: 12px;
    background: rgba(60, 190, 242, 0.08);
    box-shadow: 0 4px 15px rgba(60, 190, 242, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.interface-title i {
    font-size: 1.1rem;
}

.interface-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.interface-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.interface-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border: 2px solid rgba(60, 190, 242, 0.3);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.interface-img:hover {
    border-color: #3cbef2;
    box-shadow: 0 6px 30px rgba(60, 190, 242, 0.4);
    transform: translateY(-4px);
}

.interface-label {
    color: #3cbef2;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0;
    padding: 0.75rem 1.5rem;
    background: rgba(60, 190, 242, 0.1);
    border: 2px solid rgba(60, 190, 242, 0.3);
    border-radius: 8px;
    text-align: center;
}

.link-item {
    position: relative;
}

.link-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(60, 190, 242, 0.3);
    border-radius: 12px;
    padding: 0.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.link-wrapper:hover {
    border-color: #3cbef2;
    background: rgba(60, 190, 242, 0.1);
    box-shadow: 0 6px 25px rgba(60, 190, 242, 0.3);
}

.mirror-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.7rem 1rem;
    flex: 1;
    position: relative;
    overflow: hidden;
}

.mirror-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #3cbef2;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.mirror-link:hover {
    color: #3cbef2;
}

.mirror-link:hover::before {
    transform: scaleY(1);
}

.mirror-link i {
    color: #3cbef2;
    font-size: 1.1rem;
    min-width: 20px;
}

.link-actions {
    display: flex;
    gap: 0.5rem;
    padding-right: 0.5rem;
}

.action-btn {
    background: rgba(60, 190, 242, 0.2);
    border: 1px solid rgba(60, 190, 242, 0.4);
    color: #3cbef2;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.action-btn:hover {
    background: rgba(60, 190, 242, 0.4);
    border-color: #3cbef2;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(60, 190, 242, 0.3);
}

.action-btn:active {
    transform: scale(0.95);
}

.action-btn i {
    pointer-events: none;
}

.content-section {
    text-align: left;
    margin-bottom: 3rem;
}

.content-block {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(60, 190, 242, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.content-block:hover {
    border-color: rgba(60, 190, 242, 0.4);
    box-shadow: 0 6px 30px rgba(60, 190, 242, 0.15);
    transform: translateY(-2px);
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-block h1 {
    color: #3cbef2;
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    text-align: center;
    padding: 1.5rem;
    border: 2px solid rgba(60, 190, 242, 0.3);
    border-radius: 12px;
    background: rgba(60, 190, 242, 0.08);
    box-shadow: 0 4px 15px rgba(60, 190, 242, 0.1);
}

.content-block h1 i {
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.content-block h2 {
    color: #3cbef2;
    font-size: 1rem;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-left: 0.5rem;
    border-left: 4px solid #3cbef2;
}

.content-block h2:first-of-type {
    margin-top: 0;
}

.content-block h2 i {
    font-size: 0.9rem;
}

.content-block p {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    opacity: 0.95;
    line-height: 1.8;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(60, 190, 242, 0.1);
    border-radius: 8px;
    text-align: justify;
}

.content-block p:last-child {
    margin-bottom: 0;
}

.content-block strong {
    color: #3cbef2;
    font-weight: 600;
}

.security-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(60, 190, 242, 0.1);
    border: 2px solid rgba(60, 190, 242, 0.3);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(60, 190, 242, 0.2);
    margin-top: 2rem;
}

.notice-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.security-notice p {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    opacity: 0.9;
    text-align: center;
    color: #3cbef2;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.security-notice p i {
    font-size: 1rem;
}


@media (max-width: 768px) {
    body {
        padding: 1rem 0;
    }
    
    .container {
        width: 95%;
        padding: 1rem 0;
    }
    
    .logo-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .status-indicator {
        padding: 0.75rem 1.5rem;
        margin-bottom: 2rem;
        flex-wrap: wrap;
    }
    
    .content-block {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }
    
    .content-block h1 {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .content-block h1 i {
        font-size: 1rem;
        display: block;
        margin-bottom: 0.5rem;
        margin-right: 0;
    }
    
    .content-block h2 {
        font-size: 0.9rem;
    }
    
    .content-block p {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
    
    .link-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .mirror-link {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
    
    .link-actions {
        justify-content: center;
        padding: 0.5rem;
        padding-top: 0;
    }
    
    .action-btn {
        flex: 1;
        max-width: 80px;
    }
    
    .security-notice {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .notice-line {
        width: 100%;
        height: 1px;
    }
    
    .security-notice p {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .interface-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .interface-title {
        font-size: 1rem;
        padding: 0.75rem;
    }
    
    .interface-images {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .interface-img {
        max-width: 100%;
    }
    
    .interface-label {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}