/* Body Layout - Sticky Footer */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* Content wrapper with z-10 - This wraps everything except background */
.relative.z-10 {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Main content area should grow to push footer down */
main {
    flex: 1 0 auto;
}

/* Video Smoke Effect */
.smoke-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 5;
}

.smoke-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    opacity: 0.5;
    mix-blend-mode: screen;
    filter: brightness(1.2) contrast(1.1);
    pointer-events: none;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Jamaica Theme Buttons */
.jamaica-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9) 0%, rgba(20, 20, 20, 0.95) 100%);
    border: 2px solid rgba(234, 179, 8, 0.3);
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    overflow: hidden;
}

.jamaica-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        rgba(239, 68, 68, 0.1) 0%,
        rgba(234, 179, 8, 0.1) 50%,
        rgba(34, 197, 94, 0.1) 100%);
    transition: left 0.4s ease;
}

.jamaica-btn:hover::before {
    left: 100%;
}

.jamaica-btn:hover {
    border-color: rgba(234, 179, 8, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(234, 179, 8, 0.3);
    color: #fff;
}

.jamaica-btn.active {
    background: linear-gradient(135deg,
        rgba(220, 38, 38, 0.25) 0%,
        rgba(234, 179, 8, 0.25) 50%,
        rgba(22, 163, 74, 0.25) 100%);
    border: 2px solid rgba(234, 179, 8, 0.8);
    color: #fff;
    box-shadow: 0 0 20px rgba(234, 179, 8, 0.4),
                inset 0 0 20px rgba(234, 179, 8, 0.1);
}

.jamaica-btn.active svg {
    filter: drop-shadow(0 0 4px rgba(234, 179, 8, 0.6));
}

/* Schedule Cards */
.schedule-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(30, 30, 30, 0.9) 100%);
    border-radius: 1rem;
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 180px;
}

.schedule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: all 0.4s ease;
}

/* Live Days */
.schedule-live {
    border: 2px solid rgba(234, 179, 8, 0.4);
}

.schedule-live::before {
    background: linear-gradient(90deg,
        rgba(239, 68, 68, 0.8) 0%,
        rgba(234, 179, 8, 0.8) 50%,
        rgba(34, 197, 94, 0.8) 100%);
}

.schedule-live:hover {
    border-color: rgba(234, 179, 8, 0.8);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 40px rgba(234, 179, 8, 0.4),
                0 0 30px rgba(239, 68, 68, 0.2),
                inset 0 0 30px rgba(234, 179, 8, 0.1);
}

/* Rest Days */
.schedule-rest {
    border: 2px solid rgba(100, 100, 100, 0.3);
    opacity: 0.7;
}

.schedule-rest::before {
    background: linear-gradient(90deg,
        rgba(100, 100, 100, 0.5) 0%,
        rgba(120, 120, 120, 0.5) 100%);
}

.schedule-rest:hover {
    opacity: 1;
    border-color: rgba(150, 150, 150, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(100, 100, 100, 0.2);
}

.schedule-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.schedule-header svg {
    color: rgba(234, 179, 8, 0.8);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.schedule-rest .schedule-header svg {
    color: rgba(150, 150, 150, 0.6);
}

.schedule-header h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.schedule-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.schedule-status.live {
    background: linear-gradient(135deg,
        rgba(239, 68, 68, 0.2) 0%,
        rgba(234, 179, 8, 0.2) 50%,
        rgba(34, 197, 94, 0.2) 100%);
    color: rgba(234, 179, 8, 1);
    border: 1px solid rgba(234, 179, 8, 0.5);
    box-shadow: 0 0 15px rgba(234, 179, 8, 0.3);
}

.schedule-status.rest {
    background: rgba(100, 100, 100, 0.2);
    color: rgba(150, 150, 150, 0.9);
    border: 1px solid rgba(100, 100, 100, 0.3);
}

.schedule-status svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 1);
    animation: pulse-live 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.8);
}

@keyframes pulse-live {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.schedule-time {
    font-size: 1.1rem;
    font-weight: 800;
    text-align: center;
    background: linear-gradient(135deg,
        rgba(234, 179, 8, 1) 0%,
        rgba(250, 204, 21, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.schedule-rest .schedule-time {
    background: linear-gradient(135deg,
        rgba(150, 150, 150, 0.8) 0%,
        rgba(120, 120, 120, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .schedule-card {
        padding: 1rem 0.75rem;
        min-height: 170px;
    }

    .schedule-header h4 {
        font-size: 0.85rem;
    }

    .schedule-status {
        font-size: 0.7rem;
        padding: 0.4rem 0.6rem;
    }

    .schedule-time {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .schedule-card {
        padding: 1rem 0.8rem;
        min-height: 160px;
    }

    .schedule-header h4 {
        font-size: 0.8rem;
    }

    .schedule-status {
        font-size: 0.65rem;
        padding: 0.4rem 0.5rem;
        gap: 0.3rem;
    }

    .schedule-time {
        font-size: 0.95rem;
    }
}

/* ==================== PC SPECS CARDS ==================== */
.spec-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(30, 30, 30, 0.9) 100%);
    border: 2px solid rgba(234, 179, 8, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        rgba(239, 68, 68, 0.6) 0%,
        rgba(234, 179, 8, 0.6) 50%,
        rgba(34, 197, 94, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.spec-card:hover {
    border-color: rgba(234, 179, 8, 0.7);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(234, 179, 8, 0.3),
                inset 0 0 20px rgba(234, 179, 8, 0.05);
}

.spec-card:hover::before {
    opacity: 1;
}

.spec-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.15) 0%, rgba(239, 68, 68, 0.1) 100%);
    border-radius: 0.75rem;
    border: 2px solid rgba(234, 179, 8, 0.3);
    transition: all 0.4s ease;
}

.spec-card:hover .spec-icon {
    border-color: rgba(234, 179, 8, 0.6);
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.25) 0%, rgba(239, 68, 68, 0.15) 100%);
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 0 20px rgba(234, 179, 8, 0.3);
}

.spec-icon svg {
    width: 32px;
    height: 32px;
    color: rgba(234, 179, 8, 0.9);
    transition: all 0.3s ease;
}

.spec-card:hover .spec-icon svg {
    color: rgba(250, 204, 21, 1);
    filter: drop-shadow(0 0 8px rgba(234, 179, 8, 0.6));
}

.spec-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.spec-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(234, 179, 8, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.spec-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.spec-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(22, 163, 74, 0.2) 100%);
    border: 1px solid rgba(34, 197, 94, 0.4);
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(34, 197, 94, 1);
    width: fit-content;
    transition: all 0.3s ease;
}

.spec-card:hover .spec-badge {
    border-color: rgba(34, 197, 94, 0.6);
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.3);
}

/* ==================== PERIPHERAL CARDS ==================== */
.peripheral-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(30, 30, 30, 0.9) 100%);
    border: 2px solid rgba(234, 179, 8, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.peripheral-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        rgba(239, 68, 68, 0.6) 0%,
        rgba(234, 179, 8, 0.6) 50%,
        rgba(34, 197, 94, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.peripheral-card:hover {
    border-color: rgba(234, 179, 8, 0.7);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(234, 179, 8, 0.3),
                inset 0 0 20px rgba(234, 179, 8, 0.05);
}

.peripheral-card:hover::before {
    opacity: 1;
}

.peripheral-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.15) 0%, rgba(34, 197, 94, 0.1) 100%);
    border-radius: 0.75rem;
    border: 2px solid rgba(234, 179, 8, 0.3);
    transition: all 0.4s ease;
}

.peripheral-card:hover .peripheral-icon {
    border-color: rgba(234, 179, 8, 0.6);
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.25) 0%, rgba(34, 197, 94, 0.15) 100%);
    transform: rotate(-5deg) scale(1.05);
    box-shadow: 0 0 20px rgba(234, 179, 8, 0.3);
}

.peripheral-icon svg {
    width: 32px;
    height: 32px;
    color: rgba(234, 179, 8, 0.9);
    transition: all 0.3s ease;
}

.peripheral-card:hover .peripheral-icon svg {
    color: rgba(250, 204, 21, 1);
    filter: drop-shadow(0 0 8px rgba(234, 179, 8, 0.6));
}

.peripheral-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.peripheral-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(234, 179, 8, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.peripheral-model {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.peripheral-price {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(34, 197, 94, 1);
    transition: all 0.3s ease;
}

.peripheral-card:hover .peripheral-price {
    color: rgba(34, 197, 94, 1);
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

/* ==================== GAME CARDS ==================== */
.game-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(30, 30, 30, 0.9) 100%);
    border: 2px solid rgba(234, 179, 8, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.game-card:hover {
    border-color: rgba(234, 179, 8, 0.7);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 40px rgba(234, 179, 8, 0.3),
                inset 0 0 20px rgba(234, 179, 8, 0.05);
}

.game-card:hover::before {
    opacity: 1;
}

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.game-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.game-category {
    padding: 0.375rem 0.875rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    transition: all 0.3s ease;
    border: 2px solid;
}

/* Category Colors - Jamaica theme subtle */
.category-fps {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(220, 38, 38, 0.2) 100%);
    color: rgba(239, 68, 68, 1);
    border-color: rgba(239, 68, 68, 0.4);
}

.game-card:hover .category-fps {
    border-color: rgba(239, 68, 68, 0.7);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
}

.category-rpg {
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.2) 0%, rgba(202, 138, 4, 0.2) 100%);
    color: rgba(234, 179, 8, 1);
    border-color: rgba(234, 179, 8, 0.4);
}

.game-card:hover .category-rpg {
    border-color: rgba(234, 179, 8, 0.7);
    box-shadow: 0 0 20px rgba(234, 179, 8, 0.4);
}

.category-br {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, rgba(234, 88, 12, 0.2) 100%);
    color: rgba(249, 115, 22, 1);
    border-color: rgba(249, 115, 22, 0.4);
}

.game-card:hover .category-br {
    border-color: rgba(249, 115, 22, 0.7);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
}

.category-survival {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(22, 163, 74, 0.2) 100%);
    color: rgba(34, 197, 94, 1);
    border-color: rgba(34, 197, 94, 0.4);
}

.game-card:hover .category-survival {
    border-color: rgba(34, 197, 94, 0.7);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
}

.category-mmorpg {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(147, 51, 234, 0.2) 100%);
    color: rgba(168, 85, 247, 1);
    border-color: rgba(168, 85, 247, 0.4);
}

.game-card:hover .category-mmorpg {
    border-color: rgba(168, 85, 247, 0.7);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}

.category-sandbox {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(37, 99, 235, 0.2) 100%);
    color: rgba(59, 130, 246, 1);
    border-color: rgba(59, 130, 246, 0.4);
}

.game-card:hover .category-sandbox {
    border-color: rgba(59, 130, 246, 0.7);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.category-default {
    background: linear-gradient(135deg, rgba(156, 163, 175, 0.2) 0%, rgba(107, 114, 128, 0.2) 100%);
    color: rgba(156, 163, 175, 1);
    border-color: rgba(156, 163, 175, 0.4);
}

.game-card:hover .category-default {
    border-color: rgba(156, 163, 175, 0.7);
    box-shadow: 0 0 20px rgba(156, 163, 175, 0.4);
}

.game-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(234, 179, 8, 0.2);
}

.game-hours {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(234, 179, 8, 0.9);
}

.game-hours svg {
    width: 18px;
    height: 18px;
    color: rgba(234, 179, 8, 0.7);
}

.game-rating {
    font-size: 1rem;
    line-height: 1;
    transition: all 0.3s ease;
}

.game-card:hover .game-rating {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(250, 204, 21, 0.6));
}

/* ==================== FOOTER ==================== */
.site-footer {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(20, 20, 20, 0.95) 100%);
    border-top: 2px solid rgba(234, 179, 8, 0.3);
    padding: 2rem 1.5rem 1.5rem;
    margin-top: auto;
    position: relative;
    flex-shrink: 0;
    width: 100%;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        rgba(239, 68, 68, 0.6) 0%,
        rgba(234, 179, 8, 0.6) 50%,
        rgba(34, 197, 94, 0.6) 100%);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

/* BestVIP Logo Section - LEFT SIDE - DESTAQUE! */
.footer-bestvip-section {
    flex: 0 0 auto;
}

.footer-bestvip-container {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    text-decoration: none;
    transition: all 0.4s ease;
    padding: 0.75rem 1.5rem;
    border-radius: 1rem;
    background: rgba(234, 179, 8, 0.05);
    border: 2px solid rgba(234, 179, 8, 0.2);
}

.footer-bestvip-container:hover {
    background: rgba(234, 179, 8, 0.15);
    border-color: rgba(234, 179, 8, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(234, 179, 8, 0.4);
}

.footer-bestvip-logo {
    height: 80px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.footer-bestvip-container:hover .footer-bestvip-logo {
    transform: scale(1.15) rotate(-5deg);
    filter: drop-shadow(0 8px 20px rgba(234, 179, 8, 0.8));
}

.footer-bestvip-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-dev-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.footer-bestvip-link {
    color: rgba(234, 179, 8, 0.95);
    font-weight: 700;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: -0.5px;
}

.footer-bestvip-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg,
        rgba(239, 68, 68, 1) 0%,
        rgba(234, 179, 8, 1) 50%,
        rgba(34, 197, 94, 1) 100%);
    transition: width 0.4s ease;
    border-radius: 2px;
}

.footer-bestvip-container:hover .footer-bestvip-link {
    color: rgba(250, 204, 21, 1);
    text-shadow: 0 0 15px rgba(234, 179, 8, 0.6);
}

.footer-bestvip-container:hover .footer-bestvip-link::after {
    width: 100%;
}

/* Right Section - Copyright & Social */
.footer-right-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
}

.footer-copyright {
    text-align: right;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

.footer-link {
    color: rgba(234, 179, 8, 0.7);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    background: rgba(234, 179, 8, 0.1);
    border: 1px solid rgba(234, 179, 8, 0.3);
}

.footer-link:hover {
    color: rgba(250, 204, 21, 1);
    background: rgba(234, 179, 8, 0.2);
    border-color: rgba(234, 179, 8, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(234, 179, 8, 0.4);
}

.footer-link svg {
    width: 22px;
    height: 22px;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-bestvip-section {
        order: 1;
    }

    .footer-bestvip-container {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
    }

    .footer-bestvip-logo {
        height: 70px;
    }

    .footer-bestvip-text {
        align-items: center;
    }

    .footer-right-section {
        order: 2;
        align-items: center;
    }

    .footer-copyright {
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

/* ==================== WISHLIST CARDS ==================== */
.wishlist-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(30, 30, 30, 0.9) 100%);
    border: 2px solid rgba(234, 179, 8, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.wishlist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        rgba(239, 68, 68, 0.6) 0%,
        rgba(234, 179, 8, 0.6) 50%,
        rgba(34, 197, 94, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.wishlist-card:hover {
    border-color: rgba(234, 179, 8, 0.7);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(234, 179, 8, 0.3),
                inset 0 0 20px rgba(234, 179, 8, 0.05);
}

.wishlist-card:hover::before {
    opacity: 1;
}

.wishlist-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.15) 0%, rgba(239, 68, 68, 0.1) 100%);
    border-radius: 0.75rem;
    border: 2px solid rgba(234, 179, 8, 0.3);
    transition: all 0.4s ease;
}

.wishlist-card:hover .wishlist-icon {
    border-color: rgba(234, 179, 8, 0.6);
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.25) 0%, rgba(239, 68, 68, 0.15) 100%);
    transform: rotate(10deg) scale(1.05);
    box-shadow: 0 0 20px rgba(234, 179, 8, 0.3);
}

.wishlist-icon svg {
    width: 32px;
    height: 32px;
    color: rgba(234, 179, 8, 0.9);
    transition: all 0.3s ease;
}

.wishlist-card:hover .wishlist-icon svg {
    color: rgba(250, 204, 21, 1);
    filter: drop-shadow(0 0 8px rgba(234, 179, 8, 0.6));
}

.wishlist-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.wishlist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.wishlist-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.wishlist-priority {
    padding: 0.375rem 0.875rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    transition: all 0.3s ease;
    border: 2px solid;
}

/* Priority Colors - Jamaica theme */
.priority-high {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(220, 38, 38, 0.2) 100%);
    color: rgba(239, 68, 68, 1);
    border-color: rgba(239, 68, 68, 0.4);
}

.wishlist-card:hover .priority-high {
    border-color: rgba(239, 68, 68, 0.7);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
}

.priority-medium {
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.2) 0%, rgba(202, 138, 4, 0.2) 100%);
    color: rgba(234, 179, 8, 1);
    border-color: rgba(234, 179, 8, 0.4);
}

.wishlist-card:hover .priority-medium {
    border-color: rgba(234, 179, 8, 0.7);
    box-shadow: 0 0 20px rgba(234, 179, 8, 0.4);
}

.priority-low {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(22, 163, 74, 0.2) 100%);
    color: rgba(34, 197, 94, 1);
    border-color: rgba(34, 197, 94, 0.4);
}

.wishlist-card:hover .priority-low {
    border-color: rgba(34, 197, 94, 0.7);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
}

.wishlist-price {
    font-size: 1.25rem;
    font-weight: 800;
    background: linear-gradient(135deg,
        rgba(34, 197, 94, 1) 0%,
        rgba(22, 163, 74, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.wishlist-card:hover .wishlist-price {
    filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.5));
}
