 :root {
     --accent: #37305e;
     --accent_rgb: 55, 48, 94;
     --sub-accent: #826941;
     --sub-accent_rgb: 130, 105, 65;
     --color-1: #83781d;
     --color-2: #e02127;
     --color-3: #e2d575;
     --bg-page: #c6cbd9;
     --card-bg: #ffffff;
     --text-dark: #202124;
     --text-muted: #606368;
     --border-light: #e8eaed;
     --shadow-card: 0 12px 36px rgba(0, 0, 0, 0.12);
 }

 * {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
     font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
 }

 body {
     background-color: var(--bg-page);
     display: flex;
     justify-content: center;
     align-items: center;
     min-height: 100vh;
     padding: 20px;
 }

 .app-card {
     width: 100%;
     max-width: 420px;
     background: var(--card-bg);
     border-radius: 24px;
     box-shadow: var(--shadow-card);
     position: relative;
     animation: launchCard 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
     height: 95vh;
 }

 .card-header {
     position: relative;
     height: 180px;
     background: linear-gradient(135deg, var(--accent) 0%, #221c3b 50%, var(--sub-accent) 100%);
     border-top-left-radius: 24px;
     border-top-right-radius: 24px;
 }

 .logo-wrapper {
     position: absolute;
     bottom: -48px;
     left: 50%;
     width: 35vw;
     height: 35vw;
     max-width: 160px;
     max-height: 160px;
     border-radius: 50%;
     background: #ffffff;
     padding: 4px;
     box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22), 0 0 0 3px rgba(181, 169, 55, 0.5);
     z-index: 10;
     animation: logoPop 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards;
     opacity: 0;
 }

 .logo-img {
     width: 100%;
     height: 100%;
     border-radius: 50%;
     object-fit: cover;
     background: #ffffff;
     border: 2px solid var(--border-light);
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .logo-img img {
     width: 100%;
     height: 100%;
     border-radius: 50%;
     object-fit: contain;
 }

 .card-body {
     padding: 64px 28px 36px 28px;
     text-align: center;
 }

 .inst-title {
     font-size: 1.25rem;
     font-weight: 700;
     color: var(--accent);
     line-height: 1.35;
     margin-top: 24px;
     margin-bottom: 24px;
     animation: fadeInUp 0.7s ease-out 0.4s forwards;
     opacity: 0;
 }

 .details-list {
     display: flex;
     flex-direction: column;
     gap: 20px;
     text-align: left;
     margin-top: 80px;
     animation: fadeInUp 0.7s ease-out 0.55s forwards;
     opacity: 0;
 }

 .info-item {
     display: flex;
     align-items: flex-start;
     gap: 16px;
 }

 .info-icon {
     width: 40px;
     height: 40px;
     border-radius: 12px;
     background: rgba(57, 48, 94, 0.08);
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
     color: var(--color-2);
 }

 .info-content {
     display: flex;
     flex-direction: column;
     justify-content: center;
     padding-top: 2px;
 }

 .info-label {
     font-size: 0.75rem;
     text-transform: uppercase;
     letter-spacing: 0.8px;
     color: var(--sub-accent);
     font-weight: 700;
     margin-bottom: 2px;
 }

 .info-value {
     font-size: 0.92rem;
     color: var(--text-dark);
     font-weight: 500;
     line-height: 1.4;
     word-break: break-word;
 }

 .email-link {
     color: var(--accent);
     text-decoration: none;
     font-weight: 600;
     transition: color 0.2s ease, text-decoration 0.2s ease;
 }

 .email-link:hover {
     color: var(--color-2);
     text-decoration: underline;
 }

 @keyframes launchCard {
     0% {
         opacity: 0;
         transform: scale(0.92) translateY(30px);
     }

     100% {
         opacity: 1;
         transform: scale(1) translateY(0);
     }
 }

 @keyframes logoPop {
     0% {
         transform: translate(-50%, 20px) scale(0.5);
         opacity: 0;
     }

     70% {
         transform: translate(-50%, 0) scale(1.08);
     }

     100% {
         transform: translate(-50%, 0) scale(1);
         opacity: 1;
     }
 }

 @keyframes fadeInUp {
     0% {
         opacity: 0;
         transform: translateY(18px);
     }

     100% {
         opacity: 1;
         transform: translateY(0);
     }
 }