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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    overflow-x: hidden;
}

/* Navigation Header */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 250, 252, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(232, 129, 150, 0.15);
    z-index: 1000;
    border-bottom: 3px solid #FFBFD6;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    font-size: 1.8em;
    font-weight: bold;
    color: #FFA3CA;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    color: #E88196;
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #FFA3CA;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.25s ease;
    position: relative;
}

.nav-link:hover {
    background: #FFBFD6;
    color: white;
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger {
    width: 30px;
    height: 3px;
    background: #FFA3CA;
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.nav-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: rgba(255, 250, 252, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transition: right 0.3s ease;
        box-shadow: -4px 0 20px rgba(232, 129, 150, 0.2);
        border-left: 3px solid #FFBFD6;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.2em;
        padding: 12px 20px;
        display: block;
    }
}

/* Banner Section with Paw Background & Floating Items */
.banner {
    height: 100vh;
    background-image: url('assets/paws-background.jpg');
    background-size: 400px 400px;
    background-repeat: repeat;
    background-color: #FFB6D9;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.floating-decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.float-item {
    position: absolute;
    font-size: 3em;
    opacity: 0.6;
    animation: float 20s infinite ease-in-out;
}

.float-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.float-item:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 15s;
}

.float-item:nth-child(2) {
    top: 70%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.float-item:nth-child(3) {
    top: 30%;
    left: 85%;
    animation-delay: 4s;
    animation-duration: 16s;
}

.float-item:nth-child(4) {
    top: 80%;
    left: 15%;
    animation-delay: 1s;
    animation-duration: 20s;
}

.float-item:nth-child(5) {
    top: 20%;
    left: 70%;
    animation-delay: 3s;
    animation-duration: 17s;
}

.float-item:nth-child(6) {
    top: 60%;
    left: 5%;
    animation-delay: 5s;
    animation-duration: 19s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) rotate(5deg);
    }
    50% {
        transform: translateY(-60px) rotate(-5deg);
    }
    75% {
        transform: translateY(-30px) rotate(3deg);
    }
}

.banner-content {
    animation: fadeInUp 1s ease-out;
    z-index: 1;
}

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

.profile-img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid #E88196;
    box-shadow: 0 20px 60px rgba(232, 129, 150, 0.6);
    margin-bottom: 25px;
    animation: bounceIn 1s ease-out 0.3s both, pulse-glow 3s ease-in-out infinite;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 20px 60px rgba(232, 129, 150, 0.6);
    }
    50% {
        box-shadow: 0 20px 80px rgba(232, 129, 150, 0.9), 0 0 30px rgba(255, 191, 215, 0.5);
    }
}

.name {
    font-size: 5em;
    color: white;
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 4px 4px 8px rgba(232, 129, 150, 0.6);
    animation: slideDown 0.8s ease-out 0.5s both;
    letter-spacing: 2px;
}

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

.subtitle {
    font-size: 1.6em;
    color: white;
    text-shadow: 2px 2px 4px rgba(232, 129, 150, 0.5);
    animation: slideDown 0.8s ease-out 0.7s both;
    font-style: italic;
    background: rgba(140, 0, 118, 0.5);
    padding: 15px 40px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.5);
    display: inline-block;
    margin-top: 10px;
    box-shadow: 0 8px 24px rgba(140, 0, 118, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 3em;
    color: white;
    text-shadow: 2px 2px 4px rgba(232, 129, 150, 0.5);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Scrollable Sections with Cards */
.about-section,
.interests-section,
.status-section,
.links-section {
    background: linear-gradient(180deg, #FFB6D9 0%, #FFCCE5 100%);
    padding: 100px 20px;
    min-height: 60vh;
}

.interests-section {
    background: linear-gradient(180deg, #FFCCE5 0%, #FFD5EC 100%);
}

.status-section {
    background: linear-gradient(180deg, #FFD5EC 0%, #FFCCE5 100%);
}

.links-section {
    background: linear-gradient(180deg, #FFCCE5 0%, #FFB6D9 100%);
}

.content-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Card Styles */
.card {
    background: #FFFAFC;
    border-radius: 46px;
    padding: 50px 40px;
    box-shadow: 0 0 18px 20px rgba(232, 129, 150, 0.12);
    transition: all 0.3s ease;
    border: 4px solid rgba(255, 255, 255, 0.8);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px 25px rgba(232, 129, 150, 0.18);
}

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

.scroll-reveal-delay-1 {
    transition-delay: 0.1s;
}

.scroll-reveal-delay-2 {
    transition-delay: 0.2s;
}

.scroll-reveal-delay-3 {
    transition-delay: 0.3s;
}

.scroll-reveal-delay-4 {
    transition-delay: 0.4s;
}

.scroll-reveal-delay-5 {
    transition-delay: 0.5s;
}

.scroll-reveal-delay-6 {
    transition-delay: 0.6s;
}

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

.section-title {
    font-size: 3em;
    color: #FFA3CA;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: none;
    font-weight: bold;
    letter-spacing: 1px;
}

.section-subtitle {
    text-align: center;
    color: #FFA3CA;
    font-size: 1.3em;
    margin-bottom: 30px;
    font-style: normal;
    font-weight: 600;
}

/* Profile Details */
.profile-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 35px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #FFBFD6;
    border-radius: 32px;
    transition: all 0.25s ease;
    border: none;
    position: relative;
}

.detail-item:hover {
    transform: translateX(5px) scale(1.025);
    background: #FFA3CA;
    box-shadow: 0 5px 15px rgba(232, 129, 150, 0.25);
}

.fursona-clickable {
    cursor: pointer;
}

.detail-arrow {
    color: white;
    font-size: 2em;
    font-weight: bold;
    margin-left: auto;
    transition: transform 0.3s ease;
}

.fursona-clickable:hover .detail-arrow {
    transform: translateX(5px);
}

.detail-icon {
    font-size: 2.5em;
    min-width: 50px;
}

.detail-text h3 {
    color: white;
    font-size: 1.2em;
    margin-bottom: 5px;
    font-weight: bold;
}

.detail-text p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1em;
}

.description {
    color: #666;
    font-size: 1.15em;
    line-height: 1.8;
    text-align: center;
    padding: 25px;
    background: rgba(255, 191, 214, 0.2);
    border-radius: 24px;
    border: none;
}

/* Interests Grid */
.interests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.interest-item {
    background: white;
    padding: 30px 20px;
    border-radius: 32px;
    text-align: center;
    transition: all 0.25s ease;
    border: 3px solid #FFBFD6;
    box-shadow: 0 4px 12px rgba(232, 129, 150, 0.15);
}

.interest-item:hover {
    transform: translateY(-10px) scale(1.025);
    border-color: #FFA3CA;
    box-shadow: 0 15px 30px rgba(232, 129, 150, 0.25);
    background: #FFFAFC;
}

.interest-icon {
    font-size: 3.5em;
    margin-bottom: 15px;
    animation: bounce-small 2s ease-in-out infinite;
}

.interest-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

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

.interest-item h3 {
    color: #FFA3CA;
    font-size: 1.3em;
    margin-bottom: 8px;
    font-weight: bold;
}

.interest-item p {
    color: #888;
    font-size: 1em;
}

/* Commission Status */
.status-card {
    text-align: center;
}

.status-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.status-sparkle {
    font-size: 2em;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: rotate(180deg) scale(1.2);
        opacity: 1;
    }
}

.status-badge-wrapper {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.4em;
    font-weight: bold;
    position: relative;
    overflow: hidden;
}

.status-badge.open {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(76, 175, 80, 0.6);
    }
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.status-description {
    color: #666;
    font-size: 1.15em;
    line-height: 1.8;
    margin: 30px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.status-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 35px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: white;
    padding: 18px 40px;
    border-radius: 32px;
    text-decoration: none;
    font-size: 1.15em;
    font-weight: bold;
    transition: all 0.25s ease;
    text-transform: none;
    letter-spacing: 0.5px;
}

.cta-button.primary {
    background: #FFBFD6;
    box-shadow: 0 6px 18px rgba(255, 191, 214, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    background: #FFA3CA;
    box-shadow: 0 8px 24px rgba(255, 163, 202, 0.5);
}

.cta-button.secondary {
    background: white;
    color: #FFA3CA;
    border: 3px solid #FFBFD6;
    box-shadow: 0 4px 12px rgba(255, 191, 214, 0.2);
}

.cta-button.secondary:hover {
    transform: translateY(-3px);
    background: #FFFAFC;
    border-color: #FFA3CA;
    box-shadow: 0 6px 18px rgba(255, 163, 202, 0.3);
}

.cta-button .arrow {
    font-size: 1.3em;
    transition: transform 0.25s ease;
}

.cta-button:hover .arrow {
    transform: translateX(5px);
}

/* Buttons Grid */
.buttons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .buttons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .buttons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.btn {
    background: #FFBFD6;
    color: white;
    padding: 25px 30px;
    border-radius: 32px;
    text-decoration: none;
    font-size: 1.1em;
    font-family: Georgia, 'Times New Roman', serif;
    transition: all 0.25s ease;
    box-shadow: 0 6px 18px rgba(255, 191, 214, 0.3);
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 20px;
    border: none;
}

.btn:hover {
    background: #B695FC;
    transform: scale(1.025);
    box-shadow: 0 8px 24px rgba(182, 149, 252, 0.4);
}

.btn-icon {
    font-size: 2.5em;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon svg {
    width: 48px;
    height: 48px;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon svg {
    transform: scale(1.1) rotate(5deg);
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.btn-text {
    font-size: 1.2em;
}

.btn-subtext {
    font-size: 0.85em;
    opacity: 0.9;
    font-style: italic;
    font-weight: normal;
}

/* Lightbox/Modal Base Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

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

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 50px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 300;
    line-height: 1;
    user-select: none;
    z-index: 10001;
}

.lightbox-close:hover {
    color: #FFA3CA;
    transform: rotate(90deg);
}

/* Fursona Modal */
.fursona-modal-content {
    background: white;
    border-radius: 32px;
    padding: 40px;
    max-width: 500px;
    text-align: center;
    animation: zoomIn 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.fursona-gif {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 24px;
    border: 4px solid #FFBFD6;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(232, 129, 150, 0.3);
}

.fursona-info h2 {
    color: #FFA3CA;
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(255, 163, 202, 0.3);
}

.fursona-info p {
    color: #666;
    font-size: 1.3em;
    line-height: 1.6;
}

/* Ko-fi Widget Section */
.kofi-section {
    background: linear-gradient(180deg, #FFCCE5 0%, #FFB6D9 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.kofi-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(182, 149, 252, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.kofi-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(232, 129, 150, 0.2),
                0 0 0 1px rgba(255, 191, 214, 0.2) inset;
    border: 4px solid rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.kofi-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(232, 129, 150, 0.3),
                0 0 0 1px rgba(255, 191, 214, 0.3) inset;
}

#kofiframe {
    display: block;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #E88196 0%, #c55a72 100%);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-text {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.footer-subtext {
    font-size: 0.95em;
    opacity: 0.9;
    font-style: italic;
}

.footer-subtext a {
    color: white;
    text-decoration: underline;
    font-weight: bold;
    transition: opacity 0.3s ease;
}

.footer-subtext a:hover {
    opacity: 0.8;
}

.footer-credit {
    font-size: 1em;
    margin-top: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-credit a {
    color: white;
    text-decoration: underline;
    font-weight: bold;
    transition: all 0.3s ease;
}

.footer-credit a:hover {
    opacity: 0.8;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .name {
        font-size: 4em;
    }

    .card {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .name {
        font-size: 3em;
    }

    .subtitle {
        font-size: 1.3em;
    }

    .profile-img {
        width: 220px;
        height: 220px;
    }

    .section-title {
        font-size: 2.2em;
    }

    .card {
        padding: 35px 25px;
    }

    .profile-details {
        grid-template-columns: 1fr;
    }

    .interests-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .buttons-grid {
        grid-template-columns: 1fr;
    }

    .float-item {
        font-size: 2em;
    }

    .about-section,
    .interests-section,
    .status-section,
    .links-section {
        padding: 70px 15px;
    }
}

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

    .subtitle {
        font-size: 1.1em;
    }

    .profile-img {
        width: 180px;
        height: 180px;
    }

    .section-title {
        font-size: 1.8em;
    }

    .card {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .interests-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .interest-icon {
        font-size: 2.5em;
    }

    .btn {
        padding: 25px 20px;
    }

    .btn-icon {
        font-size: 2em;
    }

    .cta-button {
        padding: 18px 30px;
        font-size: 1.1em;
    }

    .scroll-indicator span {
        font-size: 2.5em;
    }

    .float-item {
        font-size: 1.5em;
    }
}
