﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --bg-dark: #090d16;
    --card-bg: #111827;
    --accent-glow: #38bdf8;
    --accent-orange: #f43f5e;
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.08);
}
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-dark);
}
.container {
    width: 92%;
    max-width: 1240px;
    margin: 0 auto;
}
.site-header {
    background: rgba(9, 13, 22, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}
.logo h1 {
    font-size: 1.4rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.3px;
}
.logo i {
    color: var(--accent-glow);
}
.main-nav a {
    margin-left: 1.8rem;
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.main-nav a:hover {
    color: var(--accent-glow);
}
.main-nav .btn-register {
    background: linear-gradient(135deg, #0284c7, #38bdf8);
    color: #fff !important;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(56, 189, 248, 0.25);
}

/* Unique Split Hero Section */
.hero-split {
    padding: 6rem 0 4rem 0;
    background: radial-gradient(circle at top right, rgba(2, 132, 199, 0.15), transparent 50%), radial-gradient(circle at bottom left, rgba(244, 63, 94, 0.1), transparent 40%);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}
.hero-badge-unique {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(56, 189, 248, 0.1);
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.3);
    padding: 0.35rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: floatGentle 4s ease-in-out infinite;
}
.hero-split h2 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-split p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 2rem;
}
.hero-actions {
    display: flex;
    gap: 1rem;
}
.btn-neon {
    background: #f43f5e;
    color: #fff;
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(244, 63, 94, 0.3);
    transition: transform 0.2s;
}
.btn-neon:hover {
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: #fff;
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}
.btn-outline:hover {
    border-color: var(--accent-glow);
    color: var(--accent-glow);
}

/* Glassmorphism Quick Card */
.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Feature Grid */
.features-section {
    padding: 5rem 0;
    border-top: 1px solid var(--border-color);
}
.feature-card-unique {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 12px;
    transition: border-color 0.3s, transform 0.3s;
}
.feature-card-unique:hover {
    border-color: var(--accent-glow);
    transform: translateY(-4px);
}

.site-footer {
    background: #05080f;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    text-align: center;
    padding: 3rem 0;
    margin-top: 4rem;
}
/* Premium Modernized Capsule Navbar */
.site-header {
    background: rgba(11, 17, 32, 0.75) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(56, 189, 248, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    top: 25px !important;
    padding: 0.9rem 2.5rem !important;
}
.logo h1 {
    font-size: 1.35rem;
    background: linear-gradient(135deg, #fff, #38bdf8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.main-nav a {
    color: #cbd5e1 !important;
    font-weight: 500;
    transition: color 0.2s ease;
}
.main-nav a:hover {
    color: #38bdf8 !important;
}
.main-nav .btn-register {
    background: linear-gradient(135deg, #0ea5e9, #2563eb) !important;
    color: #fff !important;
    padding: 0.6rem 1.4rem !important;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}

/* Dynamic Non-Boring Hero Banner */
.hero-split {
    background: radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(244, 63, 94, 0.12) 0%, transparent 40%),
                #090d16 !important;
    padding-top: 9rem !important;
    padding-bottom: 6rem !important;
    position: relative;
    overflow: hidden;
}
.hero-split h2 {
    background: linear-gradient(to right, #ffffff, #94a3b8, #38bdf8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}
/* Ultimate Visual Polish for Hero & Navigation */
.site-header {
    background: rgba(11, 17, 32, 0.85) !important;
    border: 1px solid rgba(56, 189, 248, 0.3) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(56, 189, 248, 0.1) !important;
}
.main-nav a {
    position: relative;
    padding: 0.4rem 0.2rem;
}
.main-nav a:not(.btn-register):after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #38bdf8;
    transition: width 0.3s ease;
}
.main-nav a:not(.btn-register):hover:after {
    width: 100%;
}
.hero-split {
    background: radial-gradient(circle at 50% 20%, rgba(14, 165, 233, 0.2) 0%, rgba(9, 13, 22, 0.95) 70%),
                #090d16 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.btn-neon {
    background: linear-gradient(135deg, #f43f5e, #e11d48) !important;
    box-shadow: 0 6px 25px rgba(244, 63, 94, 0.4) !important;
    transition: all 0.3s ease !important;
}
.btn-neon:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(244, 63, 94, 0.6) !important;
}
.btn-outline:hover {
    background: rgba(56, 189, 248, 0.1);
    border-color: #38bdf8;
    color: #38bdf8;
    transform: translateY(-3px);
}
.glass-card {
    background: linear-gradient(145deg, #111827, #0d1322);
    border: 1px solid rgba(56, 189, 248, 0.15);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}
/* High-Impact Professional Typography Upgrade */
body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Main Hero Heading - High Visibility & Impact */
.hero-split h2 {
    font-size: 3.4rem !important;
    font-weight: 800 !important;
    letter-spacing: -1px !important;
    line-height: 1.15 !important;
    color: #ffffff !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Section Headings - Sharp & Commanding */
h2, .section-title {
    font-weight: 800 !important;
    letter-spacing: -0.5px !important;
}

/* Descriptive Text - Clear Readability */
.hero-split p {
    font-size: 1.2rem !important;
    font-weight: 400 !important;
    color: #cbd5e1 !important;
    letter-spacing: 0.2px;
}

/* Milestone Cards & Data - Crisp Contrast */
.glass-card h3 {
    font-size: 1.35rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.3px;
}
.glass-card ul li span {
    color: #94a3b8 !important;
    font-weight: 500 !important;
    font-size: 0.95rem;
}
.glass-card ul li strong {
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 1rem;
}

/* Navbar Links Visibility */
.main-nav a {
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px !important;
}
/* Refined Subtle Glass Transparency for Navbar */
.site-header {
    background: rgba(11, 17, 32, 0.45) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    border: 1px solid rgba(56, 189, 248, 0.25) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}
/* 3D Tilt & Interactive Glass Depth Effects */
.glass-card, .feature-card-unique {
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.4s ease;
}

.glass-card:hover, .feature-card-unique:hover {
    transform: translateY(-8px) scale(1.01) rotateX(2deg) rotateY(-2deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), 0 0 25px rgba(56, 189, 248, 0.25);
    border-color: rgba(56, 189, 248, 0.5);
}

/* Floating Animation for Badges & Icons */
@keyframes floatGentle {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

/* Glowing Neon Background Orbs */
.hero-split::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 15%;
    width: 350px;
    height: 350px;
    background: rgba(56, 189, 248, 0.08);
    filter: blur(90px);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.hero-split::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 15%;
    width: 400px;
    height: 400px;
    background: rgba(244, 63, 94, 0.07);
    filter: blur(100px);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* Smooth Fade In Entrance for Content */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-split .container > *, section .container > * {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
/* Ultra-Clean Standard Hero Banner */
.hero-split {
    background: linear-gradient(135deg, rgba(9, 13, 22, 0.95), rgba(15, 23, 42, 0.9)), 
                radial-gradient(circle at top center, rgba(56, 189, 248, 0.12), transparent 65%), 
                #090d16 !important;
    border-bottom: 1px solid rgba(56, 189, 248, 0.15);
    padding-top: 10rem !important;
    padding-bottom: 7rem !important;
}

/* Perfected Subtle Glass Transparency for Navbar */
.site-header {
    background: rgba(11, 17, 32, 0.35) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(56, 189, 248, 0.2) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}
/* Theme Variables */
body.theme-dark {
    --bg-main: #090d16;
    --card-bg: #111827;
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --border-color: rgba(56, 189, 248, 0.2);
    background-color: var(--bg-main);
}

body.theme-sun {
    --bg-main: #f8fafc;
    --card-bg: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border-color: #cbd5e1;
    background-color: var(--bg-main);
    color: var(--text-main);
}

body.theme-rainy {
    --bg-main: #061521;
    --card-bg: #0b2236;
    --text-main: #e2f1ff;
    --text-muted: #8baad9;
    --border-color: rgba(14, 165, 233, 0.35);
    background-color: var(--bg-main);
}

/* Apply Theme Variables to Cards & Sections */
body.theme-sun .glass-card, 
body.theme-sun .feature-card-unique {
    background: var(--card-bg) !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05) !important;
    color: var(--text-main);
}
body.theme-sun .glass-card h3, 
body.theme-sun .feature-card-unique h3,
body.theme-sun h2 {
    color: #0f172a !important;
}
body.theme-sun .glass-card ul li span {
    color: #475569 !important;
}
body.theme-sun .glass-card ul li strong {
    color: #0f172a !important;
}

body.theme-rainy .glass-card, 
body.theme-rainy .feature-card-unique {
    background: linear-gradient(145deg, #0b2236, #091a29) !important;
    border-color: var(--border-color) !important;
    box-shadow: 0 20px 40px rgba(2, 6, 23, 0.6) !important;
}

/* Theme Switcher Widget Styling */
.theme-switcher {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: rgba(11, 17, 32, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(56, 189, 248, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: flex;
    gap: 0.8rem;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.theme-btn {
    background: transparent;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 1rem;
    padding: 0.3rem 0.5rem;
    border-radius: 50px;
    transition: all 0.2s ease;
}
.theme-btn:hover, .theme-btn.active {
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.15);
}
/* Enhanced & Visible Rainy Mode Styling */
body.theme-rainy {
    --bg-main: #020c1b !important;
    --card-bg: #0a192f !important;
    --text-main: #e2f8ff !important;
    --text-muted: #8892b0 !important;
    --border-color: #38bdf8 !important;
    background-color: var(--bg-main) !important;
    color: var(--text-main) !important;
}

body.theme-rainy .glass-card, 
body.theme-rainy .feature-card-unique {
    background: linear-gradient(135deg, #0a192f, #172a45) !important;
    border: 1px solid rgba(56, 189, 248, 0.4) !important;
    box-shadow: 0 20px 40px rgba(2, 12, 27, 0.8), 0 0 15px rgba(56, 189, 248, 0.15) !important;
}

body.theme-rainy h1, 
body.theme-rainy h2, 
body.theme-rainy h3, 
body.theme-rainy .glass-card h3 {
    color: #ffffff !important;
}

body.theme-rainy .site-header {
    background: rgba(10, 25, 47, 0.75) !important;
    border-color: rgba(56, 189, 248, 0.4) !important;
}
/* Smooth Scrolling & Enhanced Focus */
html {
    scroll-behavior: smooth;
}

body {
    scroll-padding-top: 100px;
}

.hero-countdown-box {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    background: rgba(10, 25, 47, 0.6);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(56, 189, 248, 0.3);
    backdrop-filter: blur(10px);
}

.countdown-item {
    text-align: center;
}

.countdown-item span {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #38bdf8;
}

.countdown-item small {
    font-size: 0.75rem;
    color: #8892b0;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* Text Reveal Animation */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-text.active {
    opacity: 1;
    transform: translateY(0);
}
/* Counter Animation Glow & Highlighting */
.glass-card h3 {
    font-variant-numeric: tabular-nums;
}
/* Infinite Marquee Effect */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    padding: 1.5rem 0;
    background: rgba(2, 12, 27, 0.9);
    border-top: 1px solid rgba(56, 189, 248, 0.15);
    border-bottom: 1px solid rgba(56, 189, 248, 0.15);
    margin: 4rem 0;
}

.marquee-track {
    display: inline-flex;
    gap: 3rem;
    animation: scrollMarquee 25s linear infinite;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #8892b0;
    background: rgba(10, 25, 47, 0.6);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.marquee-item i {
    color: #38bdf8;
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
/* Reference Style Scientific Session Boxes */
.session-box {
    background: rgba(10, 25, 47, 0.7);
    border: 1px solid rgba(56, 189, 248, 0.3);
    padding: 1.25rem 1.5rem;
    color: #e2e8f0;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.session-box:hover {
    border-color: #38bdf8;
    background: rgba(56, 189, 248, 0.1);
    color: #fff;
    transform: translateY(-2px);
}

.session-box-btn-green {
    background: #10b981;
    color: #fff;
    padding: 1.25rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}
.session-box-btn-green:hover { opacity: 0.9; }

.session-box-btn-blue {
    background: #0b2545;
    border: 1px solid #38bdf8;
    color: #fff;
    padding: 1.25rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}
.session-box-btn-blue:hover { background: #13315c; }
/* Speaker Auto Slide Marquee */
.speaker-marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    padding: 2rem 0;
    background: rgba(10, 25, 47, 0.4);
    border-top: 1px solid rgba(56, 189, 248, 0.15);
    border-bottom: 1px solid rgba(56, 189, 248, 0.15);
    margin: 4rem 0;
}

.speaker-marquee-track {
    display: inline-flex;
    gap: 2rem;
    animation: slideLeftSpeakers 30s linear infinite;
}

.speaker-slide-card {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(2, 12, 27, 0.8);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(56, 189, 248, 0.25);
    min-width: 280px;
}

.speaker-slide-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #38bdf8;
}

.speaker-slide-info h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.speaker-slide-info p {
    color: #38bdf8;
    font-size: 0.8rem;
    font-weight: 600;
}

@keyframes slideLeftSpeakers {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
/* Larger Speaker Auto-Slide Cards */
.speaker-marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2.5rem 0;
    background: rgba(10, 25, 47, 0.6);
    border: 1px solid rgba(56, 189, 248, 0.25);
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.speaker-marquee-track {
    display: inline-flex;
    gap: 2.5rem;
    animation: slideLeftSpeakers 35s linear infinite;
}

.speaker-slide-card {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(2, 12, 27, 0.85);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(56, 189, 248, 0.3);
    min-width: 340px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.speaker-slide-card img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #38bdf8;
}

.speaker-slide-info h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.speaker-slide-info p {
    color: #38bdf8;
    font-size: 0.9rem;
    font-weight: 600;
}


.speaker-slide-card {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    background: rgba(2, 12, 27, 0.85);
    padding: 1.2rem;
    border-radius: 10px;
    border: 1px solid rgba(56, 189, 248, 0.3);
    min-width: 320px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.speaker-slide-card img {
    width: 75px;
    height: 85px;
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid rgba(56, 189, 248, 0.4);
}
/* Card Hover Glow & Glassmorphism Polish */
.card:hover {
    transform: translateY(-5px);
    border-color: rgba(56, 189, 248, 0.4) !important;
    box-shadow: 0 10px 30px -10px rgba(56, 189, 248, 0.15);
    transition: all 0.3s ease;
}
/* Uiverse Flip Card */
.flip-card { background-color: transparent; width: 190px; height: 254px; perspective: 1000px; font-family: sans-serif; }
.title { font-size: 1.5em; font-weight: 900; text-align: center; margin: 0; }
.flip-card-inner { position: relative; width: 100%; height: 100%; text-align: center; transition: transform 0.8s; transform-style: preserve-3d; }
.flip-card:hover .flip-card-inner { transform: rotateY(180deg); }
.flip-card-front, .flip-card-back { box-shadow: 0 8px 14px 0 rgba(0,0,0,0.2); position: absolute; display: flex; flex-direction: column; justify-content: center; width: 100%; height: 100%; -webkit-backface-visibility: hidden; backface-visibility: hidden; border: 1px solid coral; border-radius: 1rem; }
.flip-card-front { background: linear-gradient(120deg, bisque 60%, rgb(255, 231, 222) 88%, rgb(255, 211, 195) 40%, rgba(255, 127, 80, 0.603) 48%); color: coral; }
.flip-card-back { background: linear-gradient(120deg, rgb(255, 174, 145) 30%, coral 88%, bisque 40%, rgb(255, 185, 160) 78%); color: white; transform: rotateY(180deg); }
/* Uiverse Flip Card */
.flip-card {
  background-color: transparent;
  width: 190px;
  height: 254px;
  perspective: 1000px;
  font-family: sans-serif;
}

.title {
  font-size: 1.5em;
  font-weight: 900;
  text-align: center;
  margin: 0;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  box-shadow: 0 8px 14px 0 rgba(0,0,0,0.2);
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border: 1px solid coral;
  border-radius: 1rem;
}

.flip-card-front {
  background: linear-gradient(120deg, bisque 60%, rgb(255, 231, 222) 88%, rgb(255, 211, 195) 40%, rgba(255, 127, 80, 0.603) 48%);
  color: coral;
}

.flip-card-back {
  background: linear-gradient(120deg, rgb(255, 174, 145) 30%, coral 88%, bisque 40%, rgb(255, 185, 160) 78%);
  color: white;
  transform: rotateY(180deg);
}
