:root {
    --bg-dark: #0a0a0f;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --accent: #8b5cf6;
    --accent-glow: rgba(139, 92, 246, 0.5);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.background-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.4;
    z-index: -1;
    animation: pulse 8s infinite alternate;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.5; }
}

.container {
    padding: 2rem;
    width: 100%;
    max-width: 500px;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px 0 rgba(139, 92, 246, 0.2);
}

header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.status-indicator {
    width: 10px;
    height: 10px;
    background-color: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 10px #4ade80;
}

h1 {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.action-area {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-primary {
    background: var(--accent);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    transition: background 0.2s ease, transform 0.1s ease;
}

.btn-primary:hover {
    background: #7c3aed;
}

.btn-primary:active {
    transform: scale(0.98);
}

.code-block {
    background: rgba(0,0,0,0.3);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--glass-border);
}

code {
    font-family: monospace;
    color: var(--text-secondary);
}

.copy-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.2s;
    padding: 4px;
}

.copy-btn:hover {
    color: white;
}

footer {
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.2);
    font-weight: 500;
}
. b t n - p r i m a r y   {  
         b a c k g r o u n d :   v a r ( - - a c c e n t ) ;  
         c o l o r :   w h i t e ;  
         t e x t - d e c o r a t i o n :   n o n e ;  
         p a d d i n g :   0 . 7 5 r e m   1 . 5 r e m ;  
         b o r d e r :   n o n e ;  
         f o n t - s i z e :   1 r e m ;  
         f o n t - f a m i l y :   ' O u t f i t ' ,   s a n s - s e r i f ;  
         b o r d e r - r a d i u s :   1 2 p x ;  
         t e x t - a l i g n :   c e n t e r ;  
         f o n t - w e i g h t :   5 0 0 ;  
         t r a n s i t i o n :   b a c k g r o u n d   0 . 2 s   e a s e ,   t r a n s f o r m   0 . 1 s   e a s e ;  
         c u r s o r :   p o i n t e r ;  
         w i d t h :   1 0 0 % ;  
 }  
  
 . u s e r - i n f o   {  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         g a p :   0 . 5 r e m ;  
         p a d d i n g :   0 . 7 5 r e m ;  
         b a c k g r o u n d :   r g b a ( 7 4 ,   2 2 2 ,   1 2 8 ,   0 . 1 ) ;  
         b o r d e r :   1 p x   s o l i d   r g b a ( 7 4 ,   2 2 2 ,   1 2 8 ,   0 . 2 ) ;  
         b o r d e r - r a d i u s :   1 2 p x ;  
         c o l o r :   # 4 a d e 8 0 ;  
 }  
  
 . u s e r - i n f o . h i d d e n   {  
         d i s p l a y :   n o n e ;  
 }  
  
 . s t a t u s - d o t   {  
         w i d t h :   8 p x ;  
         h e i g h t :   8 p x ;  
         b a c k g r o u n d - c o l o r :   # 4 a d e 8 0 ;  
         b o r d e r - r a d i u s :   5 0 % ;  
         b o x - s h a d o w :   0   0   5 p x   # 4 a d e 8 0 ;  
 }  
 