:root {
    --primary-color: #6c5ce7;
    --secondary-color: #4a90e2;
    --text-primary: #2d3436;
    --text-secondary: #636e72;
    --accent-color: #ff7675;
    --success-color: #00b894;
    --domain-color: #8a2be2;
    --light-purple: #a29bfe;
    --light-blue: #74b9ff;
    --card-bg: rgba(255, 255, 255, 0.85);
    --hover-color: #f8f9fa;
    --card-hover: rgba(255, 255, 255, 0.98);
    --border-color: rgba(74, 144, 226, 0.2);
}

body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background: url('https://api.xn--kiv.fun/AcgnPic') no-repeat center center fixed;
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: column;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    z-index: -1;
}

.main-content {
    flex: 1;
}

footer {
    margin-top: auto;
}

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

.header {
    text-align: center;
}

.header h1 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin: 3rem 0 0rem; 
}
.header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

@font-face{
font-family: 'icp';
src:  url('../font/alimama.woff'); 
}
body{
font-family:'icp';
}
@media (max-width: 640px) {
    td, th {
        white-space: nowrap;
        min-width: 5em;
    }
    .responsive-text {
        font-size: 0.9rem;
    }
}
::-webkit-scrollbar {
width: 5px;  
height: 1px;
}
::-webkit-scrollbar-thumb {
background-color: #339933;
background-image: -webkit-linear-gradient(45deg, rgba(255, 93, 143, 1) 25%, transparent 25%, transparent 50%, rgba(255, 93, 143, 1) 50%, rgba(255, 93, 143, 1) 75%, transparent 75%, transparent);
}
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
background: #f6f6f6;
}