/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Accessibility Utilities */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Emoji and Character Rendering Fix */
html {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji', sans-serif;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji', Roboto, 'Inter', sans-serif;
    line-height: 1.6;
    color: #2D1B69;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Modern Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo a {
    background: linear-gradient(45deg, #FF6B9D, #C147E9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-decoration: none;
}

/* Logo Components */
.logo-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-emoji {
    font-size: 1.6rem;
}

.logo-text {
    background: linear-gradient(45deg, #FF6B9D, #C147E9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Navigation Menu - Updated for Semantic HTML */
.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: #2D1B69;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

.nav-link.active {
    background: linear-gradient(45deg, #FF6B9D, #C147E9);
    color: white;
}

.nav-link:hover {
    background: linear-gradient(45deg, #FF6B9D, #C147E9);
    color: white;
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    background: none;
    border: none;
    padding: 8px;
    border-radius: 4px;
}

.nav-toggle:focus {
    outline: 2px solid #FF6B9D;
    outline-offset: 2px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #2D1B69;
    border-radius: 2px;
    transition: 0.3s;
    display: block;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-hearts {
    position: absolute;
    width: 100%;
    height: 100%;
}

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

.heart:nth-child(1) { left: 10%; animation-delay: 0s; }
.heart:nth-child(2) { left: 20%; animation-delay: 1s; }
.heart:nth-child(3) { left: 60%; animation-delay: 2s; }
.heart:nth-child(4) { left: 80%; animation-delay: 3s; }
.heart:nth-child(5) { left: 40%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(45deg, #FFE4E1, #FFB6C1, #FFA0C9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, #FF6B9D, #C147E9);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.6);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFE4E1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* AdSense Container */
.ad-container {
    padding: 30px 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
}

/* Love Calculator Section */
.love-calculator-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #FF6B9D, #C147E9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.calculator-container {
    max-width: 600px;
    margin: 0 auto;
}

.calculator-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.input-group {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.input-wrapper {
    flex: 1;
    position: relative;
}

.input-wrapper label {
    display: block;
    font-weight: 600;
    color: #2D1B69;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.input-wrapper input {
    width: 100%;
    padding: 16px 50px 16px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.input-wrapper input:focus {
    outline: none;
    border-color: #FF6B9D;
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.input-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    margin-top: 12px;
}

.love-connector {
    font-size: 2rem;
    animation: heartbeat 1.5s ease-in-out infinite;
}

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

.additional-inputs {
    margin-bottom: 30px;
}

.input-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.input-row select,
.input-row input {
    flex: 1;
    padding: 16px;
    border: 2px solid #E5E7EB;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.input-row select:focus,
.input-row input:focus {
    outline: none;
    border-color: #FF6B9D;
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.calculate-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(45deg, #FF6B9D, #C147E9);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
}

.btn-loader {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.heart-loader {
    animation: spin 1s linear infinite;
}

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

/* Result Container */
.result-container {
    margin-top: 30px;
    padding: 30px;
    background: linear-gradient(135deg, #FF6B9D, #C147E9);
    border-radius: 20px;
    color: white;
    text-align: center;
}

.result-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.result-percentage {
    font-size: 4rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.gauge-container {
    width: 200px;
    height: 100px;
    margin: 20px auto;
    position: relative;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 100px 100px 0 0;
    overflow: hidden;
}

.gauge-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFE4E1, #FFB6C1);
    border-radius: 100px 100px 0 0;
    transition: width 2s ease;
}

.gauge-text {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
    font-size: 0.9rem;
}

.result-details {
    margin: 25px 0;
    text-align: left;
}

.love-status {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.ai-analysis,
.relationship-tips {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.ai-analysis h4,
.relationship-tips h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.result-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.share-btn,
.retry-btn,
.detailed-btn {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.share-btn:hover,
.retry-btn:hover,
.detailed-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Quick Tests Section */
.quick-tests-section {
    padding: 80px 0;
    background: white;
}

.tests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 3rem;
}

.test-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.test-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #FF6B9D, #C147E9);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.test-card:hover::before {
    opacity: 1;
}

.test-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.test-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.test-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.test-card p {
    opacity: 0.9;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.test-time {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

/* Trending Section */
.trending-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.trending-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 3rem;
}

.trend-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 157, 0.1);
    display: flex;
    gap: 20px;
}

.trend-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #FF6B9D;
}

.trend-image {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    background: linear-gradient(45deg, #FF6B9D, #C147E9);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trend-emoji {
    font-size: 2rem;
}

.trend-content h3 {
    color: #2D1B69;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.trend-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.trend-tag {
    background: linear-gradient(45deg, #FF6B9D, #C147E9);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Newsletter Section */
.newsletter-section {
    padding: 60px 0;
    background: linear-gradient(45deg, #FF6B9D, #C147E9);
    color: white;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto 25px;
}

.newsletter-input {
    flex: 1;
    padding: 16px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
}

.newsletter-btn {
    padding: 16px 25px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.newsletter-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Share Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 80%;
    overflow-y: auto;
}

.modal-header {
    padding: 25px 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

.modal-body {
    padding: 25px;
}

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

.share-btn {
    padding: 15px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.share-btn.instagram {
    background: linear-gradient(45deg, #E1306C, #F56040);
    color: white;
}

.share-btn.tiktok {
    background: linear-gradient(45deg, #FF0050, #000);
    color: white;
}

.share-btn.twitter {
    background: linear-gradient(45deg, #1DA1F2, #0077B5);
    color: white;
}

.share-btn.whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
}

.share-btn.copy {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
}

/* Footer */
.footer {
    background: #2D1B69;
    color: white;
    padding: 50px 0 20px;
}

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

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section h4 {
    margin-bottom: 15px;
    color: #FFB6C1;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: #FFB6C1;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(45deg, #FF6B9D, #C147E9);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    opacity: 0.7;
}

.disclaimer {
    font-size: 0.85rem;
    margin-top: 10px;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 12px 16px;
        text-align: center;
        border-radius: 8px;
        margin-bottom: 8px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .input-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .love-connector {
        transform: rotate(90deg);
        align-self: center;
    }
    
    .input-row {
        flex-direction: column;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-benefits {
        flex-direction: column;
        gap: 10px;
    }
    
    .result-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .calculator-card {
        padding: 25px;
    }
    
    .tests-grid {
        grid-template-columns: 1fr;
    }
    
    .trending-grid {
        grid-template-columns: 1fr;
    }
    
    .trend-card {
        flex-direction: column;
        text-align: center;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

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

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Loading Animations */
.loading {
    pointer-events: none;
}

.loading .btn-text {
    opacity: 0;
}

.loading .btn-loader {
    display: block;
}

/* Success Animations */
.success-animation {
    animation: successPulse 0.6s ease-out;
}

/* ===== PAGE-SPECIFIC STYLES ===== */

/* About Page Styles */
.about-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 80px;
    color: white;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-hero .lead {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    background: white;
    padding: 60px 0;
}

.story-section {
    margin-bottom: 60px;
}

.story-section .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.feature-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 20px;
}

.why-choose-section {
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-emoji {
    font-size: 3rem;
    margin-bottom: 15px;
}

.stats-section {
    background: linear-gradient(45deg, #FF6B9D, #C147E9);
    padding: 60px 0;
    color: white;
    text-align: center;
    margin: 60px 0;
    border-radius: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.how-it-works-section {
    margin-bottom: 60px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    text-align: center;
    padding: 20px;
}

.step-number {
    background: linear-gradient(45deg, #FF6B9D, #C147E9);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

/* Tests Page Styles */
.tests-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 80px;
    color: white;
    text-align: center;
}

.tests-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.tests-content {
    background: white;
    padding: 60px 0;
}

.featured-test {
    margin-bottom: 60px;
}

.featured-card {
    background: linear-gradient(45deg, #FF6B9D, #C147E9);
    color: white;
    padding: 40px;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.test-stats {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.stat {
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.test-button.primary {
    background: white;
    color: #FF6B9D;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.3s ease;
}

.test-button.primary:hover {
    transform: translateY(-2px);
}

.phone-mockup {
    font-size: 8rem;
    text-align: center;
}

.tests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.test-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.test-card.featured {
    border: 2px solid #FF6B9D;
    transform: scale(1.05);
}

.test-card:hover {
    transform: translateY(-10px);
}

.test-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.test-features {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 15px 0;
    flex-wrap: wrap;
}

.feature-tag {
    background: linear-gradient(45deg, #FF6B9D, #C147E9);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.test-btn {
    background: linear-gradient(45deg, #FF6B9D, #C147E9);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.3s ease;
}

.test-btn:hover {
    transform: translateY(-2px);
}

.test-btn.disabled {
    background: #ccc;
    cursor: not-allowed;
}

.usage-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.usage-step {
    text-align: center;
    padding: 20px;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.faq-section {
    margin-top: 60px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
}

.faq-item h3 {
    color: #2D1B69;
    margin-bottom: 10px;
}

/* Blog Page Styles */
.blog-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 80px;
    color: white;
    text-align: center;
}

.blog-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.blog-content {
    background: white;
    padding: 60px 0;
}

.featured-article {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.article-image .placeholder-image {
    background: linear-gradient(45deg, #FF6B9D, #C147E9);
    color: white;
    border-radius: 15px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.article-category {
    background: linear-gradient(45deg, #FF6B9D, #C147E9);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
}

.article-content h2 a {
    color: #2D1B69;
    text-decoration: none;
    font-size: 1.8rem;
    line-height: 1.3;
}

.article-content h2 a:hover {
    color: #FF6B9D;
}

.article-excerpt {
    margin: 15px 0;
    color: #666;
    line-height: 1.6;
}

.article-meta {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: #888;
}

.blog-categories {
    margin-bottom: 60px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.post-count {
    background: #f8f9fa;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #666;
    margin-top: 10px;
    display: inline-block;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.article-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-10px);
}

.article-thumbnail {
    background: linear-gradient(45deg, #FF6B9D, #C147E9);
    color: white;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.article-info {
    padding: 25px;
}

.article-info h3 a {
    color: #2D1B69;
    text-decoration: none;
    font-size: 1.2rem;
    line-height: 1.4;
}

.article-info h3 a:hover {
    color: #FF6B9D;
}

.love-tips-section {
    margin: 60px 0;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tip-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.tip-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.newsletter-section {
    background: linear-gradient(45deg, #FF6B9D, #C147E9);
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    margin: 60px 0;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 20px auto;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
}

.newsletter-form button {
    background: white;
    color: #FF6B9D;
    border: none;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.newsletter-disclaimer {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 10px;
}

.tags-section {
    margin-top: 60px;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.tag {
    background: #f8f9fa;
    color: #2D1B69;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tag:hover {
    background: linear-gradient(45deg, #FF6B9D, #C147E9);
    color: white;
}

/* Contact Page Styles */
.contact-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 80px;
    color: white;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-content {
    background: white;
    padding: 60px 0;
}

.contact-methods {
    margin-bottom: 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-link {
    color: #FF6B9D;
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-form-section {
    background: #f8f9fa;
    padding: 60px 0;
    margin: 60px 0;
    border-radius: 20px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-form {
    margin-top: 40px;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2D1B69;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6B9D;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.submit-btn {
    background: linear-gradient(45deg, #FF6B9D, #C147E9);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.social-section {
    margin: 60px 0;
    text-align: center;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.social-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.social-card:hover {
    transform: translateY(-10px);
}

.social-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.social-stats {
    background: #f8f9fa;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #666;
    margin-top: 10px;
    display: inline-block;
}

.contact-faq {
    margin-top: 60px;
}

.office-info {
    margin-top: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.team-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Legal Pages Styles */
.legal-content {
    background: white;
    padding: 100px 0 60px;
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 20px;
}

.legal-header h1 {
    font-size: 3rem;
    color: #2D1B69;
    margin-bottom: 10px;
}

.last-updated {
    color: #666;
    font-style: italic;
}

.legal-body {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-body section {
    margin-bottom: 40px;
}

.legal-body h2 {
    color: #2D1B69;
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #FF6B9D;
    padding-bottom: 10px;
}

.legal-body h3 {
    color: #2D1B69;
    font-size: 1.4rem;
    margin: 25px 0 15px;
}

.legal-body ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-body li {
    margin-bottom: 8px;
}

.legal-body strong {
    color: #2D1B69;
}

.terms-summary {
    background: linear-gradient(45deg, #FF6B9D, #C147E9);
    color: white;
    padding: 30px;
    border-radius: 20px;
    margin-top: 60px;
}

.terms-summary h3 {
    color: white !important;
    margin-bottom: 20px;
}

/* AdSense Ad Containers */
.ad-container {
    margin: 40px 0;
    text-align: center;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CTA Sections */
.cta-section {
    background: linear-gradient(45deg, #FF6B9D, #C147E9);
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    margin: 60px 0;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-button {
    background: white;
    color: #FF6B9D;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-block;
    margin-top: 20px;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
    }

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

    .nav-toggle {
        display: flex;
    }

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

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

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

    .about-hero h1,
    .tests-hero h1,
    .blog-hero h1,
    .contact-hero h1,
    .legal-header h1 {
        font-size: 2rem;
    }

    .featured-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .featured-article {
        grid-template-columns: 1fr;
    }

    .story-section .row {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .test-stats {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-logo a {
        font-size: 1.4rem;
    }

    .about-hero h1,
    .tests-hero h1,
    .blog-hero h1,
    .contact-hero h1,
    .legal-header h1 {
        font-size: 1.8rem;
    }

    .feature-card,
    .test-card,
    .contact-card,
    .category-card {
        padding: 20px;
    }

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

    .stat-number {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

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

/* Blog Article Styles */
.blog-article {
    background: #f8f9fa;
    min-height: 100vh;
    padding-top: 90px; /* Account for fixed navbar */
}

.blog-article .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 40px;
}

.article-header {
    padding: 40px 40px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    opacity: 0.9;
    flex-wrap: wrap;
}

.article-category {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 15px;
    font-weight: 500;
    font-size: 0.8rem;
}

.article-header h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: white;
}

.article-lead {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.read-time {
    font-weight: 500;
}

.article-body {
    padding: 40px;
    color: #333;
    line-height: 1.7;
    font-size: 1.05rem;
}

.article-body h2 {
    color: #2D1B69;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 40px 0 20px 0;
    line-height: 1.3;
    position: relative;
}

.article-body h2:first-child {
    margin-top: 0;
}

.article-body h3 {
    color: #4a5568;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 30px 0 15px 0;
    line-height: 1.4;
}

.article-body h4 {
    color: #4a5568;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 25px 0 12px 0;
}

.article-body p {
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.7;
}

.article-body p strong {
    color: #2D1B69;
    font-weight: 600;
}

.article-body ul,
.article-body ol {
    margin: 20px 0;
    padding-left: 30px;
    color: #4a5568;
}

.article-body li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.article-body blockquote {
    background: #f8f9fa;
    border-left: 4px solid #FF6B9D;
    padding: 20px 25px;
    margin: 30px 0;
    font-style: italic;
    font-size: 1.1rem;
    color: #4a5568;
    border-radius: 0 8px 8px 0;
}

.article-body blockquote::before {
    content: '"';
    font-size: 3rem;
    color: #FF6B9D;
    font-family: serif;
    line-height: 0;
    margin-right: 10px;
    vertical-align: -20px;
}

.article-cta {
    background: linear-gradient(135deg, #FF6B9D, #C147E9);
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin: 40px 0;
}

.article-cta h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.article-cta p {
    margin-bottom: 20px;
    opacity: 0.95;
}

.cta-button {
    background: white;
    color: #FF6B9D;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.article-footer {
    padding: 30px 40px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.author-info {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.article-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background: #e9ecef;
    color: #495057;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #FF6B9D;
    color: white;
}

.ad-container {
    margin: 30px 0;
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

/* Mobile Optimization for Blog Articles */
@media (max-width: 768px) {
    .blog-article {
        padding-top: 80px;
    }
    
    .article-header {
        padding: 30px 20px 25px;
    }
    
    .article-body {
        padding: 30px 20px;
        font-size: 1rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .article-footer {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .article-body h2 {
        font-size: 1.4rem;
        margin: 30px 0 15px 0;
    }
    
    .article-body h3 {
        font-size: 1.2rem;
        margin: 25px 0 12px 0;
    }
    
    .article-body ul,
    .article-body ol {
        padding-left: 20px;
    }
    
    .article-body blockquote {
        padding: 15px 20px;
        margin: 20px 0;
        font-size: 1rem;
    }
    
    .article-cta {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .blog-article {
        padding-top: 75px;
    }
    
    .article-header {
        padding: 25px 15px 20px;
    }
    
    .article-body {
        padding: 25px 15px;
    }
    
    .article-footer {
        padding: 15px;
    }
}

/* Social Sharing Section Styles */
.social-sharing-section {
    margin-top: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-sharing-section h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.social-sharing-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.share-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.facebook-share {
    background: linear-gradient(135deg, #4267B2, #365899);
}

.twitter-share {
    background: linear-gradient(135deg, #1DA1F2, #0d8bd9);
}

.linkedin-share {
    background: linear-gradient(135deg, #0077B5, #005885);
}

.pinterest-share {
    background: linear-gradient(135deg, #BD081C, #8C0613);
}

.reddit-share {
    background: linear-gradient(135deg, #FF4500, #cc3700);
}

.share-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: #fff;
}

/* External Resources Styles */
.external-resources {
    margin-top: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.external-resources h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.external-resources ul {
    list-style: none;
    padding: 0;
}

.external-resources li {
    margin-bottom: 10px;
}

.external-resources a {
    color: #fff;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-block;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.external-resources a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

/* Responsive Social Sharing */
@media (max-width: 768px) {
    .social-sharing-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .share-button {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .social-sharing-section {
        padding: 20px 15px;
        margin-top: 20px;
    }
    
    .social-sharing-section h3 {
        font-size: 1.3rem;
    }
    
    .external-resources {
        padding: 20px 15px;
    }
}
