/* New Theme: Crimson Red & Charcoal Night */
:root{
  --body-bg: #121212; /* Rich Charcoal */
  --card-bg-start: #1a1a1a;
  --card-bg-end: #0a0a0a;
  --accent-red: #ff3e3e; /* Sharp Crimson */
  --accent-silver: #e0e0e0; /* Platinum Silver */
  --text: #ffffff;
  --success-color: #00ff88; 
  --shadow-color: rgba(255, 62, 62, 0.4); 
}

*{box-sizing:border-box}
html,body{height:100%;margin:0;font-family: 'Poppins', sans-serif, -apple-system;
  background:var(--body-bg);
  color:var(--text);
}

body{
  /* Angled gradient for a more aggressive look */
  background-image: linear-gradient(145deg, #1a1a1a 0%, #000000 100%);
  background-size: cover;
  background-position: center;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px;
}

.card{
  width:100%;
  max-width:440px;
  background: linear-gradient(180deg, var(--card-bg-start), var(--card-bg-end));
  border-radius:20px;
  padding:25px;
  text-align:center;
  box-shadow: 0 25px 50px rgba(0,0,0,0.9), 0 0 20px var(--shadow-color);
  backdrop-filter: blur(5px);
  /* Thin Crimson border */
  border: 1px solid var(--accent-red);
}

.avatar-wrap{display:flex;justify-content:center;margin-top:-50px}
.avatar{
    width:110px;
    height:110px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid var(--accent-red);
    box-shadow: 0 0 25px var(--shadow-color);
}

.title{
    font-size:24px;
    margin:15px 0 10px;
    font-weight:900;
    color: var(--text);
    letter-spacing: 0.5px;
}

.features{
    list-style:none;
    padding:0;
    margin:15px 0 20px;
    color: var(--accent-silver);
    font-size:15px;
    line-height:1.9;
}

.features li{
    margin:10px 0;
    padding: 8px 0;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.cta-btn{
  display:inline-block;
  width:95%;
  max-width:330px;
  padding:16px 20px;
  margin:10px 0 18px;
  border-radius:12px; /* Slightly more square for a bold look */
  text-decoration:none;
  /* Solid Crimson to Dark Red gradient */
  background: linear-gradient(90deg, #ff3e3e, #b91c1c);
  color:#ffffff;
  font-weight:800;
  font-size:17px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 6px 20px rgba(255, 62, 62, 0.3);
  transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 62, 62, 0.5);
}

.footer-line {
    font-size: 14px;
    margin-top: 12px;
    color: var(--accent-red);
    font-weight: 600;
}

.studio-link {
    font-size: 12px;
    margin-top: 15px;
    opacity: 0.6;
}

.studio-link a {
    color: var(--accent-silver);
    text-decoration: underline;
}