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

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #333;
}

.container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    padding: 40px;
    max-width: 90%;
    min-width: 320px;
    width: 100%;
    text-align: center;
    border: 3px solid #e53e3e;
}

.warning-icon {
    font-size: 4rem;
    color: #e53e3e;
    margin-bottom: 20px;
    display: block;
}

.alert-badge {
    background: #e53e3e;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
}

h1 {
    color: #e53e3e;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

h2 {
    color: #c53030;
    font-size: 1.3rem;
    margin: 20px 0 10px 0;
    font-weight: 600;
}

p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
}

.scam-details {
    background: #fff5f5;
    border: 2px solid #feb2b2;
    border-radius: 10px;
    padding: 20px;
    margin: 25px 0;
}

.scam-details h2 {
    color: #c53030;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.scam-details p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.5;
}

.telegram-section {
    background: #f0f9ff;
    border: 2px solid #0ea5e9;
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
    text-align: center;
}

.telegram-section h3 {
    color: #0369a1;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.telegram-section p {
    text-align: center;
}

.telegram-link {
    display: inline-block;
    background: #0088cc;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.telegram-link:hover {
    background: #006699;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 136, 204, 0.3);
}

.telegram-icon {
    margin-right: 8px;
}

.telegram-section img {
    margin-top: 20px;
    margin-bottom: 10px;
    max-width: 200px;
    height: auto;
}

ul {
    text-align: left;
    margin: 10px 0 20px 0;
    padding-left: 20px;
    list-style-position: outside;
}

li {
    margin-bottom: 8px;
    padding-left: 5px;
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.5;
}

li::marker {
    color: #e53e3e;
}

.footer-note {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    color: #718096;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .container {
        padding: 25px;
        margin: 10px;
        max-width: 95%;
    }

    h1 {
        white-space: normal;
    }

    .warning-icon {
        font-size: 3rem;
    }

    .telegram-link {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .container {
        padding: 20px;
        max-width: 98%;
    }

    .scam-details,
    .telegram-section {
        padding: 15px;
    }
}