:root {
    --bg-color: #0a0a0c;
    --card-bg: #1a1a1e;
    --accent-color: #ff3e3e;
    --yellow: #ffd700;
    --blue: #007bff;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a8;
    --holographic-gradient: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.05) 25%,
        rgba(255, 62, 62, 0.1) 50%,
        rgba(255, 215, 0, 0.1) 75%,
        rgba(0, 123, 255, 0.1) 100%
    );
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    perspective: 2000px;
}

.card-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.card {
    position: relative;
    width: 400px;
    height: 560px;
    background: var(--card-bg);
    border-radius: 24px;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05), rgba(255,255,255,0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.card-content {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    transform-style: preserve-3d;
}

.art-layer {
    position: absolute;
    inset: -20px;
    background-size: cover;
    background-position: center;
    transform: translateZ(20px) scale(1.1);
    transition: transform 0.1s ease-out;
}

.holographic-overlay {
    position: absolute;
    inset: 0;
    background: var(--holographic-gradient);
    mix-blend-mode: overlay;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.glossy-finish {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0) 50%
    );
    z-index: 3;
    pointer-events: none;
}

.card-glow {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle at center, rgba(255, 62, 62, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

/* Info Section */
.info-section {
    text-align: center;
    max-width: 500px;
    animation: fadeIn 1.2s ease-out forwards;
}

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

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.accent {
    color: var(--accent-color);
}

p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.badges {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.badge {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Floor Reflection */
.floor-reflection {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 20%;
    background: linear-gradient(to top, rgba(10, 10, 12, 0.8), transparent);
    z-index: 1;
}

/* 3D Interactivity refinements */
.card:hover .holographic-overlay,
.card:hover .card-glow {
    opacity: 1;
}
