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

:root {
    --primary-color: #ff4757;
    --secondary-color: #ff6b81;
    --accent-color: #ff8fa3;
    --dark-color: #2d3436;
    --light-color: #ffffff;
    --gray-color: #636e72;
    --light-gray: #f8f9fa;
    --border-radius: 16px;
    --shadow: 0 10px 30px rgba(255, 71, 87, 0.15);
    --shadow-hover: 0 15px 40px rgba(255, 71, 87, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background: linear-gradient(135deg, #fff5f7 0%, #fff 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--light-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.heart-icon {
    font-size: 2rem;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    10% { transform: scale(1.1); }
    20% { transform: scale(1); }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 4rem 0 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Calculator Section */
.calculator-section {
    padding: 3rem 0;
}

.calculator-card {
    background: var(--light-color);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.calculator-card h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.calculator-intro {
    text-align: center;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.love-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-group label {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1rem;
}

.input-group input {
    padding: 1rem;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 71, 87, 0.1);
}

.hearts-divider {
    text-align: center;
    font-size: 2rem;
    margin: 0.5rem 0;
}

.calculate-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--light-color);
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(255, 71, 87, 0.3);
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 71, 87, 0.4);
}

.calculate-btn:active {
    transform: translateY(0);
}

/* Result Container */
.result-container {
    animation: fadeIn 0.5s;
}

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

/* Result Card - matching image style */
.result-card {
    background: linear-gradient(135deg, #ff0844 0%, #ffb199 50%, #ff0844 100%);
    border-radius: 20px;
    padding: 3px;
    margin-bottom: 2rem;
    box-shadow: 0 20px 60px rgba(255, 8, 68, 0.3);
    position: relative;
    overflow: hidden;
}

/* Floating hearts background */
.result-card::before {
    content: '💕 💗 💖 💝 💓 💘 💕 💗 💖';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 3rem;
    opacity: 0.08;
    pointer-events: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    z-index: 0;
}

.result-card > * {
    position: relative;
    z-index: 1;
}

/* Result Header - gradient banner */
.result-header {
    background: linear-gradient(135deg, #ff0844 0%, #ff4757 100%);
    padding: 1rem;
    text-align: center;
    border-radius: 18px 18px 0 0;
}

.result-header-text {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Result Body */
.result-body {
    background: white;
    padding: 1.5rem 1.5rem 1.8rem;
    border-radius: 0 0 18px 18px;
}

/* Names Section */
.result-names-section {
    text-align: center;
    margin-bottom: 1.2rem;
}

.result-name-1,
.result-name-2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3436;
    margin: 0.4rem 0;
}

.result-heart-big {
    font-size: 2.5rem;
    margin: 0.2rem 0;
    animation: heartPulse 1.5s infinite;
}

@keyframes heartPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Score Section */
.result-score-section {
    display: flex;
    justify-content: center;
    margin: 1.2rem 0;
}

.result-score-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff5f7 0%, #ffe0e6 100%);
    border: 6px solid #ff0844;
    box-shadow: 0 0 0 3px #ff6b81, 0 8px 20px rgba(255, 8, 68, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.result-score-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ff0844;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.result-score-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #636e72;
    letter-spacing: 1.5px;
}

/* Status Badge */
.result-status-badge {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff0844;
    margin: 1rem 0;
    padding: 0.7rem;
    background: linear-gradient(135deg, #fff5f7 0%, #ffe0e6 100%);
    border-radius: 10px;
    border: 2px solid #ff6b81;
}

/* Message Section */
.result-message-section {
    text-align: center;
    margin-top: 1rem;
}

.result-message {
    font-size: 1rem;
    color: #636e72;
    line-height: 1.6;
    margin: 0;
}

/* Website URL Section */
.result-website {
    text-align: center;
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 2px solid #ffe0e6;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.website-icon {
    font-size: 1.2rem;
}

.website-url {
    font-size: 1rem;
    font-weight: 700;
    color: #ff0844;
    letter-spacing: 0.5px;
}

.try-again-btn {
    background: var(--light-gray);
    color: var(--dark-color);
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.try-again-btn:hover {
    background: #e8eaed;
    transform: translateY(-1px);
}

/* Share Section */
.share-section {
    margin: 2rem 0;
    width: 100%;
}

.share-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--light-color);
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
    width: 100%;
    max-width: 400px;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.share-options {
    margin-top: 1.5rem;
    animation: fadeIn 0.5s;
}

.generated-image-container {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.generated-image-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(255, 8, 68, 0.2);
    border: 2px solid rgba(255, 8, 68, 0.1);
}

.share-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.action-btn {
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--light-color);
}

.download-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.twitter-btn {
    background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
}

.facebook-btn {
    background: linear-gradient(135deg, #1877f2 0%, #0c63d4 100%);
}

.copy-btn {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.action-btn:active {
    transform: translateY(0);
}

.share-btn-native {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    grid-column: 1 / -1;
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.share-tip {
    text-align: center;
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-top: 1rem;
    padding: 0.8rem;
    background: #fff3cd;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}

/* Loading Indicator */
.loading-indicator {
    text-align: center;
    padding: 2rem 1rem;
    animation: fadeIn 0.3s;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    border: 4px solid rgba(255, 8, 68, 0.1);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

/* Action Buttons Container */
.action-buttons-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.primary-action-btn {
    flex: 1;
    min-width: 180px;
    max-width: 250px;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.primary-action-btn .btn-icon {
    font-size: 1.3rem;
}

.primary-action-btn .btn-text {
    font-size: 1rem;
}

.primary-action-btn.download-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.primary-action-btn.download-btn:hover {
    background: linear-gradient(135deg, #5568d3 0%, #663a8e 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.primary-action-btn.share-btn {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
}

.primary-action-btn.share-btn:hover {
    background: linear-gradient(135deg, #3da863 0%, #2f8a57 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(72, 187, 120, 0.4);
}

.primary-action-btn:active {
    transform: translateY(0);
}

.primary-action-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Share Menu */
.share-menu {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    border: 2px solid #dee2e6;
    animation: slideDown 0.3s ease-out;
}

/* Fallback for browsers that don't respect inline styles */
.share-menu-visible {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

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

.share-menu-title {
    color: var(--dark-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    text-align: center;
}

.share-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.share-option-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.2rem 1rem;
    border: 2px solid transparent;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.share-option-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.share-option-btn .share-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.share-option-btn .share-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.share-option-btn .share-hint {
    font-size: 0.75rem;
    color: var(--gray-color);
}

.share-option-btn.native-share {
    border-color: #667eea;
}

.share-option-btn.native-share:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.share-option-btn.native-share:hover .share-label,
.share-option-btn.native-share:hover .share-hint {
    color: white;
}

.share-option-btn.twitter-share {
    border-color: #1da1f2;
}

.share-option-btn.twitter-share:hover {
    background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
}

.share-option-btn.twitter-share:hover .share-label,
.share-option-btn.twitter-share:hover .share-hint {
    color: white;
}

.share-option-btn.facebook-share {
    border-color: #1877f2;
}

.share-option-btn.facebook-share:hover {
    background: linear-gradient(135deg, #1877f2 0%, #0c63d4 100%);
}

.share-option-btn.facebook-share:hover .share-label,
.share-option-btn.facebook-share:hover .share-hint {
    color: white;
}

.share-option-btn.copy-share {
    border-color: #48bb78;
}

.share-option-btn.copy-share:hover {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
}

.share-option-btn.copy-share:hover .share-label,
.share-option-btn.copy-share:hover .share-hint {
    color: white;
}

.share-menu-tip {
    text-align: center;
    color: var(--gray-color);
    font-size: 0.85rem;
    margin: 0;
    padding: 0.8rem;
    background: #fff3cd;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}

/* Examples Section */
.examples-section {
    max-width: 900px;
    margin: 4rem auto 0;
    text-align: center;
}

.examples-section h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.examples-section > p {
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.example-card {
    background: var(--light-color);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.example-card:hover {
    transform: translateY(-5px);
}

.example-names {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
}

.example-score {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.example-label {
    font-size: 0.9rem;
    color: var(--gray-color);
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.about-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 3rem;
}

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

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-color);
}

.about-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
}

/* Tips Section */
.tips-section {
    padding: 5rem 0;
}

.tips-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 3rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.tip-card {
    background: var(--light-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

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

.tip-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tip-card h3 {
    color: var(--dark-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.tip-card p {
    color: var(--gray-color);
    line-height: 1.8;
}

.tips-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    color: var(--light-color);
}

.tips-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.tips-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: var(--light-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--gray-color);
    line-height: 1.8;
}

/* Footer */
footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: #b2bec3;
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #b2bec3;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #404040;
    color: #b2bec3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .calculator-card {
        padding: 2rem 1.5rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .examples-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Result Card Tablet */
    .result-header-text {
        font-size: 1.2rem;
    }
    
    .result-name-1,
    .result-name-2 {
        font-size: 1.4rem;
    }
    
    .result-heart-big {
        font-size: 2.2rem;
    }
    
    .result-score-circle {
        width: 140px;
        height: 140px;
        border: 5px solid #ff0844;
        box-shadow: 0 0 0 2.5px #ff6b81, 0 6px 15px rgba(255, 8, 68, 0.3);
    }
    
    .result-score-number {
        font-size: 2.5rem;
    }
    
    .result-score-label {
        font-size: 0.75rem;
    }
    
    .result-status-badge {
        font-size: 1.2rem;
        padding: 0.6rem;
    }
    
    .result-message {
        font-size: 0.95rem;
    }
    
    .website-url {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .nav-links {
        gap: 0.5rem;
        font-size: 0.9rem;
    }
    
    .calculator-card h2 {
        font-size: 1.5rem;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
    }
    
    .about-section h2,
    .tips-section h2,
    .faq-section h2 {
        font-size: 2rem;
    }
    
    .share-buttons {
        grid-template-columns: 1fr;
    }
    
    .action-buttons-container {
        flex-direction: column;
    }
    
    .primary-action-btn {
        max-width: 100%;
        width: 100%;
    }
    
    .share-menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .share-option-btn {
        padding: 1rem 0.8rem;
    }
    
    .share-btn {
        font-size: 1rem;
        padding: 0.9rem 1.5rem;
    }
    
    .action-btn {
        font-size: 0.9rem;
    }
    
    /* Result Card Mobile */
    .result-header {
        padding: 0.8rem;
    }
    
    .result-header-text {
        font-size: 1.1rem;
    }
    
    .result-body {
        padding: 1.2rem 1rem 1.3rem;
    }
    
    .result-names-section {
        margin-bottom: 1rem;
    }
    
    .result-name-1,
    .result-name-2 {
        font-size: 1.3rem;
        margin: 0.3rem 0;
    }
    
    .result-heart-big {
        font-size: 2rem;
        margin: 0.1rem 0;
    }
    
    .result-score-section {
        margin: 1rem 0;
    }
    
    .result-score-circle {
        width: 130px;
        height: 130px;
        border: 5px solid #ff0844;
        box-shadow: 0 0 0 2.5px #ff6b81, 0 6px 15px rgba(255, 8, 68, 0.3);
    }
    
    .result-score-number {
        font-size: 2.3rem;
    }
    
    .result-score-label {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    
    .result-status-badge {
        font-size: 1.1rem;
        padding: 0.6rem;
        margin: 0.8rem 0;
    }
    
    .result-message-section {
        margin-top: 0.8rem;
    }
    
    .result-message {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .result-website {
        margin-top: 1rem;
        padding-top: 0.8rem;
    }
    
    .website-icon {
        font-size: 1rem;
    }
    
    .website-url {
        font-size: 0.9rem;
    }
}

