/* New Theme: Midnight Teal & Electric Cyan */
:root{
  --body-bg: #0a192f; 
  --card-bg-start: #112240;
  --card-bg-end: #0a192f;
  --accent-primary: #64ffda; /* Electric Cyan */
  --accent-secondary: #00b4d8; 
  --text: #ccd6f6;
  --success-color: #64ffda;
  --shadow-color: rgba(100, 255, 218, 0.3);
}

*{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{
  background-image: radial-gradient(circle at center, #112240 0%, #0a192f 100%); 
  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:16px;
  padding:22px;
  text-align:center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6), 0 0 20px var(--shadow-color);
  backdrop-filter: blur(4px);
  border: 1px solid var(--accent-primary);
}

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

.title{
    font-size:26px;
    margin:15px 0 10px;
    font-weight:900;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.features li{
    margin:9px 0;
    font-weight: 500;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1); 
}

.cta-btn{
  display:inline-block;
  width:90%;
  max-width:330px;
  padding:15px 19px;
  margin:10px 0 18px;
  border-radius:30px;
  text-decoration:none;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  color:#0a192f;
  font-weight:800;
  font-size:16px;
  text-transform: uppercase;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px var(--shadow-color);
}

.footer-line { font-style: italic; margin-top: 10px; opacity: 0.9; }
.studio-link a { color: var(--accent-primary); text-decoration: none; font-weight: bold; }