:root {
    --primary-color: #ff69b4;
    --secondary-color: #ff1493;
    --bg-gradient-1: #ff9a9e;
    --bg-gradient-2: #fecfef;
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    --text-color: #4a0e2e;
    --card-hover-bg: rgba(255, 255, 255, 0.45);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(45deg, var(--bg-gradient-1), var(--bg-gradient-2), #a18cd1, #fbc2eb);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    overflow-x: hidden;
    color: var(--text-color);
}

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

/* Floating background shapes */
.background-animation::before,
.background-animation::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    z-index: -1;
    filter: blur(80px);
    opacity: 0.6;
}

.background-animation::before {
    background: #ff69b4;
    top: -50px;
    left: -50px;
    animation: float 8s ease-in-out infinite;
}

.background-animation::after {
    background: #4facfe;
    bottom: -50px;
    right: -50px;
    animation: float 8s ease-in-out infinite reverse;
}

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

.container {
    width: 100%;
    max-width: 480px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* Profile Section */
.profile-section {
    text-align: center;
    margin-bottom: 2.5rem;
    animation: fadeInDown 1s ease-out;
}

.profile-image-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    padding: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    backdrop-filter: blur(4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
}

.profile-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.profile-bio {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Links Section */
.links-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    perspective: 1000px;
}

.link-card {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: var(--glass-shadow);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out backwards;
}

/* Staggered animation */
.link-card:nth-child(1) { animation-delay: 0.1s; }
.link-card:nth-child(2) { animation-delay: 0.2s; }
.link-card:nth-child(3) { animation-delay: 0.3s; }
.link-card:nth-child(4) { animation-delay: 0.4s; }

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

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

.link-card:hover {
    transform: translateY(-5px) scale(1.02);
    background: var(--card-hover-bg);
    box-shadow: 0 12px 40px rgba(255, 105, 180, 0.3);
    border-color: white;
}

.link-card .icon {
    font-size: 1.4rem;
    margin-right: 1rem;
    width: 30px;
    text-align: center;
}

.link-card span {
    flex-grow: 1;
}

.link-card .arrow {
    opacity: 0.6;
    transition: transform 0.3s ease;
}

.link-card:hover .arrow {
    transform: translateX(5px);
    opacity: 1;
}

/* Social Footer */
.social-footer {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.social-icon {
    color: var(--text-color);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.social-icon:hover {
    color: #fff;
    transform: scale(1.2) rotate(5deg);
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.8);
    opacity: 1;
}

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

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

/* Responsive adjustments */
@media (max-width: 480px) {
    .container {
        padding: 1.5rem;
    }
    
    .profile-name {
        font-size: 1.3rem;
    }
}

/* Form Styles */
.coaching-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    animation: fadeInUp 0.8s ease-out backwards;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: 0.5rem;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.form-group input:focus,
.form-group textarea:focus {
    background: rgba(255, 255, 255, 0.6);
    border-color: #fff;
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(74, 14, 46, 0.5);
}

.submit-btn {
    margin-top: 1rem;
    padding: 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.4);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.6);
    filter: brightness(1.1);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.status-message {
    margin-top: 1rem;
    text-align: center;
    font-weight: 600;
    min-height: 1.5rem;
}
