* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #1e202c;
    padding: 0;
    color: #e0e0e0;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0;
    overflow: hidden;
}

.category {
    margin-bottom: 40px;
    display: block;
}

.category:last-child {
    margin-bottom: 0;
}

.categories-container {
    margin-top: 15px;
}

.category .title {
    padding: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 5px;
    border-top: 1px solid #202233;
}

.category .title h1, .category .title h2 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.site-list {
    display: flex;
    flex-direction: column;
}

.site-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    border-bottom: 1px solid #3a3d52;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 10px;
    background-color: #2c2f44;
    margin-bottom: 10px;
}

.site-item::before {
    content: "";
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    transition: left 1s ease-in-out;
    z-index: -1;
}

.site-item:hover::before {
    left: 100%;
}

.site-item .site-item-content {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-item:hover .site-item-content {
    transform: translateX(-10px);
    opacity: 1;
}

.site-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.site-item:last-child {
    border-bottom: none;
}

.site-logo {
    width: 35%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    height: 50px;
    overflow: hidden;
}

.site-logo img {
    max-width: 140px;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.site-bonus {
    width: 60%;
    padding: 0 30px;
}

.site-bonus p {
    font-size: 18px;
    color: #fff;
    margin: 0;
    line-height: 1.5;
}

.categories-container .register-btn {
    width: 20%;
    text-align: right;
}

.btn {
    display: inline-block;
    padding: 14px 46px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #23acffb8;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 152, 255, 0.4);
}

header {
    width: 100%;
    background-color: rgb(24 37 66 / 95%);
    padding: 8px 15px;
    color: white;
    font-size: 16px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

header a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 8px;
    row-gap: 5px;
}

header .logo {
    color: #f97316;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    min-width: max-content;
    background: linear-gradient(135deg, #f97316 0%, #f97316 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: #ff0000;
}

header .text {
    color: white;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    flex: 1;
    min-width: 200px;
}

header .be-member-btn {
    background: linear-gradient(135deg, #f97316, #f97316 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

header .be-member-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 74, 74, 0.5);
    background: linear-gradient(135deg, #ea580c 0%, #ea580c 100%);
}

.main-content {
    padding: 30px 0;
}

.main-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    margin-top: 7px;
    margin-bottom: 30px;
}

.contact-btn {
    cursor: pointer;
    background: linear-gradient(to bottom, #1639f9, #166cf9);
    box-shadow: 0 4px 15px rgb(74 104 255 / 40%);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    margin-left: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.contact-btn:hover {
    background: linear-gradient(to bottom, #426bff, #428eff);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 155, 255, 0.5);
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgb(24 37 66 / 95%);
    color: #fff;
    padding: 15px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

footer .container {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: right;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 8px;
    row-gap: 5px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}

.site-item:hover {
    background-color: rgb(37 154 255 / 10%);
    transition: background-color 0.3s ease;
}

.site-item {
    position: relative;
}

@media (max-width: 768px) {
    .container {
        margin: 0;
        border-radius: 0;
    }
    
    .category {
        margin-bottom: 2px;
    }
    
    .category .title {
        padding: 1px;
        margin-bottom: 2px;
    }
    
    .category .title h1, .category .title h2 {
        font-size: 15px;
        letter-spacing: 0.3px;
    }
    
    .category .title::before, .category .title::after {
        display: none;
    }
    
    .site-list {
        gap: 0px;
        background-color: #202233;
    }
    
    .site-item {
        padding: 15px;
        flex-direction: row;
        align-items: center;
    }
    
    .site-logo {
        width: 35%;
        height: 40px;
        padding: 4px;
    }
    
    .site-logo img {
        max-width: 120px;
        max-height: 32px;
    }
    
    .site-bonus {
        width: 70%;
        text-align: center;
        padding: 0 10px;
    }
    
    .site-bonus p {
        font-size: 12px;
        line-height: 1.3;
        white-space: normal;
    }
    
    .categories-container .register-btn {
        width: 20%;
        padding: 0 5px;
    }
    
    .btn {
        padding: 8px 12px;
        font-size: 12px;
        width: 100%;
        white-space: nowrap;
        text-align: center;
    }
    
    header {
        margin-bottom: 0;
        font-size: 13px;
        padding: 10px 5px;
        border-radius: 0;
    }
    
    header a {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 5px;
    }
    
    header .logo {
        font-size: 14px;
    }
    
    header .be-member-btn {
        padding: 6px 8px;
        font-size: 12px;
        margin-left: 3px;
        flex-shrink: 0;
        border-radius: 50px;
        min-width: 65px;
        text-align: center;
    }
    
    .main-content {
        padding: 20px 0;
    }
    
    .main-content .container {
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
    
    header {
        padding: 6px 10px;
        min-height: 45px;
    }
    
    header a {
        gap: 6px;
        row-gap: 4px;
    }
    
    .text {
        font-size: 14px;
        min-width: 150px;
    }
    
    header .be-member-btn {
        padding: 6px 15px;
        font-size: 13px;
    }
    
    footer {
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .category .title {
        margin-bottom: 8px;
        margin-top: 20px;
    }

    header .text {
        font-size: 12px;
    }
    .site-item {
        padding: 2px;
    }
    
    .site-logo {
        width: 25%;
        height: 35px;
        padding: 3px;
    }
    
    .site-logo img {
        max-width: 80px;
        max-height: 28px;
    }
    
    .site-bonus {
        width: 70%;
        text-align: center;
        padding: 0 5px;
    }
    
    .site-bonus p {
        font-size: 11px;
        line-height: 1.2;
    }

    .categories-container .register-btn {
        width: 18%;
        padding: 0 3px;
    }
    
    .btn {
        padding: 6px 8px;
        font-size: 11px;
        border-radius: 16px;
    }
    
    .main-content {
        padding: 15px 0;
    }
    
    header {
        padding: 0px 8px;
        min-height: auto;
    }
    
    header a {
        gap: 4px;
        row-gap: 3px;
    }
    
    .logo {
        font-size: 13px;
    }
    
    .text {
        font-size: 13px;
        min-width: 120px;
    }
    
    header .be-member-btn {
        padding: 5px 12px;
        font-size: 12px;
    }
    
    footer {
        padding: 10px;
    }
}
