@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;700&family=Share+Tech+Mono&display=swap');

:root {
    /* Gradient Color Schemes */
    --color-lavender: #BAB0D4;
    --color-dark-purple: #4C1A57;
    --color-teal: #00A8AA;
    --color-lime: #F0F600;
    --color-orange: #e45932;
    --color-gold: #f3a93e;
    
    --bg-dark: #030712;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-dark);
}

body {
    /* Deep space background with a subtle dark violet flare in the center */
    background: radial-gradient(circle at 50% 50%, #170d24 0%, #030712 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Minimalist Clean Glassmorphic Container */
.container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    backdrop-filter: blur(25px) saturate(110%);
    -webkit-backdrop-filter: blur(25px) saturate(110%);
    
    background: rgba(12, 10, 22, 0.45);
    
    padding: 60px 80px;
    border-radius: 24px;
    
    /* Subtle border utilizing the lavender tone */
    border: 1px solid rgba(186, 176, 212, 0.08);
    
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
        
    max-width: 740px;
    width: 90%;
    
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s ease, 
                box-shadow 0.4s ease;
}

.container:hover {
    transform: translateY(-4px);
    border-color: rgba(186, 176, 212, 0.15);
    box-shadow: 
        0 30px 70px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Clean Typography using Palette */
h1 {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: -1.5px;
    line-height: 1.15;
    
    /* Vibrant metallic gradient from Terracotta Orange to Golden Yellow */
    background: linear-gradient(135deg, var(--color-orange) 10%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    margin-bottom: 5px;
}

h2 {
    font-family: 'Share Tech Mono', monospace;
    margin-top: 15px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    
    /* Soft lavender accent text */
    color: var(--color-lavender);
    opacity: 0.85;
}

p {
    margin-top: 25px;
    font-size: 15px;
    font-weight: 400;
    max-width: 540px;
    line-height: 1.7;
    
    /* Muted gray-slate for high readability */
    color: #8c9bb0;
    margin-left: auto;
    margin-right: auto;
}

/* Responsiveness */
@media (max-width: 640px) {
    .container {
        padding: 45px 25px;
        border-radius: 16px;
    }
    
    h1 {
        font-size: 38px;
        letter-spacing: -1px;
    }
    
    h2 {
        font-size: 13px;
        letter-spacing: 3px;
    }
    
    p {
        font-size: 13.5px;
        margin-top: 18px;
    }
}
