@font-face {
    font-family: 'NanoPix';
    src: url('NanoPixDEMO-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Coolvetica';
    src: url('Coolvetica-Rg.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
    /* Primary Brand Colors */
    --yellow-green: #A7C51B;
    --bright-lemon: #FEEA11;
    --princeton-orange: #FE8402;
    --cotton-candy: #FF8299;
    --neon-pink: #FE027B;
    
    /* Background Colors */
    --background-light: #FFFFFF;
    --background-off-white: #FAFAFA;
    
    /* Text Colors */
    --text-dark: #1A1A1A;
    --text-medium: #666666;
    
    /* Border Colors */
    --border-light: #E5E5E5;
}

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

body {
    font-family: 'Coolvetica', sans-serif;
    background: var(--background-off-white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

body.coming-soon-page {
    overflow: hidden;
}

body.legal-page {
    overflow-y: auto;
    overflow-x: hidden;
    align-items: flex-start;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    animation: fade-in 1s ease-out;
}

.rounded-rectangle {
    background: var(--background-light);
    border: 3px solid var(--neon-pink);
    border-radius: 24px;
    padding: 4rem;
    box-shadow: 
        0 0 40px rgba(254, 234, 17, 0.4),
        0 0 80px rgba(254, 234, 17, 0.2),
        0 8px 32px rgba(254, 2, 123, 0.3);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float 3s ease-in-out infinite;
}

.rounded-rectangle::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--neon-pink), var(--princeton-orange), var(--bright-lemon));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: blur(8px);
}

.rounded-rectangle:hover::before {
    opacity: 0.6;
}

.rounded-rectangle:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 0 60px rgba(254, 234, 17, 0.6),
        0 0 120px rgba(254, 234, 17, 0.3),
        0 12px 48px rgba(254, 2, 123, 0.4);
}

.logo {
    max-width: 300px;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
    animation: logo-pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.coming-soon-text {
    font-family: 'NanoPix', monospace;
    font-size: 3rem;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: linear-gradient(135deg, var(--neon-pink), var(--princeton-orange), var(--bright-lemon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: text-shimmer 3s ease-in-out infinite;
    text-align: center;
}

.footer-links {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'NanoPix', monospace;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 10;
}

.footer-links a.active {
    color: var(--neon-pink);
}

.footer-links a {
    color: var(--text-medium);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-pink), var(--princeton-orange));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-pink);
}

.footer-links a:hover::after {
    transform: scaleX(1);
}

.divider {
    color: var(--border-light);
}

/* Background Effects */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--neon-pink);
    border-radius: 50%;
    opacity: 0.3;
    animation: particle-float 8s ease-in-out infinite;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    background: var(--neon-pink);
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 1.5s;
    background: var(--princeton-orange);
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 3s;
    background: var(--bright-lemon);
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 4.5s;
    background: var(--cotton-candy);
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 6s;
    background: var(--yellow-green);
}

/* Animations */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes logo-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes text-shimmer {
    0%, 100% {
        opacity: 1;
        filter: brightness(1);
    }
    50% {
        opacity: 0.8;
        filter: brightness(1.2);
    }
}

@keyframes particle-float {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        max-width: 200px;
    }
    
    .coming-soon-text {
        font-size: 2rem;
    }
    
    .rounded-rectangle {
        padding: 2.5rem;
    }
    
    .footer-links {
        font-size: 0.65rem;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 150px;
    }
    
    .coming-soon-text {
        font-size: 1.5rem;
    }
    
    .rounded-rectangle {
        padding: 2rem;
        border-radius: 16px;
    }
}

