@font-face {
    font-family: 'Google Sans';
    src: url('fonts/GoogleSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Google Sans';
    src: url('fonts/GoogleSans-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: 'Google Sans';
    src: url('fonts/GoogleSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Google Sans';
    src: url('fonts/GoogleSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.signature-gradient {
    background: linear-gradient(135deg, #c799ff 0%, #bc87fe 100%);
}
.glass-panel {
    background: rgba(38, 37, 40, 0.6);
    backdrop-filter: blur(16px);
}
.pulse-ring {
    box-shadow: 0 0 0 0 rgba(199, 153, 255, 0.4);
    animation: pulse-animation 2s infinite;
}
@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0 rgba(199, 153, 255, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(199, 153, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(199, 153, 255, 0); }
}
body {
    background-color: #0e0e10;
    color: #f6f3f5;
    overflow-x: hidden;
    font-family: 'Google Sans', sans-serif;
}
.browser-mockup {
    border: 1px solid rgba(72, 71, 74, 0.3);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
.browser-header {
    background: #1f1f22;
    height: 32px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 6px;
}
.browser-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
