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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0a0a0a;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

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

.gradient-1 {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #87001d 0%, rgba(135, 0, 29, 0) 70%);
    opacity: 0.3;
}

.gradient-2 {
    position: absolute;
    top: 50%;
    right: -30%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, #ff5050 0%, rgba(255, 80, 80, 0) 70%);
    opacity: 0.2;
}

.gradient-3 {
    position: absolute;
    bottom: -50%;
    left: 20%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #87001d 0%, rgba(135, 0, 29, 0) 70%);
    opacity: 0.15;
}

header {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
}

.logo-container {
    margin-bottom: 1.5rem;
}

.gif-container {
    margin: 0 auto;
    max-width: 320px;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.intro-section {
    text-align: center;
    margin-bottom: 3rem;
}

.intro-section h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #FFFFFF, #ff5050);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.subtitle {
    color: #cccccc;
    margin-bottom: 2rem;
}

.security-indicator {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    margin-top: 1rem;
}

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

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

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

.links-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #ff5050;
}

.warning {
    text-align: center;
    color: #ff5050;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

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

.link-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 80, 80, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #87001d, #ff5050);
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 80, 80, 0.2);
}

.link-number {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 80, 80, 0.2);
    color: #ff5050;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.market-link {
    display: block;
    color: #FFFFFF;
    text-decoration: none;
    font-family: monospace;
    font-size: 1.1rem;
    margin: 1.5rem 0;
    word-break: break-all;
    transition: color 0.3s;
}

.market-link:hover {
    color: #ff5050;
}

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

.info-section {
    margin-bottom: 3rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(135, 0, 29, 0.3);
}

.info-card h3 {
    color: #ff5050;
    margin-bottom: 1rem;
}

.info-card ul {
    list-style: none;
    margin-bottom: 1rem;
}

.info-card li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.info-card li::before {
    content: '•';
    color: #ff5050;
    position: absolute;
    left: 0;
}

.info-card p {
    margin-bottom: 1rem;
}

.status-online {
    color: #00ff00;
    margin-bottom: 1rem;
    display: block;
}

.features-section {
    margin-bottom: 3rem;
}

.features-section h2 {
    text-align: center;
    color: #ff5050;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(135, 0, 29, 0.3);
}

.feature-item h3 {
    color: #ff5050;
    margin-bottom: 1rem;
}

.guide-section {
    margin-bottom: 3rem;
}

.guide-section h2 {
    text-align: center;
    color: #ff5050;
    margin-bottom: 2rem;
}

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

.step {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(135, 0, 29, 0.3);
}

.step h3 {
    color: #ff5050;
    margin-bottom: 1rem;
}

.faq-section {
    margin-bottom: 3rem;
}

.faq-section h2 {
    text-align: center;
    color: #ff5050;
    margin-bottom: 2rem;
}

.faq-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(135, 0, 29, 0.3);
}

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

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

.stats-section h2 {
    text-align: center;
    color: #ff5050;
    margin-bottom: 2rem;
}

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

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(135, 0, 29, 0.3);
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #ff5050;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #cccccc;
}

footer {
    text-align: center;
    padding: 2rem 1rem;
    color: #cccccc;
    font-size: 0.9rem;
}

footer p {
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .intro-section h1 {
        font-size: 2rem;
    }
    
    .links-container {
        grid-template-columns: 1fr;
    }
    
    .info-grid, .features-grid, .guide-steps, .faq-container, .stats-grid {
        grid-template-columns: 1fr;
    }
}