/* ============================================
   CSS Variables & Reset
   ============================================ */

:root {
    /* Colors */
    --soft-pink: #FFB6C1;
    --rose-gold: #E8B4B8;
    --cream: #FFF8F0;
    --dusty-rose: #D4A5A5;
    --coral: #FF7F7F;
    --lavender: #E6E6FA;
    --peach: #FFDAB9;
    --mint: #F0FFF0;
    --charcoal: #2C2C2C;
    --soft-gray: #6B6B6B;
    --white: #FFFFFF;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FFB6C1 0%, #E8B4B8 100%);
    --gradient-hero: linear-gradient(135deg, #FFF8F0 0%, #FFE4E1 50%, #FFF8F0 100%);
    --gradient-card: linear-gradient(135deg, #FFFFFF 0%, #FFF8F0 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(212, 165, 165, 0.1);
    --shadow-md: 0 4px 16px rgba(212, 165, 165, 0.15);
    --shadow-lg: 0 8px 32px rgba(212, 165, 165, 0.2);
    --shadow-hover: 0 12px 40px rgba(212, 165, 165, 0.3);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ============================================
   Floating Hearts Background
   ============================================ */

.floating-hearts {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.heart {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: float 15s infinite ease-in-out;
}

.heart:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.heart:nth-child(2) {
    left: 20%;
    animation-delay: 2s;
    animation-duration: 14s;
}

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

.heart:nth-child(4) {
    left: 40%;
    animation-delay: 1s;
    animation-duration: 13s;
}

.heart:nth-child(5) {
    left: 50%;
    animation-delay: 3s;
    animation-duration: 15s;
}

.heart:nth-child(6) {
    left: 60%;
    animation-delay: 5s;
    animation-duration: 17s;
}

.heart:nth-child(7) {
    left: 70%;
    animation-delay: 2.5s;
    animation-duration: 14s;
}

.heart:nth-child(8) {
    left: 80%;
    animation-delay: 4.5s;
    animation-duration: 16s;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.1;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* ============================================
   Header
   ============================================ */

.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: var(--spacing-sm) 0;
    transition: box-shadow var(--transition-normal);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: var(--dusty-rose);
    margin-bottom: 0.25rem;
}

.tagline {
    font-size: 0.875rem;
    color: var(--soft-gray);
    font-weight: 300;
}

.nav {
    display: flex;
    gap: var(--spacing-md);
}

.nav-link {
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--dusty-rose);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-normal);
}

.nav-link:hover::after {
    width: 100%;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
    background: var(--gradient-hero);
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.2) 0%, transparent 70%);
    border-radius: var(--radius-full);
    animation: pulse 4s ease-in-out infinite;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    color: var(--charcoal);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--soft-gray);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.hero-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease;
}

.kiss-icon {
    font-size: 8rem;
    animation: bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(212, 165, 165, 0.3));
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

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

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

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

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--white);
    color: var(--dusty-rose);
    border: 2px solid var(--dusty-rose);
}

.btn-secondary:hover {
    background: var(--dusty-rose);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-quiz {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
}

.btn-quiz:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   Section Titles
   ============================================ */

.section-title {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    text-align: center;
    color: var(--charcoal);
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
}

.section-subtitle {
    text-align: center;
    color: var(--soft-gray);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   Categories Grid
   ============================================ */

.categories {
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 1;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.category-card {
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.category-card:nth-child(1) { animation-delay: 0.1s; }
.category-card:nth-child(2) { animation-delay: 0.2s; }
.category-card:nth-child(3) { animation-delay: 0.3s; }
.category-card:nth-child(4) { animation-delay: 0.4s; }
.category-card:nth-child(5) { animation-delay: 0.5s; }
.category-card:nth-child(6) { animation-delay: 0.6s; }
.category-card:nth-child(7) { animation-delay: 0.7s; }
.category-card:nth-child(8) { animation-delay: 0.8s; }
.category-card:nth-child(9) { animation-delay: 0.9s; }
.category-card:nth-child(10) { animation-delay: 1s; }
.category-card:nth-child(11) { animation-delay: 1.1s; }

.category-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: var(--dusty-rose);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    display: inline-block;
    transition: transform var(--transition-normal);
}

.category-card:hover .card-icon {
    transform: scale(1.2) rotate(5deg);
}

.card-content {
    margin-bottom: var(--spacing-sm);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: var(--spacing-xs);
    font-family: 'Dancing Script', cursive;
}

.card-description {
    color: var(--soft-gray);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.card-stats {
    display: flex;
    gap: var(--spacing-xs);
    font-size: 0.875rem;
    color: var(--dusty-rose);
    font-weight: 600;
}

.card-hover-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left var(--transition-slow);
}

.category-card:hover .card-hover-effect {
    left: 100%;
}

.card-link {
    display: inline-block;
    color: var(--dusty-rose);
    text-decoration: none;
    font-weight: 600;
    margin-top: var(--spacing-sm);
    transition: all var(--transition-fast);
    position: relative;
    z-index: 2;
}

.card-link:hover {
    color: var(--coral);
    transform: translateX(5px);
}

.blog-card {
    background: linear-gradient(135deg, #E6E6FA 0%, #FFF8F0 100%);
}

.blog-card .card-icon {
    font-size: 2.5rem;
}

/* ============================================
   Quizzes Section
   ============================================ */

.quizzes {
    padding: var(--spacing-xl) 0;
    background: var(--white);
    position: relative;
    z-index: 1;
}

.quizzes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.quiz-card {
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.quiz-card:nth-child(1) { animation-delay: 0.2s; }
.quiz-card:nth-child(2) { animation-delay: 0.4s; }
.quiz-card:nth-child(3) { animation-delay: 0.6s; }

.quiz-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--lavender);
}

.quiz-icon {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-sm);
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

.quiz-card h3 {
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: var(--spacing-xs);
    font-family: 'Dancing Script', cursive;
}

.quiz-card p {
    color: var(--soft-gray);
    font-size: 0.9375rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--charcoal);
    color: var(--white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-section h4 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--soft-pink);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--soft-pink);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all var(--transition-fast);
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

.social-links a svg {
    width: 24px;
    height: 24px;
}

.social-link-pinterest:hover {
    color: #BD081C;
    background: rgba(189, 8, 28, 0.2);
}

.social-link-instagram:hover {
    color: #E4405F;
    background: rgba(228, 64, 95, 0.2);
}

.social-link-facebook:hover {
    color: #1877F2;
    background: rgba(24, 119, 242, 0.2);
}

.social-link-tiktok:hover {
    color: #000000;
    background: rgba(255, 255, 255, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .kiss-icon {
        font-size: 5rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .nav {
        gap: var(--spacing-sm);
    }
    
    .nav-link {
        font-size: 0.875rem;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .card-title {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* ============================================
   Ripple Effect
   ============================================ */

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(212, 165, 165, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ============================================
   Spin for Your Kiss Section
   ============================================ */

.spin-kiss-section {
    padding: var(--spacing-xl) 0;
    background: 
        linear-gradient(135deg, #FFF8F0 0%, #FFE4E1 30%, #FFF0F5 60%, #FFF8F0 100%),
        radial-gradient(circle at 50% 50%, rgba(255, 182, 193, 0.1) 0%, transparent 70%);
    position: relative;
    z-index: 1;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.spin-kiss-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 182, 193, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(232, 180, 184, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 20, 147, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: pulseBackground 8s ease-in-out infinite;
}

.spin-kiss-section::after {
    content: '✨';
    position: absolute;
    top: 10%;
    left: 15%;
    font-size: 2rem;
    opacity: 0.3;
    animation: sparkle 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes pulseBackground {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0.2;
        transform: translateY(0) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translateY(-20px) scale(1.2);
    }
}

.spin-kiss-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.spin-kiss-section .section-title {
    font-size: 4rem;
    margin-bottom: var(--spacing-sm);
    color: var(--charcoal);
    text-shadow: 0 3px 15px rgba(255, 182, 193, 0.4);
    font-weight: 700;
}

.spin-kiss-section .section-subtitle {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xl);
    color: var(--soft-gray);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Two-Column Layout */
.spin-kiss-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
    margin-bottom: var(--spacing-lg);
}

.roulette-section-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.kiss-types-section-right {
    display: flex;
    flex-direction: column;
}

.kiss-types-title {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

/* Kiss Types Display */
.kiss-types-display {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    max-height: 600px;
    overflow-y: auto;
    padding: var(--spacing-sm);
    padding-right: var(--spacing-md);
}

.kiss-types-display::-webkit-scrollbar {
    width: 8px;
}

.kiss-types-display::-webkit-scrollbar-track {
    background: rgba(255, 182, 193, 0.1);
    border-radius: 10px;
}

.kiss-types-display::-webkit-scrollbar-thumb {
    background: var(--dusty-rose);
    border-radius: 10px;
}

.kiss-types-display::-webkit-scrollbar-thumb:hover {
    background: var(--coral);
}

.kiss-type-item {
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 248, 240, 0.9) 100%);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: var(--charcoal);
    box-shadow: 
        0 2px 8px rgba(212, 165, 165, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.8);
    border: 2px solid var(--dusty-rose);
    transition: all var(--transition-normal);
    animation: floatUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    cursor: pointer;
}

.kiss-emoji {
    font-size: 2rem;
    flex-shrink: 0;
    transition: transform var(--transition-normal);
}

.kiss-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.kiss-label {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--charcoal);
    transition: color var(--transition-normal);
}

.kiss-desc {
    font-size: 0.875rem;
    color: var(--soft-gray);
    line-height: 1.4;
    transition: color var(--transition-normal);
}

.kiss-type-item::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: left 0.5s;
}

.kiss-type-item:hover::before {
    left: 100%;
}

.kiss-type-item:hover {
    transform: translateX(5px) scale(1.02);
    box-shadow: 
        0 4px 12px rgba(212, 165, 165, 0.4),
        0 0 20px rgba(255, 182, 193, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.9);
    background: var(--gradient-primary);
    border-color: var(--dusty-rose);
    border-width: 3px;
    z-index: 5;
}

.kiss-type-item:hover .kiss-emoji {
    transform: scale(1.2) rotate(5deg);
}

.kiss-type-item:hover .kiss-label,
.kiss-type-item:hover .kiss-desc {
    color: var(--white);
}

/* Animation delays for all 16 items */
.kiss-type-item:nth-child(1) { animation-delay: 0.05s; }
.kiss-type-item:nth-child(2) { animation-delay: 0.1s; }
.kiss-type-item:nth-child(3) { animation-delay: 0.15s; }
.kiss-type-item:nth-child(4) { animation-delay: 0.2s; }
.kiss-type-item:nth-child(5) { animation-delay: 0.25s; }
.kiss-type-item:nth-child(6) { animation-delay: 0.3s; }
.kiss-type-item:nth-child(7) { animation-delay: 0.35s; }
.kiss-type-item:nth-child(8) { animation-delay: 0.4s; }
.kiss-type-item:nth-child(9) { animation-delay: 0.45s; }
.kiss-type-item:nth-child(10) { animation-delay: 0.5s; }
.kiss-type-item:nth-child(11) { animation-delay: 0.55s; }
.kiss-type-item:nth-child(12) { animation-delay: 0.6s; }
.kiss-type-item:nth-child(13) { animation-delay: 0.65s; }
.kiss-type-item:nth-child(14) { animation-delay: 0.7s; }
.kiss-type-item:nth-child(15) { animation-delay: 0.75s; }
.kiss-type-item:nth-child(16) { animation-delay: 0.8s; }

@keyframes floatUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Roulette Container */
.roulette-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: var(--spacing-lg) 0;
    position: relative;
    padding: var(--spacing-md);
    min-height: 600px;
    visibility: visible;
    opacity: 1;
}

.roulette-wrapper {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto var(--spacing-md);
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.1));
    z-index: 2;
    background: transparent;
}

.roulette-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 530px;
    height: 530px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 3;
    pointer-events: none;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            transparent 0deg, transparent 13deg,
            #FFA500 14deg, #FFA500 16deg,
            transparent 17deg, transparent 28deg,
            #FFA500 29deg, #FFA500 31deg,
            transparent 32deg, transparent 43deg,
            #FFA500 44deg, #FFA500 46deg,
            transparent 47deg, transparent 58deg,
            #FFA500 59deg, #FFA500 61deg,
            transparent 62deg, transparent 73deg,
            #FFA500 74deg, #FFA500 76deg,
            transparent 77deg, transparent 88deg,
            #FFA500 89deg, #FFA500 91deg,
            transparent 92deg, transparent 103deg,
            #FFA500 104deg, #FFA500 106deg,
            transparent 107deg, transparent 118deg,
            #FFA500 119deg, #FFA500 121deg,
            transparent 122deg, transparent 133deg,
            #FFA500 134deg, #FFA500 136deg,
            transparent 137deg, transparent 148deg,
            #FFA500 149deg, #FFA500 151deg,
            transparent 152deg, transparent 163deg,
            #FFA500 164deg, #FFA500 166deg,
            transparent 167deg, transparent 178deg,
            #FFA500 179deg, #FFA500 181deg,
            transparent 182deg, transparent 193deg,
            #FFA500 194deg, #FFA500 196deg,
            transparent 197deg, transparent 208deg,
            #FFA500 209deg, #FFA500 211deg,
            transparent 212deg, transparent 223deg,
            #FFA500 224deg, #FFA500 226deg,
            transparent 227deg, transparent 238deg,
            #FFA500 239deg, #FFA500 241deg,
            transparent 242deg, transparent 253deg,
            #FFA500 254deg, #FFA500 256deg,
            transparent 257deg, transparent 268deg,
            #FFA500 269deg, #FFA500 271deg,
            transparent 272deg, transparent 283deg,
            #FFA500 284deg, #FFA500 286deg,
            transparent 287deg, transparent 298deg,
            #FFA500 299deg, #FFA500 301deg,
            transparent 302deg, transparent 313deg,
            #FFA500 314deg, #FFA500 316deg,
            transparent 317deg, transparent 328deg,
            #FFA500 329deg, #FFA500 331deg,
            transparent 332deg, transparent 343deg,
            #FFA500 344deg, #FFA500 346deg,
            transparent 347deg, transparent 358deg);
    mask: radial-gradient(circle, transparent 240px, black 245px, black 250px, transparent 255px);
    -webkit-mask: radial-gradient(circle, transparent 240px, black 245px, black 250px, transparent 255px);
    filter: blur(0.5px);
    animation: rimLights 2s ease-in-out infinite;
}

@keyframes rimLights {
    0%, 100% {
        opacity: 1;
        filter: blur(0.5px) drop-shadow(0 0 3px #FFA500);
    }
    50% {
        opacity: 0.75;
        filter: blur(0.5px) drop-shadow(0 0 5px #FFA500);
    }
}

.roulette-wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    background: 
        conic-gradient(
            from -90deg,
            /* 16 segments, 22.5 degrees each - Pastel colors */
            /* Pink shades */
            #FFB6C1 0deg, #FFB6C1 22.5deg,
            /* Yellow shades */
            #FFD9B3 22.5deg, #FFD9B3 45deg,
            /* Blue shades */
            #B8E6FF 45deg, #B8E6FF 67.5deg,
            /* Green shades */
            #B8FFD4 67.5deg, #B8FFD4 90deg,
            /* Purple shades */
            #D4B8FF 90deg, #D4B8FF 112.5deg,
            /* Pink shades */
            #FFB6C1 112.5deg, #FFB6C1 135deg,
            /* Yellow shades */
            #FFD9B3 135deg, #FFD9B3 157.5deg,
            /* Blue shades */
            #B8E6FF 157.5deg, #B8E6FF 180deg,
            /* Green shades */
            #B8FFD4 180deg, #B8FFD4 202.5deg,
            /* Purple shades */
            #D4B8FF 202.5deg, #D4B8FF 225deg,
            /* Pink shades */
            #FFB6C1 225deg, #FFB6C1 247.5deg,
            /* Yellow shades */
            #FFD9B3 247.5deg, #FFD9B3 270deg,
            /* Blue shades */
            #B8E6FF 270deg, #B8E6FF 292.5deg,
            /* Green shades */
            #B8FFD4 292.5deg, #B8FFD4 315deg,
            /* Purple shades */
            #D4B8FF 315deg, #D4B8FF 337.5deg,
            /* Pink shades */
            #FFB6C1 337.5deg, #FFB6C1 360deg
        );
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.08),
        inset 0 2px 4px rgba(255, 255, 255, 0.3),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
    transform: rotate(0deg);
    z-index: 1;
    border: 8px solid rgba(255, 255, 255, 0.9);
    padding: 0;
    transform-origin: center center;
    background-clip: padding-box;
}

/* Divider lines removed as requested */

.roulette-center-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35%;
    height: 35%;
    min-width: 150px;
    min-height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.15),
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 2px 4px rgba(255, 255, 255, 0.8),
        inset 0 -2px 4px rgba(0, 0, 0, 0.05);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #FF1493;
    letter-spacing: 0.3px;
    text-transform: none;
    border: 3px solid rgba(255, 20, 147, 0.2);
    font-family: 'Dancing Script', cursive;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.75rem;
    margin: 0;
    text-align: center;
    line-height: 1.3;
    animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 
            0 6px 20px rgba(0, 0, 0, 0.15),
            0 2px 8px rgba(0, 0, 0, 0.1),
            inset 0 2px 4px rgba(255, 255, 255, 0.8),
            inset 0 -2px 4px rgba(0, 0, 0, 0.05);
        border-color: rgba(255, 20, 147, 0.2);
    }
    50% {
        box-shadow: 
            0 8px 24px rgba(0, 0, 0, 0.18),
            0 3px 10px rgba(0, 0, 0, 0.12),
            inset 0 2px 4px rgba(255, 255, 255, 0.8),
            inset 0 -2px 4px rgba(0, 0, 0, 0.05);
        border-color: rgba(255, 20, 147, 0.35);
    }
}

.roulette-center-button:hover:not(:disabled) {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    box-shadow: 
        0 8px 28px rgba(0, 0, 0, 0.2),
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.9),
        inset 0 -2px 4px rgba(0, 0, 0, 0.08);
    transform: translate(-50%, -50%) scale(1.05);
    border-color: rgba(255, 20, 147, 0.4);
    color: #FF1493;
}

.roulette-center-button:active {
    transform: translate(-50%, -50%) scale(0.95);
}

.roulette-center-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: translate(-50%, -50%);
    animation: none;
    background: linear-gradient(135deg, #e0e0e0 0%, #d0d0d0 100%);
    color: #888888;
    border-color: rgba(136, 136, 136, 0.2);
}

.roulette-wheel.spinning {
    animation: spin 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.2),
        inset 0 0 30px rgba(0, 0, 0, 0.08);
}

/* Classic style - removed wheelGlow animation */

.roulette-glow {
    display: none; /* Classic style - removed glow effect */
}

.roulette-segment {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform-origin: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--charcoal);
    text-shadow: 1px 1px 4px rgba(255, 255, 255, 0.8), 0 0 6px rgba(255, 255, 255, 0.5);
    padding: 0;
    box-sizing: border-box;
    text-align: center;
    line-height: 1.3;
    overflow: visible;
    z-index: 2;
    pointer-events: none;
    background: transparent;
}

/* Position and rotate content for each segment (16 segments, 22.5 degrees each) */
.roulette-segment:nth-child(1) { transform: rotate(0deg); }
.roulette-segment:nth-child(1) > * {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(11.25deg) translateY(-35%);
    z-index: 1;
    font-size: 2.5rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.roulette-segment:nth-child(2) { transform: rotate(22.5deg); }
.roulette-segment:nth-child(2) > * {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(33.75deg) translateY(-35%);
    z-index: 1;
    font-size: 2.5rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.roulette-segment:nth-child(3) { transform: rotate(45deg); }
.roulette-segment:nth-child(3) > * {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(56.25deg) translateY(-35%);
    z-index: 1;
    font-size: 2.5rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.roulette-segment:nth-child(4) { transform: rotate(67.5deg); }
.roulette-segment:nth-child(4) > * {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(78.75deg) translateY(-35%);
    z-index: 1;
    font-size: 2.5rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.roulette-segment:nth-child(5) { transform: rotate(90deg); }
.roulette-segment:nth-child(5) > * {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(101.25deg) translateY(-35%);
    z-index: 1;
    font-size: 2.5rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.roulette-segment:nth-child(6) { transform: rotate(112.5deg); }
.roulette-segment:nth-child(6) > * {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(123.75deg) translateY(-35%);
    z-index: 1;
    font-size: 2.5rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.roulette-segment:nth-child(7) { transform: rotate(135deg); }
.roulette-segment:nth-child(7) > * {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(146.25deg) translateY(-35%);
    z-index: 1;
    font-size: 2.5rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.roulette-segment:nth-child(8) { transform: rotate(157.5deg); }
.roulette-segment:nth-child(8) > * {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(168.75deg) translateY(-35%);
    z-index: 1;
    font-size: 2.5rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.roulette-segment:nth-child(9) { transform: rotate(180deg); }
.roulette-segment:nth-child(9) > * {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(191.25deg) translateY(-35%);
    z-index: 1;
    font-size: 2.5rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.roulette-segment:nth-child(10) { transform: rotate(202.5deg); }
.roulette-segment:nth-child(10) > * {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(213.75deg) translateY(-35%);
    z-index: 1;
    font-size: 2.5rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.roulette-segment:nth-child(11) { transform: rotate(225deg); }
.roulette-segment:nth-child(11) > * {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(236.25deg) translateY(-35%);
    z-index: 1;
    font-size: 2.5rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.roulette-segment:nth-child(12) { transform: rotate(247.5deg); }
.roulette-segment:nth-child(12) > * {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(258.75deg) translateY(-35%);
    z-index: 1;
    font-size: 2.5rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.roulette-segment:nth-child(13) { transform: rotate(270deg); }
.roulette-segment:nth-child(13) > * {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(281.25deg) translateY(-35%);
    z-index: 1;
    font-size: 2.5rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.roulette-segment:nth-child(14) { transform: rotate(292.5deg); }
.roulette-segment:nth-child(14) > * {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(303.75deg) translateY(-35%);
    z-index: 1;
    font-size: 2.5rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.roulette-segment:nth-child(15) { transform: rotate(315deg); }
.roulette-segment:nth-child(15) > * {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(326.25deg) translateY(-35%);
    z-index: 1;
    font-size: 2.5rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.roulette-segment:nth-child(16) { transform: rotate(337.5deg); }
.roulette-segment:nth-child(16) > * {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(348.75deg) translateY(-35%);
    z-index: 1;
    font-size: 2.5rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.roulette-pointer {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 18px solid #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    z-index: 15;
}

/* Classic style - removed pointer animations */

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(1800deg);
    }
}

/* Spin Button */
.btn-spin {
    background: linear-gradient(135deg, #FFB6C1 0%, #E8B4B8 50%, #FF7F7F 100%);
    color: var(--white);
    border: none;
    padding: 1.5rem 3.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 
        0 10px 30px rgba(212, 165, 165, 0.5),
        0 0 40px rgba(255, 182, 193, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    font-family: 'Dancing Script', cursive;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 320px;
    justify-content: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: buttonShimmer 3s ease-in-out infinite;
}

.btn-spin::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-spin::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s;
}

.btn-spin:hover::before {
    width: 400px;
    height: 400px;
}

.btn-spin:hover::after {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.btn-spin:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 
        0 15px 40px rgba(212, 165, 165, 0.6),
        0 0 60px rgba(255, 182, 193, 0.6),
        inset 0 2px 4px rgba(255, 255, 255, 0.5),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #FF7F7F 0%, #FFB6C1 50%, #E8B4B8 100%);
}

.btn-spin:active {
    transform: translateY(-3px) scale(1.05);
}

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

@keyframes buttonShimmer {
    0%, 100% {
        box-shadow: 
            0 10px 30px rgba(212, 165, 165, 0.5),
            0 0 40px rgba(255, 182, 193, 0.4),
            inset 0 2px 4px rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow: 
            0 10px 30px rgba(212, 165, 165, 0.6),
            0 0 50px rgba(255, 20, 147, 0.5),
            inset 0 2px 4px rgba(255, 255, 255, 0.4);
    }
}

.spin-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    border-radius: 50px;
}

.spin-particles::before,
.spin-particles::after {
    content: '✨';
    position: absolute;
    font-size: 1.5rem;
    opacity: 0;
    animation: particleFloat 2s ease-in-out infinite;
}

.spin-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.spin-particles::after {
    top: 20%;
    right: 10%;
    animation-delay: 1s;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-30px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-60px) scale(0);
    }
}

.spin-text {
    position: relative;
    z-index: 1;
}

.spin-icon {
    position: relative;
    z-index: 1;
    font-size: 1.75rem;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Spin Status & Countdown */
.spin-status {
    margin: var(--spacing-lg) 0;
    animation: fadeInUp 0.6s ease;
    text-align: center;
}

.countdown-container {
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--dusty-rose);
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
}

.countdown-text {
    font-size: 1.25rem;
    color: var(--charcoal);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.countdown-timer {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dusty-rose);
    font-family: 'Nunito', sans-serif;
    letter-spacing: 2px;
    margin: var(--spacing-md) 0;
    text-shadow: 0 2px 4px rgba(212, 165, 165, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.countdown-hint {
    color: var(--soft-gray);
    font-size: 1rem;
    margin: var(--spacing-md) 0;
    font-style: italic;
}

.btn-register {
    margin-top: var(--spacing-sm);
    animation: buttonShimmer 3s ease-in-out infinite;
}

/* Result Display */
.spin-result {
    margin: var(--spacing-lg) 0;
    animation: fadeInUp 0.6s ease;
    text-align: center;
}

.result-content {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--dusty-rose);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
}

.result-effect-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: visible;
    z-index: 1;
}

.result-emoji {
    font-size: 5rem;
    margin-bottom: var(--spacing-sm);
    animation: bounce 1s ease;
    position: relative;
    z-index: 2;
}

.result-title {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-bottom: var(--spacing-sm);
}

.result-message {
    color: var(--soft-gray);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.share-section {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 2px dashed var(--dusty-rose);
}

.share-link-container {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    flex-wrap: wrap;
    justify-content: center;
}

.share-link-input {
    flex: 1;
    min-width: 250px;
    padding: 0.75rem 1rem;
    border: 2px solid var(--dusty-rose);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    background: var(--cream);
    color: var(--charcoal);
}

.btn-copy {
    padding: 0.75rem 1.5rem;
    background: var(--dusty-rose);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 600;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-copy:hover {
    background: var(--coral);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.share-hint {
    color: var(--soft-gray);
    font-size: 0.875rem;
    font-style: italic;
    margin-top: var(--spacing-xs);
}

/* Social Media Share Buttons */
.social-share-buttons {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 2px dashed var(--dusty-rose);
}

.social-share-title {
    color: var(--charcoal);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.social-buttons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.social-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 0.5rem;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    background: var(--white);
    cursor: pointer;
    transition: all var(--transition-normal);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--charcoal);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.social-btn::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: left 0.5s;
}

.social-btn:hover::before {
    left: 100%;
}

.social-icon {
    font-size: 2rem;
    transition: transform var(--transition-normal);
    display: block;
}

.social-name {
    font-size: 0.75rem;
    white-space: nowrap;
}

/* Facebook */
.social-facebook {
    border-color: #1877F2;
}

.social-facebook:hover {
    background: #1877F2;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

.social-facebook:hover .social-icon {
    transform: scale(1.2) rotate(5deg);
}

/* Instagram */
.social-instagram {
    border-color: #E4405F;
    color: var(--charcoal);
}

.social-instagram:hover {
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCAF45 100%);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(253, 29, 29, 0.4);
}

.social-instagram:hover .social-icon {
    transform: scale(1.2) rotate(-5deg);
}

/* TikTok */
.social-tiktok {
    border-color: #000000;
}

.social-tiktok:hover {
    background: #000000;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.social-tiktok:hover .social-icon {
    transform: scale(1.2) rotate(5deg);
}

/* Pinterest */
.social-pinterest {
    border-color: #BD081C;
}

.social-pinterest:hover {
    background: #BD081C;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(189, 8, 28, 0.4);
}

.social-pinterest:hover .social-icon {
    transform: scale(1.2) rotate(-5deg);
}

/* Snapchat */
.social-snapchat {
    border-color: #FFFC00;
    background: #FFFC00;
    color: #000;
}

.social-snapchat:hover {
    background: #FFFC00;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 252, 0, 0.5);
}

.social-snapchat:hover .social-icon {
    transform: scale(1.2) rotate(5deg);
}

/* ============================================
   Result Effect Animations
   ============================================ */

/* Celebrate Effect - Daily Kiss */
.effect-celebrate .result-content {
    border-color: #FFB6C1;
    box-shadow: 0 8px 32px rgba(255, 182, 193, 0.4), 0 0 40px rgba(255, 182, 193, 0.3);
    animation: celebratePulse 2s ease-in-out infinite;
}

.effect-celebrate .result-emoji {
    animation: celebrateBounce 1s ease infinite;
}

.effect-celebrate .result-effect-particles::before,
.effect-celebrate .result-effect-particles::after {
    content: '💋';
    position: absolute;
    font-size: 2rem;
    opacity: 0;
    animation: celebrateFloat 3s ease-in-out infinite;
}

.effect-celebrate .result-effect-particles::before {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.effect-celebrate .result-effect-particles::after {
    top: 10%;
    right: 10%;
    animation-delay: 1s;
}

@keyframes celebratePulse {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(255, 182, 193, 0.4), 0 0 40px rgba(255, 182, 193, 0.3);
    }
    50% {
        box-shadow: 0 8px 32px rgba(255, 182, 193, 0.6), 0 0 60px rgba(255, 20, 147, 0.5);
    }
}

@keyframes celebrateBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

@keyframes celebrateFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: translateY(-50px) scale(1) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) scale(0) rotate(360deg);
    }
}

/* Death Effect - Death Kiss */
.effect-death .result-content {
    border-color: #2C2C2C;
    box-shadow: 0 8px 32px rgba(44, 44, 44, 0.5), 0 0 40px rgba(0, 0, 0, 0.4);
    animation: deathShake 0.5s ease-in-out infinite;
    background: linear-gradient(135deg, #1a1a1a 0%, #2C2C2C 100%);
    color: #fff;
}

.effect-death .result-emoji {
    animation: deathFloat 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.5));
}

.effect-death .result-title,
.effect-death .result-message {
    color: #fff;
}

.effect-death .result-effect-particles::before,
.effect-death .result-effect-particles::after {
    content: '💀';
    position: absolute;
    font-size: 1.5rem;
    opacity: 0;
    animation: deathFloatParticle 3s ease-in-out infinite;
}

.effect-death .result-effect-particles::before {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.effect-death .result-effect-particles::after {
    top: 20%;
    right: 15%;
    animation-delay: 1.5s;
}

@keyframes deathShake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px) rotate(-1deg);
    }
    75% {
        transform: translateX(5px) rotate(1deg);
    }
}

@keyframes deathFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.5));
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
        filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.8));
    }
}

@keyframes deathFloatParticle {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0) rotate(0deg);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-40px) scale(1) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: translateY(-80px) scale(0) rotate(360deg);
    }
}

/* Revenge Effect - Revenge Kiss */
.effect-revenge .result-content {
    border-color: #FF7F7F;
    box-shadow: 0 8px 32px rgba(255, 127, 127, 0.5), 0 0 40px rgba(255, 0, 0, 0.4);
    animation: revengeFlicker 0.3s ease-in-out infinite;
}

.effect-revenge .result-emoji {
    animation: revengePulse 1s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.6));
}

.effect-revenge .result-effect-particles::before,
.effect-revenge .result-effect-particles::after {
    content: '🔥';
    position: absolute;
    font-size: 2rem;
    opacity: 0;
    animation: revengeFire 2s ease-in-out infinite;
}

.effect-revenge .result-effect-particles::before {
    top: 15%;
    left: 20%;
    animation-delay: 0s;
}

.effect-revenge .result-effect-particles::after {
    top: 15%;
    right: 20%;
    animation-delay: 1s;
}

@keyframes revengeFlicker {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(255, 127, 127, 0.5), 0 0 40px rgba(255, 0, 0, 0.4);
    }
    50% {
        box-shadow: 0 8px 32px rgba(255, 127, 127, 0.7), 0 0 60px rgba(255, 0, 0, 0.6);
    }
}

@keyframes revengePulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.6));
    }
    50% {
        transform: scale(1.15);
        filter: drop-shadow(0 0 25px rgba(255, 0, 0, 0.9));
    }
}

@keyframes revengeFire {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: translateY(-30px) scale(1.2) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: translateY(-60px) scale(0) rotate(360deg);
    }
}

/* Jealous Effect - Jealous Kiss */
.effect-jealous .result-content {
    border-color: #9370DB;
    box-shadow: 0 8px 32px rgba(147, 112, 219, 0.5), 0 0 40px rgba(147, 112, 219, 0.4);
    animation: jealousGlow 2s ease-in-out infinite;
}

.effect-jealous .result-emoji {
    animation: jealousRotate 2s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(147, 112, 219, 0.6));
}

.effect-jealous .result-effect-particles::before,
.effect-jealous .result-effect-particles::after {
    content: '😈';
    position: absolute;
    font-size: 1.8rem;
    opacity: 0;
    animation: jealousFloat 3s ease-in-out infinite;
}

.effect-jealous .result-effect-particles::before {
    top: 12%;
    left: 12%;
    animation-delay: 0s;
}

.effect-jealous .result-effect-particles::after {
    top: 12%;
    right: 12%;
    animation-delay: 1.5s;
}

@keyframes jealousGlow {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(147, 112, 219, 0.5), 0 0 40px rgba(147, 112, 219, 0.4);
    }
    50% {
        box-shadow: 0 8px 32px rgba(147, 112, 219, 0.7), 0 0 60px rgba(138, 43, 226, 0.6);
    }
}

@keyframes jealousRotate {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        filter: drop-shadow(0 0 15px rgba(147, 112, 219, 0.6));
    }
    25% {
        transform: rotate(-5deg) scale(1.1);
        filter: drop-shadow(0 0 20px rgba(147, 112, 219, 0.8));
    }
    75% {
        transform: rotate(5deg) scale(1.1);
        filter: drop-shadow(0 0 20px rgba(147, 112, 219, 0.8));
    }
}

@keyframes jealousFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: translateY(-45px) scale(1.1) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: translateY(-90px) scale(0) rotate(360deg);
    }
}

/* Mystery Effect - Mystery Kiss */
.effect-mystery .result-content {
    border-color: #FFD700;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.4);
    animation: mysteryShimmer 2s ease-in-out infinite;
}

.effect-mystery .result-emoji {
    animation: mysteryPulse 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
}

.effect-mystery .result-effect-particles::before,
.effect-mystery .result-effect-particles::after {
    content: '✨';
    position: absolute;
    font-size: 2rem;
    opacity: 0;
    animation: mysterySparkle 2.5s ease-in-out infinite;
}

.effect-mystery .result-effect-particles::before {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.effect-mystery .result-effect-particles::after {
    top: 10%;
    right: 15%;
    animation-delay: 1.25s;
}

@keyframes mysteryShimmer {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(255, 215, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.4);
    }
    50% {
        box-shadow: 0 8px 32px rgba(255, 215, 0, 0.7), 0 0 60px rgba(255, 165, 0, 0.6);
    }
}

@keyframes mysteryPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
    }
    50% {
        transform: scale(1.2);
        filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.9));
    }
}

@keyframes mysterySparkle {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: translateY(-50px) scale(1.3) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) scale(0) rotate(360deg);
    }
}

/* CTAs */
.spin-ctas {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin: var(--spacing-lg) 0;
}

.btn-cta {
    min-width: 200px;
    text-align: center;
    font-size: 1.125rem;
    padding: 1rem 2rem;
    position: relative;
    overflow: hidden;
}

.btn-cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-cta:hover::after {
    width: 300px;
    height: 300px;
}

/* Closing Line */
.closing-line {
    text-align: center;
    font-size: 1.5rem;
    font-family: 'Dancing Script', cursive;
    color: var(--charcoal);
    margin-top: var(--spacing-lg);
    font-style: italic;
    opacity: 0.9;
    animation: fadeIn 1s ease 0.5s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 0.9;
    }
}

/* ============================================
   Activity Stats Section
   ============================================ */

.activity-stats {
    padding: var(--spacing-xl) 0;
    background: var(--white);
    position: relative;
    z-index: 1;
}

.stats-box {
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
    max-width: 600px;
    margin: 0 auto;
    border: 2px solid var(--dusty-rose);
    text-align: center;
    transition: all var(--transition-normal);
}

.stats-box:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.stats-title {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.stats-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    padding: var(--spacing-md) 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.02);
}

.stat-label {
    font-size: 1rem;
    color: var(--soft-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dusty-rose);
    line-height: 1.2;
    font-family: 'Nunito', sans-serif;
    text-shadow: 0 2px 4px rgba(212, 165, 165, 0.2);
    transition: all var(--transition-normal);
}

.stat-item:hover .stat-value {
    color: var(--coral);
    transform: scale(1.05);
}

/* Responsive Design for Stats */
@media (max-width: 768px) {
    .stats-title {
        font-size: 2rem;
    }
    
    .stat-value {
        font-size: 2.5rem;
    }
    
    .stats-content {
        gap: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .stats-box {
        padding: var(--spacing-md);
    }
    
    .stats-title {
        font-size: 1.75rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.875rem;
    }
}

/* Responsive Design for Roulette */
@media (max-width: 768px) {
    .spin-kiss-section {
        min-height: auto;
        padding: var(--spacing-lg) 0;
    }
    
    .spin-kiss-section .section-title {
        font-size: 2.5rem;
    }
    
    .spin-kiss-section .section-subtitle {
        font-size: 1.1rem;
    }
    
    .spin-kiss-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .kiss-types-section-right {
        order: -1;
    }
    
    .kiss-types-title {
        font-size: 2rem;
    }
    
    .kiss-types-display {
        max-height: 300px;
    }
    
    .roulette-wrapper {
        width: 380px;
        height: 380px;
    }
    
    .roulette-segment {
        font-size: 0.9rem;
    }
    
    .roulette-segment:nth-child(n) > * {
        font-size: 2rem;
    }
    
    .btn-spin {
        font-size: 1.5rem;
        padding: 1.25rem 2.5rem;
        min-width: 280px;
    }
    
    .result-emoji {
        font-size: 4rem;
    }
    
    .result-title {
        font-size: 2rem;
    }
    
    .kiss-type-item {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    .kiss-emoji {
        font-size: 1.5rem;
    }
    
    .kiss-label {
        font-size: 1rem;
    }
    
    .kiss-desc {
        font-size: 0.8rem;
    }
    
    .spin-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .spin-kiss-section .section-title {
        font-size: 2rem;
    }
    
    .spin-kiss-section .section-subtitle {
        font-size: 1rem;
    }
    
    .spin-kiss-layout {
        gap: var(--spacing-md);
    }
    
    .kiss-types-title {
        font-size: 1.75rem;
    }
    
    .kiss-types-display {
        max-height: 250px;
    }
    
    .roulette-wrapper {
        width: 320px;
        height: 320px;
    }
    
    .roulette-segment {
        font-size: 0.8rem;
    }
    
    .roulette-segment:nth-child(n) > * {
        font-size: 1.75rem;
    }
    
    .btn-spin {
        font-size: 1.25rem;
        padding: 1rem 2rem;
        min-width: 240px;
    }
    
    .closing-line {
        font-size: 1.25rem;
    }
    
    .kiss-type-item {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
    }
    
    .kiss-emoji {
        font-size: 1.25rem;
    }
    
    .kiss-label {
        font-size: 0.9rem;
    }
    
    .kiss-desc {
        font-size: 0.75rem;
    }
    
    .social-buttons-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-xs);
    }
    
    .social-btn {
        padding: 0.5rem 0.25rem;
    }
    
    .social-icon {
        font-size: 1.5rem;
    }
    
    .social-name {
        font-size: 0.65rem;
    }
}

