/* ArbiScans Default Style */
/* --------------------------------------------------- */
* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f8ff;
    color: #333;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    background: linear-gradient(135deg, #1e90ff, #00bfff);
    padding: 15px 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    z-index: 1000;
}

header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 1.8em;
    font-weight: bold;
}

header .logo img {
    width: 60px;
}

/* Main Content */
main {
    flex: 1 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.content {
    background: #ffffffaa;
    padding: 40px 60px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    animation: fadeIn 1s ease;
}

.content h1 {
    font-size: 2rem;
    color: #1e90ff;
    margin-bottom: 20px;
}

.content p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 20px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.telegram-link {
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(135deg, #1e90ff, #00bfff);
    padding: 12px 20px;
    border-radius: 10px;
    transition: transform 0.2s ease, background 0.3s ease;
    display: inline-block;
}

.telegram-link:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #007bff, #00aaff);
}

/* Footer */
footer {
    flex-shrink: 0;
    background-color: #ffffff;
    padding: 12px 30px;
    text-align: center;
    color: #888;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.05);
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 600px) {
    .content {
        padding: 25px;
    }
    .content h1 {
        font-size: 1.6rem;
    }
    .telegram-link {
        font-size: 0.9rem;
    }
}
