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

body {
    font-family: 'Courier New', monospace;
    background: #181a20;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    position: relative;
    min-height: 100vh;
    padding: 20px;
}

.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(39, 119, 255, 0.1);
    border-radius: 50%;
    animation: float 8s infinite ease-in-out;
}

.particle:nth-child(1) {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 70%;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    width: 150px;
    height: 150px;
    top: 30%;
    left: 50%;
    animation-delay: 2s;
}

.particle:nth-child(4) {
    width: 100px;
    height: 100px;
    top: 80%;
    left: 30%;
    animation-delay: 3s;
}

.particle:nth-child(5) {
    width: 60px;
    height: 60px;
    top: 40%;
    left: 10%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-50px) rotate(180deg);
        opacity: 0.1;
    }
}

.header {
    text-align: center;
    margin-bottom: 40px;
}

.logo h1 {
    font-size: 3.5em;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 5px;
    text-shadow: 0 0 20px #2777ff;
}

.logo span {
    font-size: 1.2em;
    letter-spacing: 4px;
    opacity: 0.8;
}

.tagline {
    margin-top: 10px;
    font-size: 0.9em;
    opacity: 0.7;
}

.main-content {
    max-width: 1200px;
    margin: 0 auto;
}

.gif-container {
    text-align: center;
    margin-bottom: 40px;
}

.intro-gif {
    width: 300px;
    height: 300px;
    border: 2px solid #2777ff;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(39, 119, 255, 0.3);
}

.info-section, .links-container, .features-section, .guide-section, .security-section, .faq-section, .stats-section {
    margin-bottom: 50px;
    padding: 30px;
    background: #23252e;
    border-radius: 15px;
    border-left: 4px solid #2777ff;
}

.info-section h2, .links-container h3, .features-section h2, .guide-section h2, .security-section h2, .faq-section h2, .stats-section h2 {
    color: #2777ff;
    margin-bottom: 20px;
    text-align: center;
}

.links-container {
    text-align: center;
}

.mirror-link {
    display: block;
    background: #181a20;
    padding: 20px;
    margin: 15px 0;
    border-radius: 10px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.mirror-link:hover {
    border-color: #2777ff;
    box-shadow: 0 0 20px rgba(39, 119, 255, 0.2);
    transform: translateY(-2px);
}

.link-number {
    display: block;
    font-weight: bold;
    color: #2777ff;
    margin-bottom: 5px;
}

.link-url {
    word-break: break-all;
    font-family: monospace;
    font-size: 1.1em;
}

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

.feature-card {
    background: #181a20;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #2777ff33;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    color: #2777ff;
    margin-bottom: 15px;
}

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

.step {
    background: #181a20;
    padding: 20px;
    border-radius: 10px;
    border-left: 3px solid #2777ff;
}

.step h3 {
    color: #2777ff;
    margin-bottom: 10px;
}

.security-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.security-list ul {
    list-style: none;
    padding-left: 0;
}

.security-list li {
    margin: 12px 0;
    padding-left: 25px;
    position: relative;
}

.security-list li:before {
    content: "🔒";
    position: absolute;
    left: 0;
    color: #2777ff;
}

.security-tips {
    background: #181a20;
    padding: 20px;
    border-radius: 10px;
}

.faq-list {
    margin-top: 30px;
}

.faq-item {
    background: #181a20;
    padding: 20px;
    margin: 15px 0;
    border-radius: 10px;
    border-left: 3px solid #2777ff;
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
    text-align: center;
}

.stat-item {
    background: #181a20;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #2777ff33;
}

.stat-number {
    display: block;
    font-size: 2.5em;
    font-weight: bold;
    color: #2777ff;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9em;
    opacity: 0.8;
}

.footer {
    margin-top: 80px;
    padding: 40px 20px;
    background: #23252e;
    border-top: 3px solid #2777ff;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: #2777ff;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2777ff33;
    opacity: 0.7;
    font-size: 0.9em;
}

@media (max-width: 768px) {
    .security-content {
        grid-template-columns: 1fr;
    }
    
    .logo h1 {
        font-size: 2.5em;
    }
    
    .intro-gif {
        width: 250px;
        height: 250px;
    }
    
    .info-section, .links-container, .features-section, .guide-section, .security-section, .faq-section, .stats-section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .stat-number {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .features-grid, .guide-steps, .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .logo h1 {
        font-size: 2em;
        letter-spacing: 4px;
    }
}

.breadcrumb {
    margin-bottom: 20px;
    padding: 15px;
    background: #23252e;
    border-radius: 10px;
    border-left: 4px solid #2777ff;
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    gap: 10px;
}

.breadcrumb li {
    position: relative;
    padding-right: 20px;
}

.breadcrumb li:not(:last-child):after {
    content: "›";
    position: absolute;
    right: 5px;
    color: #2777ff;
}

.breadcrumb a {
    color: #2777ff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb span {
    color: #ffffff;
    opacity: 0.8;
}

.info-section h1 {
    color: #2777ff;
    margin-bottom: 20px;
    text-align: center;
    font-size: 2.2em;
    text-shadow: 0 0 15px rgba(39, 119, 255, 0.3);
}

.links-container h2 {
    color: #2777ff;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.8em;
}

.mirror-link[itemprop="url"] {
    position: relative;
    overflow: hidden;
}

.mirror-link[itemprop="url"]:before {
    content: "🔗";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
}

.mirror-link[itemprop="url"] .link-number,
.mirror-link[itemprop="url"] .link-url {
    margin-left: 30px;
}

.feature-card[itemscope] {
    position: relative;
}

.feature-card[itemscope]:hover:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid #2777ff;
    border-radius: 10px;
    opacity: 0.5;
    animation: pulse 2s infinite;
}

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

.step[itemscope] {
    position: relative;
    padding-left: 60px;
}

.step[itemscope]:before {
    content: attr(itemprop-position);
    position: absolute;
    left: 20px;
    top: 20px;
    width: 30px;
    height: 30px;
    background: #2777ff;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.faq-item {
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    background: #1e2028;
    transform: translateX(5px);
}

.faq-item h3 {
    position: relative;
    padding-right: 30px;
}

.faq-item h3:after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    color: #2777ff;
    font-size: 1.5em;
    font-weight: normal;
}

.footer[itemscope] {
    position: relative;
}

.footer[itemscope]:before {
    content: "";
    position: absolute;
    top: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2777ff, #181a20, #2777ff);
    animation: gradientMove 3s infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.stat-item {
    position: relative;
    overflow: hidden;
}

.stat-item:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #2777ff;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-item:hover:after {
    transform: scaleX(1);
}

@media (max-width: 768px) {
    .breadcrumb ol {
        flex-direction: column;
        gap: 5px;
    }
    
    .breadcrumb li {
        padding-right: 0;
        padding-bottom: 15px;
    }
    
    .breadcrumb li:not(:last-child):after {
        content: "↓";
        right: auto;
        left: 10px;
        bottom: 0;
        top: auto;
    }
    
    .step[itemscope] {
        padding-left: 50px;
    }
    
    .step[itemscope]:before {
        left: 15px;
        top: 15px;
        width: 25px;
        height: 25px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .info-section h1 {
        font-size: 1.8em;
    }
    
    .links-container h2 {
        font-size: 1.5em;
    }
    
    .mirror-link[itemprop="url"]:before {
        position: static;
        transform: none;
        margin-right: 10px;
    }
    
    .mirror-link[itemprop="url"] .link-number,
    .mirror-link[itemprop="url"] .link-url {
        margin-left: 0;
        display: inline-block;
    }
    
    .mirror-link[itemprop="url"] .link-number {
        margin-right: 10px;
    }
}