/* Joay Cordas V2 - Banner Cards Design System */

:root {
    --v2-bg: #000000;
    --v2-card-bg: #1a1a1a;
    --v2-text: #ffffff;
    --v2-text-light: rgba(255, 255, 255, 0.7);
    --v2-primary: #FFA300;
    --v2-accent: #FFA300;
    --v2-radius: 20px;
    --v2-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    --v2-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: var(--v2-text);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 20px 16px;
    overflow-x: hidden;
}

.v2-container {
    width: 100%;
    max-width: 440px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
    z-index: 1;
}

/* Premium Background Image */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/background-site.jpg') center/cover no-repeat;
    z-index: -2;
    transform: scale(1.05);
    filter: brightness(0.4) contrast(1.1);
}

.background-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: -1;
}

/* Header Styles */
.v2-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
}

.logo-wrapper {
    width: 80px;
    height: 80px;
    background: white;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 8px;
}

.v2-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    background: var(--v2-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
}

.v2-title {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.8px;
    color: white;
}

.v2-highlight {
    color: #FFA300;
}

/* Grid & Cards */
.v2-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.v2-card {
    position: relative;
    height: 160px;
    border-radius: var(--v2-radius);
    overflow: hidden;
    text-decoration: none;
    display: flex;
    align-items: flex-end;
    padding: 24px;
    background: var(--v2-card-bg);
    box-shadow: var(--v2-shadow);
    transition: var(--v2-transition);
    opacity: 0;
    transform: translateY(20px);
}

.v2-card.reveal {
    opacity: 1;
    transform: translateY(0);
}

.card-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: var(--v2-transition);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    transition: var(--v2-transition);
}

.card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: white;
}

.card-tag {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    width: fit-content;
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 4px;
}

.card-tag.gold {
    background: var(--v2-accent);
    color: white;
}

.card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
}

.card-desc {
    font-size: 13px;
    opacity: 0.8;
}

.card-action {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 2;
    transition: var(--v2-transition);
}

.card-action i {
    width: 18px;
    height: 18px;
}

/* Card Hover Interactions */
.v2-card:hover {
    transform: scale(0.98);
}

.v2-card:hover .card-image {
    transform: scale(1.1);
}

.v2-card:hover .card-overlay {
    background: linear-gradient(to top, rgba(255, 163, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
}

.v2-card:hover .card-action {
    background: white;
    color: #FFA300;
    transform: rotate(45deg);
}

/* Footer Section */
.v2-footer {
    text-align: center;
    color: var(--v2-text-light);
    font-size: 13px;
    line-height: 1.6;
    padding: 20px 0 40px;
}

/* Responsiveness */
@media (max-width: 400px) {
    .v2-card {
        height: 140px;
        padding: 20px;
    }

    .v2-title {
        font-size: 28px;
    }
}