:root {
    --primary: #FF0055;
    --secondary: #00E5FF;
    --accent: #FFD500;
    --bg-dark: #0a0a0a;
    --text-light: #ffffff;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-light);
    height: 100vh;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Dynamic Background */
.background-mesh {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, #1a0b2e 0%, #000000 100%);
    z-index: -1;
    overflow: hidden;
}

.background-mesh::before, .background-mesh::after {
    content: '';
    position: absolute;
    width: 80vmax;
    height: 80vmax;
    border-radius: 50%;
    mix-blend-mode: screen;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out alternate;
}

.background-mesh::before {
    background: var(--primary);
    top: 20%;
    left: 20%;
    animation-delay: -5s;
}

.background-mesh::after {
    background: var(--secondary);
    bottom: 20%;
    right: 20%;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(100px, 50px) rotate(20deg); }
}

/* Layout */
.container {
    width: 100%;
    max-width: 480px; /* Mobile constraint */
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

.header {
    text-align: center;
    margin-top: 2rem;
    opacity: 0;
    animation: fadeInDown 1s ease-out forwards;
}

.logo {
    font-weight: 800;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-weight: 300;
    font-size: 1rem;
    opacity: 0.7;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Award Stage */
.award-stage {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    perspective: 1000px;
    margin: 2rem 0;
}

.award-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem 2rem;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transform-style: preserve-3d;
    animation: popIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.placeholder-content {
    opacity: 0.5;
    animation: pulse 3s infinite ease-in-out;
}

.placeholder-content .icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

/* Typography for inner card */
.award-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.award-desc {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.8);
}

/* Button */
.btn-primary {
    background: white;
    color: black;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 800;
    font-family: var(--font-main);
    border-radius: 100px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255,255,255,0.15);
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.btn-primary:active {
    transform: scale(0.95);
    box-shadow: 0 5px 15px rgba(255,255,255,0.1);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.btn-primary:hover::after {
    transform: translateX(100%);
    transition: 0.5s;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 0.7; }
}

.hidden {
    display: none;
}
