/******************************************* Html & Body Styling *******************************************/
html {
  scroll-behavior: smooth;
}

body {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%) !important;
    background-size: 400% 400% !important;
    animation: gentleGradientShift 25s ease infinite !important;
    min-height: 100vh;
    color: var(--text-accent) !important;
}

/* Desktop Up Arrow Button */
/* Up Arrow Button Styles */
.up-arrow-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0.8;
}

.up-arrow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
    opacity: 1;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
}

.up-arrow-btn:active {
    transform: translateY(-1px);
}









/******************************************* Navigation Bar Section *******************************************/
.header {
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.9) 0%, rgba(108, 92, 231, 0.8) 50%, rgba(221, 160, 221, 0.85) 100%) !important;
    backdrop-filter: blur(35px) !important;
    box-shadow: 0 4px 25px rgba(139, 21, 56, 0.4) !important;
    border-bottom: 1px solid rgba(221, 160, 221, 0.5) !important;
    position: relative !important;
    z-index: 1000 !important;
    animation: navbarRomanticFlow 30s ease infinite !important;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.2) 0%, rgba(253, 121, 168, 0.1) 100%);
    z-index: -1;
}

.logo {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 2px 8px rgba(139, 21, 56, 0.5) !important;
    font-weight: 600 !important;
}

.logo span {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 600 !important;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.9) !important;
    transition: all 0.3s ease !important;
    font-weight: 500 !important;
    text-shadow: 0 1px 3px rgba(139, 21, 56, 0.3) !important;
}

.nav-menu a:hover {
    color: rgba(255, 228, 225, 1) !important;
    text-shadow: 0 2px 10px rgba(255, 192, 203, 0.6) !important;
    transform: translateY(-1px) !important;
}

.logo-image {
    width: 32px !important;
    height: 32px !important;
    object-fit: contain !important;
    margin-right: 0.5rem !important;
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3)) brightness(1.1) !important;
    animation: 
        compassRotation 20s linear infinite,
        compassPulse 4s ease-in-out infinite !important;
    transform-origin: center center !important;
    transition: filter 0.3s ease !important;
}
 .stat-number {

    font-size:2.7rem !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    text-shadow: 0 3px 12px rgba(255, 255, 255, 0.8);
    opacity: 1;
}




.statistics-section {
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 30%, #fbcfe8 60%, #f9a8d4 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at 20% 30%, 
        rgba(236, 72, 153, 0.08) 0%, 
        transparent 50%
    ),
    radial-gradient(
        ellipse at 80% 70%, 
        rgba(219, 39, 119, 0.06) 0%, 
        transparent 50%
    );
    pointer-events: none;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.additional-stats {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.additional-stats.show {
    display: grid !important;
    margin-top: 3rem;
}

/* Enhanced Statistics Cards */
.stat-card {
    background: linear-gradient(135deg, #831843 0%, #be185d 50%, #c2185b 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 
        0 10px 40px rgba(131, 24, 67, 0.3),
        0 0 20px rgba(190, 24, 93, 0.2);
    border: 1px solid rgba(190, 24, 93, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 350px;
    position: relative;
    overflow: hidden;
    color: white;
    perspective: 1000px;
    transform-style: preserve-3d;
    width: 100%;
    min-width: 280px;
    max-width: 320px;
    margin: 0 auto;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    /* background: linear-gradient(90deg, #fbbf24, #f59e0b, #d97706); */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(131, 24, 67, 0.4),
        0 0 40px rgba(190, 24, 93, 0.3);
}

.card-front, .card-back {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2rem;
    border-radius: 20px;
    backface-visibility: hidden;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    background: inherit;
    -webkit-backface-visibility: hidden;
}

.card-front {
    transform: rotateY(0deg);
    z-index: 2;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.card-back {
    transform: rotateY(180deg);
    background: rgb(8,146,208);
    background: linear-gradient(159deg, rgba(8,146,208,1) 0%, rgba(75,0,130,1) 100%);
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.card-back h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.card-back p {
    text-align: start;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.stat-card.flipped .card-front {
    transform: rotateY(-180deg);
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Ensure all front card content is completely hidden when flipped */
.stat-card.flipped .card-front * {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.stat-card.flipped .card-back {
    transform: rotateY(0deg);
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 3;
    pointer-events: auto !important;
}

/* Enhanced card-front content centering */
 .stat-icon {
    padding: 2rem;
    margin: 0 auto 0.5rem auto;
    font-size: 2.5rem;
    color: var(--deep-red);
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.card-front .stat-number {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 3px 12px rgba(255, 255, 255, 0.8);
}

.card-front .stat-label {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #e0d0d0;
    padding: 0.2rem 0.2rem;
    border-radius: 8px;
    line-height: 1.3;
}

.card-front .stat-source {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.card-front .click-indicator {
    margin-top: auto;
    align-self: center;
}


.stats {
    background: var(--gradient-tertiary) !important;
    background-size: 200% 200% !important;
    animation: gradientShift 14s ease infinite !important;
    padding: 3rem 0;
}

.stat-item {
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
    backdrop-filter: blur(10px) !important;
}

/* Clickable Card Styles */
.stat-card.clickable {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.stat-card.clickable:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(139, 21, 56, 0.4);
}

.stat-card.clickable:active {
    transform: translateY(-4px) scale(1.01);
    transition: all 0.1s ease;
}

.click-indicator {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.stat-card.clickable:hover .click-indicator {
    opacity: 1;
}

.click-indicator i {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* Click feedback animation */
.stat-card.clicked {
    animation: clickFeedback 0.6s ease;
}

@keyframes clickFeedback {
    0% { transform: scale(1); }
    25% { transform: scale(0.95); }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 20px 60px rgba(139, 21, 56, 0.6);
    }
    100% { transform: scale(1); }
}

.stats-hero-section{
    background-image:
        linear-gradient(to bottom, rgba(30, 20, 40, 0.7) 0%, rgba(30, 20, 40, 0.3) 60%, rgba(30, 20, 40, 0.8) 100%),
        url('../../images/couples/ring_4.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 50vh;
    width: 100%;

}

.stats-hero-container{
    align-items: center;
    justify-content: center;
    margin: 0 auto;

}
.stats-title{
    padding-top: 2rem;
    text-align: center;
    background: linear-gradient(90deg, #ffe0ec 0%, #f7b2e6 40%, #b8b5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-subtitle{
    text-align: center;
    color: #fff;
}

.back-link{
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    display: block;
    margin: 2rem auto 0 auto;
    text-align: center;
    background: rgba(230, 57, 70, 0.18);
    width: 16%;
    border-radius: 2rem;
    padding: 0.5rem 0.5rem;
    border: 2.5px solid #e63946;
    box-shadow: 0 2px 12px 0 rgba(230, 2, 2, 0.08);
    transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
}

.back-link:hover {
    background: rgba(255, 255, 255, 0.25);
    /* color: #b8004c; */
    border: 2.5px solid #b8004c;
    box-shadow: 0 4px 18px 0 rgba(230, 2, 2, 0.18);
}


/* Statistic Modal Styles */
.statistic-modal {
    display: flex;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.statistic-modal.show {
    opacity: 1;
}

.modal-content {
    background: linear-gradient(135deg, #8b1538 0%, #c7365f 50%, #6c5ce7 100%);
    border-radius: 20px;
    padding: 0;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.statistic-modal.show .modal-content {
    transform: scale(1);
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.close-btn {
    color: rgba(255, 255, 255, 0.8);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.close-btn:hover {
    color: white;
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem;
}


.featured-stat {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.featured-number {
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 4px 16px rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.featured-label {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.stat-explanation {
    margin-bottom: 1.5rem;
}

.stat-explanation p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.stat-source-detail {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border-left: 4px solid rgba(255, 255, 255, 0.5);
}

.stat-source-detail small {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    font-size: 0.9rem;
}

.modal-footer {
    padding: 1rem 2rem 2rem;
    text-align: center;
}

.close-modal-btn {
    background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(253, 121, 168, 0.3);
}

.close-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 121, 168, 0.4);
    background: linear-gradient(135deg, #ff8fb3 0%, #ed5aa0 100%);
}

.load-more-container{
    text-align: center;
    margin: 2rem 0;
}

.load-more-container.hidden {
    display: none;
    visibility: hidden;
    opacity: 0;
}

.load-more-btn {
    background: linear-gradient(135deg, #ff5fa2 0%, #ff80b5 50%, #ffb6d5 100%);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 21, 56, 0.3);
}

.load-more-btn.hidden {
    display: none;
    visibility: hidden;
    opacity: 0;
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 21, 56, 0.4);
    background: linear-gradient(135deg, #ff8fb3 0%, #ed5aa0 100%);
}

/****************************************** Insights Section Styles ******************************************/
.insights-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    position: relative;
    background: linear-gradient(135deg, rgba(136, 0, 56, 0.92) 0%, rgba(230, 57, 70, 0.88) 60%, rgba(72, 0, 80, 0.93) 100%);
    backdrop-filter: blur(2px);
    padding-bottom: 10%;
}

.insights-header{
    margin-top: 2rem;
    margin-bottom: 10rem;
    text-align: center;
    padding: 2rem 2rem 0.2rem 2rem;
    background: linear-gradient(135deg, rgba(136, 0, 56, 0.92) 0%, rgba(230, 57, 70, 0.88) 60%, rgba(72, 0, 80, 0.93) 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(136, 0, 56, 0.18);
    backdrop-filter: blur(10px);
}
.insights-title{

    text-align: center;
    background: linear-gradient(90deg, #ffb6b9 0%, #f7b2e6 50%, #b8b5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 800;
    letter-spacing: 0.01em;
}
.insights-subtitle{
    padding-left: 10%;
    width: 95%;
    text-align: center;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;

}

.insights-floating-layout{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 60vh;
    position: relative;
    margin-top: 3rem; /* Adds space below the header */
}

.insights-floating-container{
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto 2rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}


.central-circle-image{
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.13);
    position: absolute;
    left: 50%;
    top: 30%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background: #fff;
}

.central-circle-image:hover {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 8px 32px 0 rgba(255, 105, 135, 0.22), 0 2px 8px 0 rgba(0,0,0,0.12);
    filter: brightness(1.08) saturate(1.12);
    transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s, filter 0.3s;
}
.insight-card{
    background: rgba(255, 255, 255, 0.85);
    border-radius: 18px;
    padding: 1.2rem 1.5rem;
    box-shadow: 0 4px 18px rgba(0,0,0,0.13);
    transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s, filter 0.3s;
    position: absolute;
    width: 80%;
    font-size: 1rem;
    z-index: 1;
}

.insight-card:hover {
    transform: scale(1.07) translateY(-6px);
    box-shadow: 0 8px 32px 0 rgba(255, 105, 135, 0.18), 0 2px 8px 0 rgba(0,0,0,0.10);
    filter: brightness(1.08) saturate(1.15);
    z-index: 2;
}

.insight-card h3 {
    text-align: center;
    color: #fff;
    margin-bottom: 0.7rem;
    text-shadow: 0 2px 8px rgba(255, 182, 217, 0.45), 0 1px 2px rgba(0,0,0,0.08);
    font-weight: 700;
    letter-spacing: 0.01em;
} 

.card-top-left {
    top: -40%;
    left: -60%;
    transform: none;
    background: linear-gradient(135deg, #ffb6b9 0%, #ff6f91 100%);
}
.card-top-right {
    top: -40%;
    right: -60%;
    transform: none;
    background: linear-gradient(135deg, #f7b2e6 0%, #ffb6b9 100%);
}
.card-bottom-left {
    bottom: -10%;
    left: -60%;
    transform: none;
    background: linear-gradient(135deg, #ffe0ec 0%, #f7b2e6 100%);
}
.card-bottom-right {
    bottom: -10%;
    right: -60%;
    transform: none;
    background: linear-gradient(135deg, #b8b5ff 0%, #ffe0ec 100%);
}
.insight-card.card-top-left:hover,
.insight-card.card-top-right:hover,
.insight-card.card-bottom-left:hover,
.insight-card.card-bottom-right:hover {
    transform: scale(1.07);
    box-shadow: 0 8px 24px rgba(255, 105, 135, 0.18);
    opacity: 0.8;
    z-index: -1;
    transition: transform 0.3s ease;
}
.card-bottom-right:hover {
    transform: scale(1.05);
}



/****************************************** Stats CTA Section ******************************************/
.stats-cta-section {
    background:
        linear-gradient(to bottom, rgba(136,0,56,0.88) 0%, rgba(230,57,70,0.22) 40%, rgba(255,255,255,0.04) 80%),
        linear-gradient(rgba(255,255,255,0.32), rgba(255,255,255,0.32)),
        url('../../images/couples/ring_2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2rem 0;
    height: 60vh;
}

.stats-cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.stats-cta-container h2 {
    padding-top: 7%;
    font-size: 2rem;
    background: linear-gradient(90deg, #7b2ff2 0%, #b8004c 60%, #f357a8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 8px rgba(123, 47, 242, 0.18), 0 1px 2px rgba(0,0,0,0.13);
    margin-bottom: 1rem;
}

.stats-cta-container p {
    font-size: 1rem;
    color: #5e1dc6;
    margin-bottom: 2rem;
    font-weight: 500;
}


.cta-buttons{
    width: 90%;
}
.btn-primary{
    background: linear-gradient(90deg, #e63946 0%, #ff80b5 100%);
    color: #fff8fa;
    border: none;
    border-radius: 2.5rem;
    padding: 0.8rem 2.5rem;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 18px 0 rgba(230, 2, 2, 0.13), 0 1.5px 8px 0 rgba(255, 182, 217, 0.13);
    cursor: pointer;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s, filter 0.18s;
    text-decoration: none;
    backdrop-filter: blur(2px);
    outline: none;
    position: relative;
    overflow: hidden;
    margin-right: 2%;
}

.btn-primary::after {
    content: "";
    position: absolute;
    left: 0; top: 0; right: 0; bottom: 0;
    border-radius: inherit;
    background: linear-gradient(120deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.04) 100%);
    pointer-events: none;
    z-index: 1;
}


.btn-primary:hover {
    background: linear-gradient(90deg, #ffb6b9 0%, #e63946 100%);
    color: #fff;
    box-shadow: 0 8px 32px 0 rgba(255, 105, 135, 0.18), 0 2px 8px 0 rgba(0,0,0,0.10);
    filter: brightness(1.08) saturate(1.12);
    transform: translateY(-3px) scale(1.06);
}

.btn-secondary{
    background: linear-gradient(90deg, #b8b5ff 0%, #ffe0ec 100%);
    color: #5a189a;
    border: 2.5px solid #b8b5ff;
    border-radius: 2.5rem;
    padding: 0.8rem 2.5rem;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 18px 0 rgba(230, 2, 2, 0.09), 0 1.5px 8px 0 rgba(255, 182, 217, 0.09);
    cursor: pointer;
    transition: background 0.18s, color 0.18s, border 0.18s, box-shadow 0.18s, transform 0.18s, filter 0.18s;
    text-decoration: none;
    backdrop-filter: blur(2px);
    outline: none;
    position: relative;
    overflow: hidden;
}

.btn-secondary::after {
    content: "";
    position: absolute;
    left: 0; top: 0; right: 0; bottom: 0;
    border-radius: inherit;
    background: linear-gradient(120deg, rgba(255,255,255,0.13) 0%, rgba(255,255,255,0.01) 100%);
    pointer-events: none;
    z-index: 1;
}


.btn-secondary:hover {
    background: linear-gradient(90deg, #ffe0ec 0%, #b8b5ff 100%);
    color: #5a189a;
    border-color: #ffe0ec;
    box-shadow: 0 8px 32px 0 rgba(255, 105, 135, 0.18), 0 2px 8px 0 rgba(0,0,0,0.10);
    filter: brightness(1.08) saturate(1.12);
    transform: translateY(-3px) scale(1.06);
}