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

:root {
    --bg-dark: #0d0d14;
    --bg-medium: #1a1a26;
    --text-light: #f5f5f0;
    --text-muted: #b8b8ad;
    --accent-gold: #d4af37;
    --accent-silver: #c0c0c0;
    --accent-purple: #8b7ba8;
}

body {
    font-family: 'Cormorant Garamond', serif;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1526 50%, #0d0d14 100%);
    color: var(--text-light);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    line-height: 1.6;
}

.brand-logo {
    height: 60px;
    width: 60px;
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image:
            radial-gradient(2px 2px at 20% 30%, white, transparent),
            radial-gradient(2px 2px at 60% 70%, white, transparent),
            radial-gradient(1px 1px at 50% 50%, white, transparent),
            radial-gradient(1px 1px at 80% 10%, white, transparent),
            radial-gradient(2px 2px at 90% 60%, white, transparent),
            radial-gradient(1px 1px at 33% 80%, white, transparent),
            radial-gradient(1px 1px at 15% 90%, white, transparent);
    background-size: 200% 200%;
    animation: twinkle 8s ease-in-out infinite;
    opacity: 0.6;
    z-index: 0;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.8;
    }
}

.container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 48px 24px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

header {
    text-align: center;
    margin-bottom: 64px;
    animation: fadeInDown 1s ease-out;
}

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

.moon-icon {
    font-size: 48px;
    margin-bottom: 16px;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
    margin-top: 40px;
}

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

.brand-name {
    font-family: 'Cinzel', serif;
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 4px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-silver) 50%, var(--accent-gold) 100%);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s ease-in-out infinite;
    margin-bottom: 8px;
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.tagline {
    font-size: 20px;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
}

main {
    animation: fadeInUp 1s ease-out 0.3s both;
}

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

.content {
    background: rgba(26, 26, 38, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.description {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 48px;
    text-align: center;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.feature {
    text-align: center;
    padding: 24px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.feature .icon {
    font-size: 40px;
    display: block;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
}

.feature h3 {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: var(--accent-gold);
    margin-bottom: 8px;
    font-weight: 600;
}

.feature p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.5;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(131, 58, 180, 0.3);
    position: relative;
    overflow: hidden;
}

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

.instagram-link:hover::before {
    left: 100%;
}

.instagram-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(131, 58, 180, 0.5);
}

.instagram-link svg {
    flex-shrink: 0;
}

footer {
    text-align: center;
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-muted);
    font-size: 14px;
    animation: fadeIn 1s ease-out 0.6s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 32px 16px;
    }

    .brand-name {
        font-size: 40px;
        letter-spacing: 2px;
    }

    .tagline {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .content {
        padding: 32px 24px;
    }

    .description {
        font-size: 18px;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .instagram-link {
        font-size: 16px;
        padding: 14px 28px;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 32px;
    }

    .moon-icon {
        font-size: 36px;
    }

    .content {
        padding: 24px 16px;
    }
}
