/* CSS Reset & Base */
:root {
    --bg-color: #050002;
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --accent-pink: #ff107a;
    --accent-glow: rgba(255, 16, 122, 0.6);
    --border-pink: #d8006b;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
}

/* Background Effects */
.bg-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--accent-pink);
    filter: blur(150px);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
}

.bg-glow.top-center {
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
}

.bg-glow.bottom-center {
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
}

/* Container */
.container {
    width: 100%;
    max-width: 480px;
    padding: 3rem 1.5rem;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header & Profile */
.profile {
    text-align: center;
    margin-bottom: 2rem;
}

.logo-wrapper {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.top-icon {
    width: 140px;
    height: auto;
    filter: drop-shadow(0 0 15px var(--accent-glow));
    /* Add border-radius if the icon is square but should be round */
    border-radius: 50%;
}

.main-logo {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 0 8px rgba(255, 16, 122, 0.4));
}

.description {
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.tagline {
    color: var(--accent-pink);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Links Section */
.links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.link-btn {
    display: flex;
    align-items: center;
    padding: 1rem 1.2rem;
    background: transparent;
    border: 1px solid var(--border-pink);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 16, 122, 0.1);
    position: relative;
    overflow: hidden;
}

.link-btn:hover {
    box-shadow: 0 0 20px var(--accent-glow), inset 0 0 10px rgba(255, 16, 122, 0.2);
    transform: translateY(-2px);
    border-color: var(--accent-pink);
}

.icon-wrapper {
    font-size: 1.5rem;
    color: var(--accent-pink);
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0.5rem;
}

.text-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.text-wrapper .title {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
}

.text-wrapper .subtitle {
    font-size: 0.75rem;
    color: var(--accent-pink);
    font-weight: 400;
}

.arrow-wrapper {
    color: var(--accent-pink);
    font-size: 1rem;
    opacity: 0.8;
}

/* Footer Section */
.footer {
    text-align: center;
    margin-top: auto;
}

.cursive-text {
    font-family: 'Great Vibes', cursive;
    color: var(--accent-pink);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.thanks-text {
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.thanks-text i {
    margin-left: 0.3rem;
    color: var(--accent-pink);
}

/* Dotted Background Patterns (Simplified) */
.bg-dots {
    position: absolute;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(var(--border-pink) 1px, transparent 1px);
    background-size: 15px 15px;
    opacity: 0.15;
    z-index: 0;
}

.bg-dots.top-right {
    top: 0;
    right: 0;
    border-bottom-left-radius: 50%;
}

.bg-dots.bottom-left {
    bottom: 0;
    left: 0;
    border-top-right-radius: 50%;
}
