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

body {
    font-family: 'Inter', 'Arial', sans-serif;
    background: #181a20;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: #2777ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(39, 119, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.main-nav a {
    color: #a0a0a0;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.main-nav a:hover {
    color: #2777ff;
    background: rgba(39, 119, 255, 0.1);
}

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

.hero-section {
    text-align: center;
    margin-bottom: 4rem;
}

.intro-gif {
    width: 300px;
    height: 300px;
    margin: 0 auto 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.intro-gif img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #2777ff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.2rem;
    color: #a0a0a0;
    margin-bottom: 2rem;
}

.content-section {
    margin-bottom: 4rem;
}

.content-section h2 {
    font-size: 2.5rem;
    color: #2777ff;
    margin-bottom: 2rem;
    text-align: center;
}

.content-section h3 {
    font-size: 1.5rem;
    color: #00ff88;
    margin: 1.5rem 0 1rem;
}

.content-section p {
    margin-bottom: 1rem;
    color: #cccccc;
    line-height: 1.8;
}

.content-section ul, .content-section ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.content-section li {
    margin-bottom: 0.5rem;
    color: #cccccc;
}

.links-section {
    margin-bottom: 4rem;
}

.links-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2777ff;
}

.links-description {
    text-align: center;
    color: #a0a0a0;
    margin-bottom: 2rem;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.link-card {
    background: #23252e;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(39, 119, 255, 0.2);
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.link-number {
    font-size: 2rem;
    font-weight: 800;
    color: #2777ff;
    margin-bottom: 1rem;
}

.link-url {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    word-break: break-all;
    display: block;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.link-url:hover {
    color: #2777ff;
}

.link-status {
    color: #00ff88;
    font-size: 0.9rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.feature {
    background: rgba(39, 119, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(39, 119, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2777ff;
}

.feature p {
    color: #a0a0a0;
}

.faq-item {
    background: rgba(39, 119, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(39, 119, 255, 0.1);
}

.faq-item h3 {
    color: #00ff88;
    margin-bottom: 1rem;
}

.stats-section {
    margin-bottom: 4rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: rgba(39, 119, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(39, 119, 255, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2777ff;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #a0a0a0;
    font-size: 0.9rem;
}

footer {
    text-align: center;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.security-notice {
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.footer-links {
    margin-top: 1rem;
    color: #a0a0a0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-nav {
        gap: 1rem;
    }
    
    .content-section h2 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.primary-link {
    border: 2px solid #2777ff;
    box-shadow: 0 0 20px rgba(39, 119, 255, 0.5);
    position: relative;
    transform: scale(1.02);
}

.primary-link::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 15px;
    background: linear-gradient(45deg, #2777ff, #00ff88, #2777ff);
    z-index: -1;
    animation: border-glow 3s infinite;
}

.primary-badge {
    background: linear-gradient(45deg, #2777ff, #00ff88);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.security-warning {
    background: rgba(255, 100, 100, 0.1);
    border: 1px solid rgba(255, 100, 100, 0.3);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.security-warning h3 {
    color: #ff6464;
    margin-bottom: 1rem;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: linear-gradient(45deg, #2777ff, #00ff88);
    color: #000;
}

.cta-button.secondary {
    background: transparent;
    color: #2777ff;
    border-color: #2777ff;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.breadcrumbs {
    margin: 2rem 0;
    padding: 1rem;
    background: rgba(39, 119, 255, 0.05);
    border-radius: 10px;
}

.breadcrumbs ol {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    color: #a0a0a0;
}

.breadcrumbs li:not(:last-child)::after {
    content: '›';
    margin-left: 0.5rem;
    color: #2777ff;
}

.breadcrumbs a {
    color: #2777ff;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

@keyframes border-glow {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

.content-section h2 {
    position: relative;
    padding-bottom: 1rem;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(45deg, #2777ff, #00ff88);
    border-radius: 3px;
}

.link-card {
    position: relative;
    overflow: hidden;
}

.link-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(39, 119, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.link-card:hover::after {
    left: 100%;
}

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

.faq-item:hover {
    transform: translateX(5px);
}

.stat {
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: scale(1.05);
}

.feature {
    position: relative;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(39, 119, 255, 0.1), transparent);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature:hover::before {
    opacity: 1;
}

@media (max-width: 480px) {
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .main-title {
        font-size: 1.8rem;
    }
    
    .content-section h2 {
        font-size: 1.8rem;
    }
}