* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        radial-gradient(circle at top left, #ff3b3b22, transparent 30%),
        radial-gradient(circle at bottom right, #ff000022, transparent 30%),
        linear-gradient(135deg, #0f172a, #111827);
    overflow: hidden;
    color: white;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    animation: fadeIn 0.8s ease;
    position: relative;
    overflow: hidden;
}

.container::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background: #ff000020;
    border-radius: 50%;
    top: -80px;
    right: -80px;
    filter: blur(30px);
}

.icon {
    width: 100px;
    height: 100px;
    margin: auto;
    margin-bottom: 25px;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 0, 0, 0.4);
    animation: pulse 2s infinite;
}

.icon span {
    font-size: 52px;
}

h1 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #ff4d4d;
    font-weight: 700;
}

.donate-link {
    color: #f5c242;
    text-decoration: none;
}

p {
    color: #d1d5db;
    line-height: 1.7;
    font-size: 15px;
}

.ip-box {
    margin-top: 25px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px;
    border-radius: 14px;
    font-size: 14px;
    color: #f8fafc;
    word-break: break-word;
}

.ip-box strong {
    color: #ff6b6b;
}

.footer {
    margin-top: 25px;
    font-size: 12px;
    color: #9ca3af;
}

.glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: #ff000015;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
}

.glow.one {
    top: -100px;
    left: -100px;
}

.glow.two {
    bottom: -120px;
    right: -120px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.5);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 25px rgba(255, 0, 0, 0);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .container {
        padding: 30px 20px;
    }

    h1 {
        font-size: 28px;
    }

    .icon {
        width: 80px;
        height: 80px;
    }

    .icon span {
        font-size: 40px;
    }
}