:root {
    font-family: system-ui,Avenir,Helvetica,Arial,sans-serif;
    line-height: 1.5;
    font-weight: 400;
    color-scheme: light dark;
    color: #fff;
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

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

a {
    font-weight: 500;
    color: #646cff;
    text-decoration: inherit
}

a:hover {
    color: #535bf2
}

h1 {
    font-size: 3.2em;
    line-height: 1.1
}

button {
    border-radius: 8px;
    border: 1px solid transparent;
    padding: .6em 1.2em;
    font-size: 1em;
    font-weight: 500;
    font-family: inherit;
    background-color: #1a1a1a;
    cursor: pointer;
    transition: border-color .25s
}

button:hover {
    border-color: #646cff
}

button:focus,button:focus-visible {
    outline: 4px auto -webkit-focus-ring-color
}

@media (prefers-color-scheme: light) {
    :root {
        color:#213547;
        background-color: #fff
    }

    a:hover {
        color: #747bff
    }

    button {
        background-color: #f9f9f9
    }
}

body {
    margin: 0;
    padding: 25px;
    font-family: Inter,sans-serif;
    background-color: #fff;
    color: #182a44;
}

.wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px;
}

.container {
    max-width: 420px;
    width: 100%;
    text-align: center;
    animation: fadeIn .8s ease-out forwards;
    padding: 10px;
}

.profile-pic {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid #D98616;
    object-fit: cover;
    box-shadow: 0 8px 30px #182a4426;
    margin-bottom: 20px
}

.main-title {
    font-size: 2.2em;
    font-weight: 800;
    margin: 10px 0 15px;
    background: linear-gradient(45deg,#ffb800,#fd9d1b,#e58d0f);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.main-title:after {
    content: "";
    display: block;
    margin: 15px auto 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg,#ffb800,#fd9d1b);
    border-radius: 2px
}

.bio {
    font-size: 1.2em;
    margin-bottom: 35px;
    line-height: 1.6;
    color: #556077
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    padding: 16px 25px;
    margin: 16px 0;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1.1em;
    transition: all .25s ease
}

.link-button:hover {
    transform: translateY(-5px) scale(1.02)
}

.link-button.primary {
    color: #fff;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px #fd9d1b4d;
    background: linear-gradient(90deg,#ffb800,#fd9d1b,#ffb800);
    background-size: 200% 100%;
    animation: aurora-shimmer 5s infinite linear
}

.link-button.primary:hover {
    box-shadow: 0 12px 35px #fd9d1b73;
    animation-duration: 3s
}

.link-button.primary i {
    color: #fff
}

.link-button.secondary {
    background-color: #fff5e8;
    border: 2px solid #FFEACC;
    color: #d98616
}

.link-button.secondary:hover {
    background-color: #fd9d1b;
    border-color: #fd9d1b;
    color: #fff
}

.link-button.secondary i {
    color: #d98616
}

.link-button.secondary:hover i {
    color: #fff
}

.testimonial-container {
    position: relative;
    cursor: pointer
}

.slides-wrapper {
    display: flex;
    transition: transform .8s cubic-bezier(.25,.46,.45,.94)
}

.slides-wrapper img {
    flex-shrink: 0;
    width: 100%;
    border-radius: 12px;
    object-fit: contain;
    max-height: 350px
}

.social-links {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

footer {
    font-size: .9em;
    color: #556077;
    margin-top: 25px;
}

@media (min-width: 768px) {
    .container {
        max-width:500px
    }

    .main-title {
        font-size: 2.5em
    }
}

@media (min-width: 1024px) {
    .container {
        max-width:540px
    }
}

.social-links {
    margin: 30px 0 10px;
    display: flex;
    justify-content: center;
    gap: 25px
}

.social-links a {
    color: #556077;
    font-size: 1.8em;
    transition: all .3s ease
}

.social-links a:hover {
    color: #fd9d1b;
    transform: scale(1.2)
}