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

@font-face {
    font-family: "instrument-serif";
    src: url("fonts/InstrumentSerif-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "edunswactcursive";
    src: url("fonts/EduNSWACTCursive-VariableFont_wght.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Background with flowers */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

/* Flower petals effect */
body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

/* Navigation */
.nav {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 12px 14px;
    position: fixed;
    top: 60px;
    z-index: 100;
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    justify-content: space-between;
    width: 826px;
    transform: translateY(-100px);
    opacity: 0;
    animation: slideDownNav 1s ease-out 0.5s forwards;
}

@keyframes slideDownNav {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-pill {
    display: flex;
    gap: 4px;
}

.nav-link {
    padding: 12px 20px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    border-radius: 40px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.nav-link.get-started {
    background: rgba(0, 0, 0, 0.8);
    color: white;
}

.nav-link.get-started:hover {
    background: rgba(0, 0, 0, 0.9);
}

/* Product Hunt Badge */
.product-hunt-badge {
    background: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
    color: #333;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    z-index: 50;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transform: translateY(30px);
    opacity: 0;
    animation: slideUpContent 0.8s ease-out 1.2s forwards;
}

.main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Main Content */
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 1000px;
    transform: translateY(50px);
    opacity: 0;
    animation: slideUpContent 1s ease-out 0.8s forwards;
}

@keyframes slideUpContent {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("images/bg.png");
    background-size: cover;
    z-index: -1;
    filter: blur(2px);
    mask: radial-gradient(circle at center, transparent 0%, transparent 0%, black 0%);
    animation: fogExpand 1s ease-out forwards;
}

@keyframes fogExpand {
    0% {
        mask: radial-gradient(circle at center, 
            rgba(0,0,0,0.1) 0%, 
            rgba(0,0,0,0.05) 15%, 
            transparent 25%);
        filter: blur(20px) opacity(0.2);
    }
    20% {
        mask: radial-gradient(circle at center, 
            rgba(0,0,0,0.4) 0%, 
            rgba(0,0,0,0.2) 20%, 
            rgba(0,0,0,0.1) 35%,
            transparent 45%);
        filter: blur(15px) opacity(0.4);
    }
    50% {
        mask: radial-gradient(circle at center, 
            rgba(0,0,0,0.8) 0%, 
            rgba(0,0,0,0.5) 30%, 
            rgba(0,0,0,0.2) 50%,
            transparent 65%);
        filter: blur(10px) opacity(0.7);
    }
    80% {
        mask: radial-gradient(circle at center, 
            black 0%, 
            rgba(0,0,0,0.8) 60%, 
            rgba(0,0,0,0.3) 80%,
            transparent 90%);
        filter: blur(5px) opacity(0.9);
    }
    100% {
        mask: radial-gradient(circle at center, black 0%, black 100%);
        filter: blur(2px) opacity(1);
    }
}

.brand-name {
    font-size: 66px;
    font-weight: 200;
    color: #fff;
    font-style: italic;
    letter-spacing: -1px;
    font-family: "instrument-serif";
}

.nav .brand-name {
    font-size: 20px;
    font-weight: 100;
}

.brand-name-first {
    font-family: "edunswactcursive";
}

.nav .brand-name-first {
    font-weight: 100;
}

.brand-name-second {
    margin-left: 20px;
    font-style: normal;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.nav .brand-name {
    margin-left: 15px;
}

.nav .brand-name-second {
    margin-left: 8px;
    font-weight: 200;
}

.main-title {
    font-family: "instrument-serif";
    font-size: 110px;
    font-weight: 400;
    color: white;
    margin-top: 40px;
    margin-bottom: 24px;
    transform: translateY(30px);
    opacity: 0;
    animation: slideUpContent 0.8s ease-out 1.4s forwards;
}

.subtitle {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 48px;
    font-weight: 400;
    line-height: 1.4;
    transform: translateY(30px);
    opacity: 0;
    animation: slideUpContent 0.8s ease-out 1.6s forwards;
}

/* Search Container */
.search-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    transform: translateY(30px);
    opacity: 0;
    animation: slideUpContent 0.8s ease-out 1.8s forwards;
}

.search-input {
    width: 100%;
    padding: 20px 60px 20px 24px;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    outline: none;
    color: #333;
}

.search-input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.search-button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: #000;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-button:hover {
    background: #333;
    transform: translateY(-50%) scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-pill {
        flex-wrap: wrap;
        padding: 6px;
    }
    
    .nav-link {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .product-hunt-badge {
        position: static;
        transform: none;
        margin-bottom: 20px;
        border-radius: 15px;
    }
    
    .main-content {
        margin-top: 40px;
        padding: 0 16px;
    }
    
    .brand-name {
        font-size: 36px;
        margin-bottom: 30px;
    }
    
    .subtitle {
        font-size: 18px;
        margin-bottom: 32px;
    }
    
    .search-input {
        padding: 16px 50px 16px 20px;
        font-size: 15px;
    }
    
    .search-button {
        width: 40px;
        height: 40px;
    }
}
