:root {
    --minecraft-primary: #4A7023;  /* Deep green reminiscent of Minecraft grass */
    --minecraft-secondary: #8B4513; /* Earthy brown */
    --minecraft-accent: #FFD700;  /* Gold for highlights */
    --minecraft-text: #FFFFFF;
    --minecraft-background: #1a1a1a;
    --minecraft-section-background: rgba(50, 50, 50, 0.7);
}

@font-face {
    font-family: 'Minecraft';
    src: url('../assets/minecraft-font.ttf') format('truetype');
}

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

footer {
    flex-shrink: 0;
    background-color: rgba(0,0,0,0.8);
    color: var(--minecraft-text);
    text-align: center;
    padding: 20px;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Minecraft', monospace;
    background-color: var(--minecraft-background);
    color: var(--minecraft-text);
    line-height: 1.6;
    cursor: url('../assets/minecraft-trident-cursor.png'), auto;
    --cursor-default: url('../assets/minecraft-trident-cursor.png');
    --cursor-pointer: url('../assets/minecraft-trident-cursor.png');
}

.minecraft-background {
    background: linear-gradient(
        rgba(0,0,0,0.7), 
        rgba(0,0,0,0.7)
    ), url('../assets/minecraft-landscape-background.png');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
}

.minecraft-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 2%;
    background-color: rgba(0,0,0,0.6);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 180px;  /* 3x the previous 60px */
    width: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-buttons {
    display: flex;
    list-style: none;
    gap: 15px;
    padding: 0;
    margin: 0;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.minecraft-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    
    /* Minecraft Block-like Background */
    background-image: 
        linear-gradient(to bottom, #8B4513, #5D3A1A),
        repeating-linear-gradient(
            45deg, 
            rgba(0,0,0,0.05) 0%, 
            rgba(0,0,0,0.05) 10%, 
            transparent 10%, 
            transparent 20%
        );
    background-blend-mode: overlay;
    
    /* Pixelated Border with Different Texture */
    border: 4px solid transparent;
    border-image: 
        repeating-linear-gradient(
            45deg, 
            #4A2A0F 0%, #4A2A0F 10%, 
            #6B3E16 10%, #6B3E16 20%,
            #8B4513 20%, #8B4513 30%,
            #A55A22 30%, #A55A22 40%
        ) 1;
    
    /* Minecraft Text Styling */
    font-family: 'Minecraft', monospace;
    font-size: 16px;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.5);
    
    /* 3D Block Effect */
    box-shadow: 
        inset -2px -2px 0 rgba(0,0,0,0.3),
        inset 2px 2px 0 rgba(255,255,255,0.2),
        4px 4px 0 rgba(0,0,0,0.2);
    
    /* Minecraft Cursor */
    cursor: url('../assets/minecraft-trident-cursor.png'), pointer;
    
    /* Transition and Interaction */
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.minecraft-button.active {
    background-image: 
        linear-gradient(to bottom, #2E8B57, #228B22),
        repeating-linear-gradient(
            45deg, 
            rgba(0,0,0,0.05) 0%, 
            rgba(0,0,0,0.05) 10%, 
            transparent 10%, 
            transparent 20%
        );
    background-blend-mode: overlay;
    
    border-image: 
        repeating-linear-gradient(
            45deg, 
            #006400 0%, #006400 10%, 
            #008000 10%, #008000 20%,
            #2E8B57 20%, #2E8B57 30%,
            #32CD32 30%, #32CD32 40%
        ) 1;
    
    transform: scale(1.05);
    filter: brightness(1.2);
}

.minecraft-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(
            transparent 0%,
            rgba(255,255,255,0.1) 2.5%,
            transparent 5%
        );
    transform: rotate(-45deg);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.minecraft-button:hover::before {
    opacity: 1;
}

.minecraft-button:hover {
    transform: translate(-2px, -2px);
    box-shadow: 
        inset -2px -2px 0 rgba(0,0,0,0.3),
        inset 2px 2px 0 rgba(255,255,255,0.2),
        6px 6px 0 rgba(0,0,0,0.2);
}

.minecraft-button:active {
    transform: translate(1px, 1px);
    box-shadow: 
        inset -1px -1px 0 rgba(0,0,0,0.3),
        inset 1px 1px 0 rgba(255,255,255,0.2),
        2px 2px 0 rgba(0,0,0,0.2);
}

.button-icon {
    font-size: 1.2em;
    margin-right: 5px;
    text-shadow: none;
    filter: drop-shadow(2px 2px 0px rgba(0,0,0,0.3));
}

.large-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 30px;
    font-size: 18px;
    
    /* Minecraft Block-like Background */
    background-image: 
        linear-gradient(to bottom, #1A4F2E, #0E2C1A),
        repeating-linear-gradient(
            45deg, 
            rgba(0,0,0,0.1) 0%, 
            rgba(0,0,0,0.1) 10%, 
            transparent 10%, 
            transparent 20%
        );
    background-blend-mode: overlay;
    
    /* Pixelated Border with Different Texture */
    border: 4px solid transparent;
    border-image: 
        repeating-linear-gradient(
            45deg, 
            #0E2C1A 0%, #0E2C1A 10%, 
            #1A4F2E 10%, #1A4F2E 20%,
            #2C6B3E 20%, #2C6B3E 30%,
            #3A8A4C 30%, #3A8A4C 40%
        ) 1;
    
    /* Minecraft Text Styling */
    font-family: 'Minecraft', monospace;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 3px 3px 0px rgba(0,0,0,0.7);
    
    /* 3D Block Effect */
    box-shadow: 
        inset -3px -3px 0 rgba(0,0,0,0.4),
        inset 3px 3px 0 rgba(255,255,255,0.2),
        5px 5px 0 rgba(0,0,0,0.3);
    
    /* Minecraft Cursor */
    cursor: url('../assets/minecraft-trident-cursor.png'), pointer;
    
    /* Transition and Interaction */
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.large-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-linear-gradient(
            transparent 0%,
            rgba(255,255,255,0.1) 2.5%,
            transparent 5%
        );
    transform: rotate(-45deg);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.large-button:hover::before {
    opacity: 1;
}

.large-button:hover {
    transform: translate(-3px, -3px);
    box-shadow: 
        inset -3px -3px 0 rgba(0,0,0,0.4),
        inset 3px 3px 0 rgba(255,255,255,0.2),
        7px 7px 0 rgba(0,0,0,0.3);
}

.large-button:active {
    transform: translate(2px, 2px);
    box-shadow: 
        inset -2px -2px 0 rgba(0,0,0,0.4),
        inset 2px 2px 0 rgba(255,255,255,0.2),
        3px 3px 0 rgba(0,0,0,0.3);
}

.large-button .button-icon {
    font-size: 1.5em;
    margin-right: 10px;
    text-shadow: none;
    filter: drop-shadow(3px 3px 0px rgba(0,0,0,0.3));
}

.hero {
    display: none;
}

.hero-content {
    display: none;
}

.hero-logo {
    display: none;
}

.hero-logo img {
    display: none;
}

.hero h1 {
    display: none;
}

.hero p {
    display: none;
}

.cta-buttons {
    display: none;
}
.server-icon {
    font-size: 2.5rem;  /* Large emoji icons */
    margin-bottom: 15px;
    display: block;
    text-align: center;
    line-height: 1;
}

.server-preview {
    background-color: rgba(0,0,0,0.7);
    padding: 50px 5%;
    text-align: center;
}

.server-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.server-card {
    background-color: rgba(0,0,0,0.7);
    border: 3px solid #FFD700;
    border-radius: 10px;
    padding: 20px;
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s ease;
}

.server-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.server-card img {
    max-width: 200px;
    max-height: 200px;
    border-radius: 10px;
    margin-bottom: 15px;
    object-fit: cover;
}

.server-card h3 {
    color: #FFD700;
    margin-bottom: 10px;
    font-size: 1.5em;
}

.server-card p {
    color: #FFFFFF;
    font-size: 1em;
}

.server-intro {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 50px 5%;
    background-color: rgba(0,0,0,0.6);
}

.logo-container {
    flex: 0 0 auto;
}

.main-logo {
    max-width: 300px;
    height: auto;
    transition: transform 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.05);
}

.server-join-section {
    display: flex;
    align-items: center;
}

.join-server-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px 30px;
    
    /* Minecraft Block-like Background */
    background-color: #8B4513;
    background-image: 
        linear-gradient(to bottom, rgba(0,0,0,0.1), transparent),
        repeating-linear-gradient(
            45deg, 
            rgba(0,0,0,0.05) 0%, 
            rgba(0,0,0,0.05) 10%, 
            transparent 10%, 
            transparent 20%
        );
    background-blend-mode: overlay;
    
    /* Pixelated Border */
    border: 2px solid #000;
    border-top-color: #6A8A35;
    border-left-color: #6A8A35;
    border-bottom-color: #1C3A0A;
    border-right-color: #1C3A0A;
    
    /* Minecraft Text Styling */
    font-family: 'Minecraft', monospace;
    font-size: 20px;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 1px;
    
    /* 3D Border Effect */
    box-shadow: 
        0 4px 0 #1C3A0A,
        0 6px 10px rgba(0,0,0,0.4);
    
    cursor: url('../assets/minecraft-trident-cursor.png'), pointer;
    transition: all 0.2s ease;
    outline: none;
    position: relative;
}

.join-server-btn:hover {
    background: linear-gradient(
        to bottom, 
        #5A8A33,    /* Lighter green */
        #3D7F24     /* Darker lighter green */
    );
    transform: translateY(-2px);
    box-shadow: 
        0 6px 0 #1C3A0A,
        0 8px 12px rgba(0,0,0,0.5);
}

.join-server-btn:active {
    background: linear-gradient(
        to bottom, 
        #2D5F14,    /* Darker green */
        #1C3A0A     /* Darkest green */
    );
    transform: translateY(4px);
    box-shadow: 
        0 0 0 #1C3A0A,
        0 2px 6px rgba(0,0,0,0.3);
    padding-top: 14px;
    padding-bottom: 10px;
}

.player-count {
    font-size: 16px;
    color: #FFD700;
    opacity: 0.8;
    margin-left: 10px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

/* Nether Portal Particle Effect */
.nether-particle {
    position: fixed;
    width: 5px;
    height: 5px;
    background-color: #800080;  /* Deep purple */
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    animation: 
        nether-particle-float 3s linear infinite,
        nether-particle-fade 3s ease-out infinite;
    mix-blend-mode: screen;
}

@keyframes nether-particle-float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-50px) rotate(180deg);
    }
    100% {
        transform: translateY(0) rotate(360deg);
    }
}

@keyframes nether-particle-fade {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

.fireworks-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.firework {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: firework 1s ease-out;
}

@keyframes firework {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    100% {
        transform: scale(20);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .minecraft-nav {
        padding: 10px 1%;
    }

    .nav-buttons {
        gap: 10px;
    }

    .minecraft-button {
        padding: 8px 15px;
        font-size: 0.9em;
    }

    .server-intro {
        flex-direction: column;
        text-align: center;
    }

    .logo-container {
        margin-bottom: 20px;
    }

    .server-join-section {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .minecraft-nav {
        flex-direction: column;
    }

    .nav-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .server-intro {
        flex-direction: column;
        gap: 30px;
    }
}

/* What We Offer Section */
.what-we-offer, 
.our-staff, 
.player-testimonials {
    padding: 50px 5%;
    background-color: rgba(0,0,0,0.6);
    text-align: center;
}

.section-title {
    color: #FFD700;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    font-size: 2em;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 3;
}

.offer-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.offer-card {
    background-color: rgba(0,0,0,0.7);
    border: 3px solid #8B4513;
    border-radius: 10px;
    padding: 20px;
    width: 250px;
    transition: transform 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-10px);
}

.offer-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
    color: #FFD700;
}

.offer-card h3 {
    color: #FFD700;
    margin-bottom: 10px;
}

.offer-card p {
    color: #FFFFFF;
}

/* Our Staff Section */
.staff-members {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.staff-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
    border: none;
    padding: 10px;
    width: 150px;
    text-align: center;
    transition: transform 0.3s ease;
}

.staff-card:hover {
    transform: scale(1.05);
}

.staff-card img {
    width: 100px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 10px;
    background-color: transparent;
    image-rendering: pixelated;
    transition: transform 0.3s ease;
}

.staff-card:hover img {
    transform: scale(1.1);
}

.staff-card h3 {
    color: #FFD700;
    margin-bottom: 5px;
    font-size: 16px;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.5);
}

.staff-card p {
    color: #FFFFFF;
    font-size: 14px;
    opacity: 0.8;
}

.staff-card.inactive {
    opacity: 0.6;
    filter: grayscale(50%);
    position: relative;
}

.staff-card.inactive::after {
    content: 'INACTIVE';
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(255, 0, 0, 0.7);
    color: white;
    padding: 3px 6px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

.staff-card.inactive:hover {
    opacity: 0.8;
    filter: grayscale(50%);
    transform: scale(1);
}

.inactive-staff .section-title {
    color: #888;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.3);
}

/* Player Testimonials Section */
.testimonial-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    background-color: rgba(0,0,0,0.7);
    border: 3px solid #8B4513;
    border-radius: 10px;
    padding: 20px;
    width: 350px;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-card p {
    color: #FFFFFF;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #FFD700;
}

.testimonial-author span {
    color: #FFD700;
}

.vote-links {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: left;
}

.vote-description {
    color: #FFFFFF;
    margin-bottom: 30px;
}

.vote-links-grid {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.vote-card {
    background-color: transparent;
    border: none;
    border-radius: 10px;
    padding: 10px;
    width: calc(50% - 30px);
    max-width: 250px;
    text-align: center;
    transition: transform 0.3s ease;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vote-card .minecraft-button {
    width: 100%;
    padding: 10px 15px;
}

.vote-all-links {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.vote-all-links .large-button {
    font-size: 1.2em;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(50, 50, 50, 0.8);
    color: #CCCCCC;
    border: 2px solid #333;
    transition: all 0.3s ease;
}

.vote-all-links .large-button:hover {
    background-color: rgba(70, 70, 70, 0.9);
    color: #FFFFFF;
    transform: scale(1.05);
}

.vote-page,
.vote-content {
    display: none;
}

.store-page {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: linear-gradient(
        rgba(0,0,0,0.7), 
        rgba(0,0,0,0.7)
    ), url('../assets/minecraft-landscape-background.png');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    color: #ffffff;
}

.store-page > main {
    max-width: 1200px;
    width: 100%;
    background-color: rgba(50, 50, 50, 0.7);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.store-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.store-category-btn {
    background-color: rgba(70, 70, 70, 0.9);
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.store-category-btn:hover {
    background-color: rgba(90, 90, 90, 0.9);
}

.store-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.store-item {
    background-color: rgba(70, 70, 70, 0.9);
    border-radius: 10px;
    padding: 20px;
    width: 250px;
    text-align: center;
    transition: transform 0.3s ease;
}

.store-item:hover {
    transform: scale(1.05);
}

.rank-comparison-table table {
    margin-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.rank-comparison-table table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background-color: rgba(50, 50, 50, 0.8);
}

.rank-comparison-table thead {
    background-color: #2E8B57;
    color: white;
}

.rank-comparison-table th, 
.rank-comparison-table td {
    border: 1px solid #444;
    padding: 10px;
    text-align: center;
    font-size: 0.9em;
}

.rank-comparison-table th {
    font-weight: bold;
    text-transform: uppercase;
}

.rank-comparison-table tbody tr:nth-child(even) {
    background-color: rgba(70, 70, 70, 0.6);
}

.rank-comparison-table tbody tr:hover {
    background-color: rgba(100, 100, 100, 0.7);
}

.rank-comparison-table .purchase-row {
    background-color: rgba(20, 20, 20, 0.8) !important;
}

.rank-comparison-table .purchase-row td {
    padding: 15px 10px;
}

.rank-comparison-table .purchase-row .minecraft-button {
    width: 100%;
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9em;
}

.rank-comparison-table .purchase-row .minecraft-button:hover {
    background-color: #45a049;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.rank-purchase-section,
.store-items,
.store-item {
    display: none;
}

.vote-page-content {
    display: flex;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 20px;
    flex-grow: 1;
}

.vote-links-container {
    display: grid;
    grid-template-columns: 1fr 2px 1fr;
    gap: 30px;
    width: 100%;
    position: relative;
    margin-top: -30px;
}

.vote-links-container::before {
    content: '';
    grid-column: 2;
    background-color: rgba(255, 215, 0, 0.3);
    z-index: 1;
}

.vote-links-section,
.top-voters-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 650px;
}

.vote-links-section {
    grid-column: 1;
    padding-right: 15px;
}

.top-voters-section {
    grid-column: 3;
    padding-left: 15px;
}

.section-title {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.vote-description {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.vote-links-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    width: 100%;
    max-width: 600px;
}

.top-voters-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    width: 100%;
}

.top-voters-row {
    display: flex;
    justify-content: center;
    gap: 26px;
    width: 100%;
}

.top-voter-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: transparent;
    border: none;
    border-radius: 13px;
    padding: 6.5px;
    width: calc(20% - 26px);
    max-width: 195px;
    text-align: center;
    transition: transform 0.3s ease;
}

.top-voter-avatar {
    width: 65px;
    height: 130px;
    object-fit: contain;
    margin-bottom: 6.5px;
}

.top-voter-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 0.91em;
}

.top-voter-name {
    color: #FFFFFF;
    font-weight: bold;
    margin-bottom: 3.9px;
}

.top-voter-votes {
    color: #CCCCCC;
    font-size: 0.78em;
}

.top-voter-rank {
    width: 26px;
    height: 26px;
    background-color: #FFD700;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    font-size: 0.91em;
    margin-top: 6.5px;
}

.vote-card,
.top-voter-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: transparent;
    border: none;
    border-radius: 10px;
    padding: 10px;
    width: calc(50% - 30px);
    max-width: 250px;
    text-align: center;
    transition: transform 0.3s ease;
}

.vote-card:hover,
.top-voter-card:hover {
    transform: scale(1.05);
}

.vote-card .minecraft-button {
    width: 100%;
    padding: 10px 15px;
}
