:root {
    --bg-dark: #050508;
    --text-main: #ffffff;
    --text-muted: #888899;
    --accent-pixel: #ff477e;
    --accent-cyan: #00f5d4;
    --accent-glow: rgba(255, 71, 126, 0.5);
    
    --font-heading: 'Outfit', sans-serif;
    --transition-snappy: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-heading);
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Ambient Background Orbs */
.blob-bg {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.6;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-pixel) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation: drift 25s infinite alternate ease-in-out;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-cyan) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    animation: drift 20s infinite alternate-reverse ease-in-out;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #7209b7 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 8s infinite alternate ease-in-out;
}

@keyframes drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 150px); }
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.4; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.7; }
}

/* Center Container */
.center-container {
    text-align: center;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.title {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin: 0;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeUp 1s ease-out;
}

.title span {
    background: linear-gradient(135deg, var(--accent-pixel), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeUp 1.2s ease-out;
}

/* Portal Button */
.portal-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition-snappy);
    overflow: hidden;
    animation: fadeUp 1.4s ease-out;
}

.portal-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.portal-btn:hover {
    transform: scale(1.05) translateY(-5px);
    border-color: var(--accent-pixel);
    box-shadow: 0 10px 40px var(--accent-glow);
    background: rgba(255, 255, 255, 0.1);
}

.portal-btn:hover::before {
    transform: translateX(100%);
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--accent-pixel);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    filter: blur(20px);
    opacity: 0;
    transition: var(--transition-snappy);
    z-index: -1;
}

.portal-btn:hover .btn-glow {
    width: 150%;
    height: 150%;
    opacity: 0.3;
}

.arrow {
    transition: transform 0.3s ease;
}

.portal-btn:hover .arrow {
    transform: translateX(5px);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
