.hk_vote_body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    color: #fff;
}

.hk_vote_container {
    font-family: Arial, sans-serif;
    width: 90%;
    max-width: 1100px;
    margin: 40px auto;
}

.hk_vote_title {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: bold;
}

.hk_vote_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.hk_vote_card {
    position: relative;
    background: linear-gradient(135deg, rgba(50, 100, 150, 0.15), rgba(50, 100, 150, 0.05));
    border: 1px solid rgba(100, 150, 200, 0.4);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hk_vote_card:hover {
    border-color: #ffcc00;
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.15), rgba(255, 204, 0, 0.05));
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 204, 0, 0.25);
}

.hk_vote_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hk_vote_name {
    display: block;
    font-weight: bold;
    font-size: 16px;
    color: #fff;
}

.hk_vote_link_icon {
    color: #ffcc00;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.hk_vote_card:hover .hk_vote_link_icon {
    transform: translateX(4px);
}

.hk_vote_card small {
    color: #aaa;
    font-size: 13px;
}

/* REWARDS */

.hk_vote_rewards_section {
    margin-top: 40px;
    text-align: center;
}

.hk_vote_rewards_title {
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: bold;
    color: #ffcc00;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
}

.hk_vote_reward_main {
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.1), rgba(255, 204, 0, 0.05));
    border: 2px solid #ffcc00;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: bold;
    color: #ffff;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.2);
}

.hk_vote_reward_streaks {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.hk_vote_reward_box {
    background: linear-gradient(135deg, rgba(50, 150, 200, 0.15), rgba(50, 150, 200, 0.05));
    border: 1px solid rgba(50, 150, 200, 0.5);
    border-radius: 10px;
    padding: 20px;
    min-width: 200px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(50, 150, 200, 0.2);
}

.hk_vote_reward_box:hover {
    border-color: #ffcc00;
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.15), rgba(255, 204, 0, 0.05));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.3);
}

.streak-day {
    font-size: 16px;
    font-weight: bold;
    color: #ffcc00;
}

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

.hk_vote_body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    color: #e0e0e0;
    min-height: 100vh;
    padding: 40px 20px;
}

.hk_server_container {
    max-width: 900px;
    margin: 0 auto;
}

.hk_server_header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 2px solid rgba(255, 140, 0, 0.3);
}

.hk_server_title {
    font-size: 48px;
    font-weight: bold;
    color: #ffcc00;
    text-shadow: 0 0 20px rgba(255, 204, 0, 0.5);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.hk_server_subtitle {
    font-size: 18px;
    color: #ff8c00;
    font-weight: 600;
    letter-spacing: 1px;
}

.hk_server_content {
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hk_server_intro {
    background: linear-gradient(135deg, rgba(50, 100, 150, 0.15), rgba(50, 100, 150, 0.05));
    border: 1px solid rgba(100, 150, 200, 0.4);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 50px;
    line-height: 1.8;
    font-size: 16px;
}

.hk_server_intro p {
    color: #f0f0f0;
}

.hk_server_status {
    text-align: center;
    margin-bottom: 30px;
}

.hk_status_badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(56, 142, 60, 0.1));
    border: 1px solid rgba(76, 175, 80, 0.5);
    color: #4caf50;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.hk_status_dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #4caf50;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.hk_server_features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.hk_feature {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.15), rgba(210, 105, 30, 0.05));
    border: 1px solid rgba(210, 105, 30, 0.4);
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.hk_feature:hover {
    border-color: #ff8c00;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.15), rgba(255, 140, 0, 0.05));
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.2);
}

.hk_feature_icon {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
}

.hk_feature h3 {
    color: #ffcc00;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.hk_feature p {
    color: #c0c0c0;
    font-size: 14px;
    line-height: 1.6;
}

.hk_server_updates {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.15), rgba(25, 118, 210, 0.05));
    border: 1px solid rgba(33, 150, 243, 0.4);
    border-radius: 12px;
    padding: 35px 30px;
    margin-bottom: 40px;
    text-align: center;
}

.hk_updates_title {
    color: #2196f3;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.hk_updates_description {
    color: #e0e0e0;
    line-height: 1.8;
    font-size: 15px;
}

.hk_server_cta {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.15), rgba(210, 105, 30, 0.1));
    border: 2px solid #ff8c00;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
}

.hk_server_description {
    font-size: 18px;
    color: #f0f0f0;
    line-height: 1.8;
    font-weight: 500;
}

@media (max-width: 768px) {
    .hk_server_title {
        font-size: 36px;
    }

    .hk_server_subtitle {
        font-size: 16px;
    }

    .hk_server_features {
        grid-template-columns: 1fr;
    }

    .hk_server_intro {
        padding: 20px;
    }

    .hk_server_cta {
        padding: 25px;
    }
}

.streak-reward {
    font-size: 14px;
    color: #ddd;
}

/* DISCORD */


.hk_discord_container {
    width: 100%;
    max-width: 1000px;
}

.hk_discord_banner {
    background: linear-gradient(135deg, #5865F2 0%, #404EED 50%, #2C2F33 100%);
    border-radius: 16px;
    padding: 40px 40px;
    box-shadow: 0 20px 60px rgba(88, 101, 242, 0.4);
    animation: slideIn 0.8s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hk_discord_content {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: space-between;
}

.hk_discord_icon {
    flex-shrink: 0;
    color: #fff;
    opacity: 0.9;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.hk_discord_text {
    flex: 1;
    color: #fff;
}

.hk_discord_title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.hk_discord_subtitle {
    font-size: 18px;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 300;
}

.hk_discord_button {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #5865F2;
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.hk_discord_button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    background: #f0f0f0;
}

.hk_discord_button:active {
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hk_discord_banner {
        padding: 80px 25px;
    }

    .hk_discord_content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .hk_discord_icon {
        animation: none;
    }

    .hk_discord_title {
        font-size: 32px;
    }

    .hk_discord_subtitle {
        font-size: 16px;
    }

    .hk_discord_button {
        width: 100%;
        padding: 14px 30px;
    }
}

@media (max-width: 480px) {
    .hk_discord_banner {
        padding: 30px 20px;
    }

    .hk_discord_icon {
        width: 40px;
        height: 40px;
    }

    .hk_discord_title {
        font-size: 26px;
    }

    .hk_discord_subtitle {
        font-size: 14px;
    }
}

/* PLAY */

.hk_how_to_body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    color: #e0e0e0;
    min-height: 100vh;
}

.hk_how_to_container {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px;
}

.hk_how_to_header {
    text-align: center;
    margin-bottom: 80px;
}

.hk_how_to_title {
    font-size: 48px;
    font-weight: bold;
    color: #ffcc00;
    text-shadow: 0 0 20px rgba(255, 204, 0, 0.5);
    letter-spacing: 2px;
}

.hk_how_to_content {
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hk_section {
    margin-bottom: 60px;
}

/* Server Info Cards */
.hk_server_info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 70px;
}

.hk_info_card {
    background: linear-gradient(135deg, rgba(50, 100, 150, 0.15), rgba(50, 100, 150, 0.05));
    border: 1px solid rgba(100, 150, 200, 0.4);
    border-radius: 12px;
    padding: 40px 25px;
    text-align: center;
}

.hk_info_label {
    font-size: 12px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.hk_info_value {
    font-size: 24px;
    font-weight: bold;
    color: #ffcc00;
}

.hk_edition_note {
    font-size: 11px;
    color: #ff8c00;
    display: block;
    margin-top: 12px;
    font-weight: 600;
}

/* Steps */
.hk_steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.hk_step {
    display: flex;
    gap: 30px;
    background: linear-gradient(135deg, rgba(50, 100, 150, 0.15), rgba(50, 100, 150, 0.05));
    border: 1px solid rgba(100, 150, 200, 0.4);
    border-radius: 12px;
    padding: 30px;
    align-items: center;
    transition: all 0.3s ease;
    min-height: 80px;
}

.hk_step:hover {
    border-color: #ffcc00;
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.15), rgba(255, 204, 0, 0.05));
}

.hk_step_number {
    font-size: 32px;
    font-weight: bold;
    color: #ffcc00;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 204, 0, 0.1);
    border-radius: 8px;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.hk_step_content h3 {
    color: #fff;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .hk_how_to_container {
        padding: 40px 20px;
    }

    .hk_how_to_title {
        font-size: 36px;
    }

    .hk_server_info {
        grid-template-columns: 1fr;
    }

    .hk_step_number {
        font-size: 22px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hk_how_to_container {
        padding: 30px 15px;
    }

    .hk_how_to_title {
        font-size: 28px;
    }

    .hk_info_value {
        font-size: 18px;
    }

    .hk_step_content h3 {
        font-size: 14px;
    }
}