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

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

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    color: #FFFFFF;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, #1a1a1a, #0d0d0d, #87001d, #ff5050);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    opacity: 0.3;
    z-index: -1;
}

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

header {
    text-align: center;
    margin-bottom: 40px;
    animation: float 6s ease-in-out infinite;
}

.logo-container, .gif-container {
    margin: 20px 0;
}

.intro-section {
    text-align: center;
    margin-bottom: 50px;
}

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

.intro-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: rgba(135, 0, 29, 0.2);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 80, 80, 0.3);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.links-section {
    margin-bottom: 50px;
}

.links-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    color: #ff5050;
}

.warning {
    text-align: center;
    color: #ff5050;
    margin-bottom: 30px;
    font-style: italic;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.link-card {
    background: linear-gradient(145deg, rgba(135, 0, 29, 0.2), rgba(255, 80, 80, 0.1));
    border-radius: 10px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 80, 80, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.link-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.link-text {
    font-family: monospace;
    font-size: 0.9rem;
    color: #FFFFFF;
}

.copy-btn {
    background: linear-gradient(to right, #87001d, #ff5050);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.copy-btn:hover {
    opacity: 0.9;
}

.about-section, .guide-section, .faq-section {
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    border-left: 4px solid #ff5050;
}

.about-section h2, .guide-section h2, .faq-section h2 {
    color: #ff5050;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.about-section h3, .guide-section h3, .faq-section h3 {
    color: #ff5050;
    margin: 20px 0 10px;
    font-size: 1.3rem;
}

.about-section p, .guide-section p, .faq-section p {
    margin-bottom: 15px;
    opacity: 0.9;
}

.about-section ul, .security-section ul {
    list-style-position: inside;
    margin-left: 20px;
}

.about-section li, .security-section li {
    margin-bottom: 10px;
    opacity: 0.9;
}

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

.step {
    background: rgba(135, 0, 29, 0.1);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 80, 80, 0.2);
}

.step h3 {
    color: #ff5050;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.faq-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 80, 80, 0.2);
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.security-section {
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    border-left: 4px solid #ff5050;
}

.security-section h2 {
    color: #ff5050;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

footer {
    text-align: center;
    padding: 20px;
    opacity: 0.7;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 80, 80, 0.2);
}

.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(to right, #87001d, #ff5050);
    color: white;
    padding: 15px 25px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.notification.show {
    opacity: 1;
}

@media (max-width: 768px) {
    .features {
        flex-direction: column;
        align-items: center;
    }
    
    .link-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .intro-section h1 {
        font-size: 2rem;
    }
    
    .guide-steps {
        grid-template-columns: 1fr;
    }
    
    .about-section, .guide-section, .faq-section, .security-section {
        padding: 20px;
    }
}