* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f9f9f9;
}

body.dark-mode {
    background: #1a1a1a;
    color: #ddd;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.header {
    background: #000;
    color: #fff;
    padding: 1rem 0;
    position: relative;
}

body.dark-mode .header {
    background: #2e2e2e;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    z-index: 1001;
}

.logo h1 {
    font-size: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

body.dark-mode .logo h1 {
    color: #ddd;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    z-index: 1000;
}

body.dark-mode .nav-toggle-label {
    color: #ddd;
}

.nav {
    display: flex;
    align-items: center;
}

body.dark-mode .nav {
    background: #2e2e2e;
}

.nav ul {
    list-style: none;
    display: flex;
}

.nav ul li {
    margin-left: 20px;
}

.nav ul li a {
    color: #fff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}

body.dark-mode .nav ul li a {
    color: #ddd;
}

.nav ul li a:hover {
    color: #ff0050;
}

.theme-toggle {
    background: none;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

body.dark-mode .theme-toggle {
    border-color: #ddd;
    color: #ddd;
}

.hero-section {
    background: linear-gradient(to right, #ff0050, #00f);
    color: #fff;
    text-align: center;
    padding: 4rem 0;
}

body.dark-mode .hero-section {
    background: linear-gradient(to right, #ff4a00, #0066cc);
}

.hero-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.hero-title i {
    margin-right: 0.5rem;
}

.hero-subtitle {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.checker-section {
    padding: 2rem 0;
}

.checker-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

body.dark-mode .checker-card {
    background: #2e2e2e;
    border-color: #444;
}

.checker-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

body.dark-mode .checker-header h2 {
    color: #ddd;
}

.checker-header p {
    color: #666;
    font-size: 0.95rem;
}

body.dark-mode .checker-header p {
    color: #aaa;
}

.checker-form {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    flex-direction: column;
    align-items: center;
}

.input-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.input-wrapper {
    position: relative;
    width: 100%;
}

.input-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

body.dark-mode .input-icon {
    color: #aaa;
}

input[type="text"] {
    padding: 0.8rem 0.8rem 0.8rem 2.5rem;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
}

body.dark-mode input[type="text"] {
    background: #333;
    border-color: #444;
    color: #ddd;
}

.check-btn {
    padding: 0.8rem 1.5rem;
    background: #ff0050;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    width: 100%;
}

body.dark-mode .check-btn {
    background: #ff4a00;
}

.check-btn:hover {
    background: #e60045;
}

body.dark-mode .check-btn:hover {
    background: #e64100;
}

.recaptcha-container {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    width: 100%;
}

.g-recaptcha {
    margin: 0;
}

.loading-container {
    display: none;
    text-align: center;
    margin-top: 1rem;
    color: #ff0050;
    font-size: 0.95rem;
}

body.dark-mode .loading-container {
    color: #ff4a00;
}

.loading-container i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.results-container table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.results-container th, .results-container td {
    border: none;
    padding: 12px;
    text-align: left;
    font-size: 0.9rem;
}

body.dark-mode .results-container th,
body.dark-mode .results-container td {
    border-color: #444;
}

.results-container th {
    background: #f2f2f2;
    font-weight: bold;
    white-space: nowrap;
}

body.dark-mode .results-container th {
    background: #333;
}

.results-container .range-text {
    font-weight: bold;
    color: #ff0050;
    position: relative;
    display: inline-block;
}

body.dark-mode .results-container .range-text {
    color: #ff4a00;
}

.results-container .range-text:hover::after {
    content: "The estimated period during which the account was likely created";
    position: absolute;
    background: #333;
    color: #fff;
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: normal;
    width: 180px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

body.dark-mode .results-container .range-text:hover::after {
    background: #444;
}

.results-container img {
    display: block;
}

.results-container .additional-info {
    margin-top: 1rem;
    padding: 1rem;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
}

body.dark-mode .results-container .additional-info {
    background: #2e2e2e;
    border-color: #444;
}

.results-container .additional-info p {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
}

body.dark-mode .results-container .additional-info p {
    color: #ddd;
}

.results-container .additional-info p strong {
    font-weight: bold;
    color: #555;
    width: 30%;
}

body.dark-mode .results-container .additional-info p strong {
    color: #aaa;
}

.results-container .additional-info p span {
    width: 70%;
    text-align: left;
}

.results-container .share-links {
    margin-top: 1rem;
    padding: 1rem;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
}

body.dark-mode .results-container .share-links {
    background: #2e2e2e;
    border-color: #444;
}

.results-container .share-links h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

body.dark-mode .results-container .share-links h3 {
    color: #ddd;
}

.results-container .share-buttons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    position: relative;
}

.results-container .share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    transition: background-color 0.3s;
}

.results-container .share-x {
    background-color: #000;
}

body.dark-mode .results-container .share-x {
    background-color: #333;
}

.results-container .share-x:hover {
    background-color: #333;
}

body.dark-mode .results-container .share-x:hover {
    background-color: #444;
}

.results-container .share-facebook {
    background-color: #3b5998;
}

.results-container .share-facebook:hover {
    background-color: #2a4373;
}

.results-container .share-whatsapp {
    background-color: #25d366;
}

.results-container .share-whatsapp:hover {
    background-color: #1da851;
}

.results-container .share-linkedin {
    background-color: #0077b5;
}

.results-container .share-linkedin:hover {
    background-color: #005582;
}

.results-container .share-telegram {
    background-color: #0088cc;
}

.results-container .share-telegram:hover {
    background-color: #006699;
}

.results-container .share-reddit {
    background-color: #ff4500;
}

.results-container .share-reddit:hover {
    background-color: #cc3700;
}

.results-container .share-pinterest {
    background-color: #bd081c;
}

.results-container .share-pinterest:hover {
    background-color: #8a0615;
}

.results-container .share-email {
    background-color: #666;
}

.results-container .share-email:hover {
    background-color: #4d4d4d;
}

.results-container .share-copy {
    background-color: #ff0050;
    border: none;
    cursor: pointer;
}

body.dark-mode .results-container .share-copy {
    background-color: #ff4a00;
}

.results-container .share-copy:hover {
    background-color: #e60045;
}

body.dark-mode .results-container .share-copy:hover {
    background-color: #e64100;
}

.results-container .share-more {
    background-color: #ff0050;
    border: none;
    cursor: pointer;
}

body.dark-mode .results-container .share-more {
    background-color: #ff4a00;
}

.results-container .share-more:hover {
    background-color: #e60045;
}

body.dark-mode .results-container .share-more:hover {
    background-color: #e64100;
}

.results-container .share-more-menu {
    display: none;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
    animation: slideIn 0.3s ease-in-out;
}

.results-container .disclaimer {
    margin-top: 1rem;
    padding: 0.8rem;
    background: #fff2f5;
    border: 1px solid #ff0050;
    border-radius: 4px;
    text-align: center;
    font-size: 0.85rem;
    color: #ff0050;
    font-style: italic;
}

body.dark-mode .results-container .disclaimer {
    background: #3a1f22;
    border-color: #ff4a00;
    color: #ff4a00;
}

.floating-share {
    position: fixed;
    z-index: 1000;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    padding: 0.5rem;
}

body.dark-mode .floating-share {
    background: #2e2e2e;
}

.floating-share .share-buttons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.floating-share .share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    transition: background-color 0.3s;
}

.floating-share .share-x {
    background-color: #000;
}

body.dark-mode .floating-share .share-x {
    background-color: #333;
}

.floating-share .share-x:hover {
    background-color: #333;
}

body.dark-mode .floating-share .share-x:hover {
    background-color: #444;
}

.floating-share .share-facebook {
    background-color: #3b5998;
}

.floating-share .share-facebook:hover {
    background-color: #2a4373;
}

.floating-share .share-whatsapp {
    background-color: #25d366;
}

.floating-share .share-whatsapp:hover {
    background-color: #1da851;
}

.floating-share .share-linkedin {
    background-color: #0077b5;
}

.floating-share .share-linkedin:hover {
    background-color: #005582;
}

.floating-share .share-telegram {
    background-color: #0088cc;
}

.floating-share .share-telegram:hover {
    background-color: #006699;
}

.floating-share .share-reddit {
    background-color: #ff4500;
}

.floating-share .share-reddit:hover {
    background-color: #cc3700;
}

.floating-share .share-pinterest {
    background-color: #bd081c;
}

.floating-share .share-pinterest:hover {
    background-color: #8a0615;
}

.floating-share .share-email {
    background-color: #666;
}

.floating-share .share-email:hover {
    background-color: #4d4d4d;
}

.floating-share .share-copy {
    background-color: #ff0050;
    border: none;
    cursor: pointer;
}

body.dark-mode .floating-share .share-copy {
    background-color: #ff4a00;
}

.floating-share .share-copy:hover {
    background-color: #e60045;
}

body.dark-mode .floating-share .share-copy:hover {
    background-color: #e64100;
}

.floating-share .share-more {
    background-color: #ff0050;
    border: none;
    cursor: pointer;
}

body.dark-mode .floating-share .share-more {
    background-color: #ff4a00;
}

.floating-share .share-more:hover {
    background-color: #e60045;
}

body.dark-mode .floating-share .share-more:hover {
    background-color: #e64100;
}

.floating-share .share-more-menu {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
    background: #fff;
    border-radius: 8px;
    padding: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    animation: slideIn 0.3s ease-in-out;
}

body.dark-mode .floating-share .share-more-menu {
    background: #2e2e2e;
}

@keyframes slideIn {
    from { transform: translateY(10px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.error-container {
    color: #ff0050;
    text-align: center;
    margin-top: 1rem;
    font-size: 0.95rem;
}

body.dark-mode .error-container {
    color: #ff4a00;
}

.error-container.rate-limit-error {
    background: #fff2f5;
    border: 1px solid #ff0050;
    padding: 0.8rem;
    border-radius: 4px;
}

body.dark-mode .error-container.rate-limit-error {
    background: #3a1f22;
    border-color: #ff4a00;
}

.error-container.rate-limit-error a {
    color: #ff0050;
    text-decoration: none;
}

body.dark-mode .error-container.rate-limit-error a {
    color: #ff4a00;
}

.error-container.rate-limit-error a:hover {
    text-decoration: underline;
}

.info-sections {
    padding: 2rem 0;
    background: #f9f9f9;
}

body.dark-mode .info-sections {
    background: #1a1a1a;
}

.section-box {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

body.dark-mode .section-box {
    background: #2e2e2e;
    border-color: #444;
}

.section-box h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    padding-bottom: 0.5rem;
}

body.dark-mode .section-box h2 {
    color: #ddd;
}

.section-box h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: #ff0050;
}

body.dark-mode .section-box h2::after {
    background: #ff4a00;
}

.section-content {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

body.dark-mode .section-content {
    color: #aaa;
}

.section-content ul, .section-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.steps-list {
    counter-reset: step-counter;
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.steps-list li {
    counter-increment: step-counter;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2.5rem;
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: #ff0050;
    color: #fff;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

body.dark-mode .steps-list li::before {
    background: #ff4a00;
}

.faq-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 1rem;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

body.dark-mode .faq-item {
    background: #2e2e2e;
    border-color: #444;
}

.faq-question {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    padding: 0.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

body.dark-mode .faq-question {
    color: #ddd;
}

.faq-number {
    color: #ff0050;
    font-weight: 700;
    margin-right: 0.5rem;
}

body.dark-mode .faq-number {
    color: #ff4a00;
}

.faq-toggle-icon {
    color: #ff0050;
    font-size: 0.9rem;
}

body.dark-mode .faq-toggle-icon {
    color: #ff4a00;
}

.faq-answer {
    font-size: 0.9rem;
    color: #555;
    padding: 0.5rem 0;
    line-height: 1.6;
    display: none;
}

body.dark-mode .faq-answer {
    color: #aaa;
}

.faq-item.active .faq-answer {
    display: block;
}

.highlight {
    background: #fff2f5;
    padding: 0.1rem 0.4rem;
    border-radius: 3px;
    color: #ff0050;
    font-weight: 600;
}

body.dark-mode .highlight {
    background: #3a1f22;
    color: #ff4a00;
}

.features-section {
    background: #f9f9f9;
    padding: 2rem 0;
}

body.dark-mode .features-section {
    background: #1a1a1a;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 2rem;
}

body.dark-mode .section-title {
    color: #ddd;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature-card {
    background: #fff;
    padding: 1.5rem;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

body.dark-mode .feature-card {
    background: #2e2e2e;
    border-color: #444;
}

.feature-card i {
    font-size: 2rem;
    color: #ff0050;
    margin-bottom: 0.5rem;
}

body.dark-mode .feature-card i {
    color: #ff4a00;
}

.feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

body.dark-mode .feature-card h3 {
    color: #ddd;
}

.contact-section {
    padding: 2rem 0;
    text-align: center;
}

body.dark-mode .contact-section {
    color: #ddd;
}

.contact-section a {
    color: #ff0050;
}

body.dark-mode .contact-section a {
    color: #ff4a00;
}

.footer {
    background: #000;
    color: #fff;
    padding: 2rem 0;
}

body.dark-mode .footer {
    background: #2e2e2e;
}

.footer-sections {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 1rem;
}

.footer-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

body.dark-mode .footer-section h3 {
    color: #ddd;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
}

body.dark-mode .footer-section a {
    color: #ddd;
}

.footer-section a:hover {
    color: #ff0050;
}

body.dark-mode .footer-section a:hover {
    color: #ff4a00;
}

.social-media h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    margin: 1rem 0 0.5rem;
}

body.dark-mode .social-media h4 {
    color: #ddd;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: #fff;
    font-size: 1.5rem;
}

body.dark-mode .social-icons a {
    color: #ddd;
}

.social-icons a:hover {
    color: #ff0050;
}

body.dark-mode .social-icons a:hover {
    color: #ff4a00;
}

.footer-disclaimer {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #ccc;
}

body.dark-mode .footer-disclaimer {
    color: #aaa;
}

.footer-disclaimer a {
    color: #fff;
    text-decoration: underline;
}

body.dark-mode .footer-disclaimer a {
    color: #ddd;
}

.footer-disclaimer a:hover {
    color: #ff0050;
}

body.dark-mode .footer-disclaimer a:hover {
    color: #ff4a00;
}

.footer-copyright {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #333;
}

body.dark-mode .footer-copyright {
    border-top-color: #444;
}

.footer-copyright p {
    margin: 0;
    font-size: 0.95rem;
}

body.dark-mode .footer-copyright p {
    color: #ddd;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .checker-card {
        padding: 2rem;
    }
    
    .checker-header h2 {
        font-size: 1.625rem;
    }
    
    .input-group {
        flex-direction: row;
        justify-content: center;
    }
    
    .input-wrapper {
        width: auto;
    }
    
    input[type="text"] {
        width: 300px;
    }
    
    .check-btn {
        width: auto;
    }
    
    .section-box {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .section-box h2 {
        font-size: 1.5rem;
    }
    
    .section-content {
        font-size: 1rem;
    }
    
    .steps-list li {
        padding-left: 3.5rem;
        margin-bottom: 1.2rem;
    }
    
    .steps-list li::before {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 0.5rem 0;
    }
    
    .faq-answer {
        font-size: 0.95rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .section-title {
        font-size: 1.625rem;
    }
    
    .floating-share {
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .floating-share .share-buttons {
        flex-direction: column;
    }
    
    .floating-share .share-more-menu {
        flex-direction: column;
        margin-top: 0;
        margin-left: 0.5rem;
    }
    
    /* Desktop results table */
    .results-table.desktop-only {
        display: table;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        border-collapse: collapse;
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 8px;
    }
    
    body.dark-mode .results-table.desktop-only {
        background: #2e2e2e;
        border-color: #444;
    }
    
    .results-table.desktop-only tr {
        border-bottom: 1px solid #ddd;
    }
    
    body.dark-mode .results-table.desktop-only tr {
        border-bottom-color: #444;
    }
    
    .results-table.desktop-only tr:last-child {
        border-bottom: none;
    }
    
    .results-table.desktop-only td {
        position: relative;
        padding: 12px 10px 12px 50%;
        border: none;
        border-bottom: 1px solid #ddd;
        font-size: 0.9rem;
    }
    
    body.dark-mode .results-table.desktop-only td {
        border-bottom-color: #444;
    }
    
    .results-table.desktop-only td:before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        width: 45%;
        font-weight: bold;
        font-size: 0.9rem;
        color: #333;
    }
    
    body.dark-mode .results-table.desktop-only td:before {
        color: #ddd;
    }
    
    .results-table.desktop-only td img {
        vertical-align: middle;
    }
    
    .results-table.desktop-only .range-text {
        color: #ff0050;
    }
    
    body.dark-mode .results-table.desktop-only .range-text {
        color: #ff4a00;
    }
    
    .results-table.mobile-only {
        display: none;
    }
}

@media (max-width: 767px) {
    .nav-toggle-label {
        display: inline-block;
        vertical-align: middle;
    }
    
    .nav {
        position: absolute;
        top: calc(100% + 1rem);
        left: 0;
        right: 0;
        background: #000;
        padding: 1rem;
        transform: translateY(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 998;
        display: none;
    }
    
    body.dark-mode .nav {
        background: #2e2e2e;
    }
    
    .nav.nav-open {
        transform: translateY(0);
        display: block;
    }
    
    .nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .nav ul li {
        margin: 0.75rem 0;
    }
    
    .nav ul li a {
        font-size: 1rem;
    }
    
    .theme-toggle {
        display: inline-block;
        vertical-align: middle;
        margin-left: 0.5rem;
        padding: 0.2rem 0.5rem;
        font-size: 0.7rem;
    }
    
    .footer-sections {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 1.5rem;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-disclaimer {
        font-size: 0.8rem;
        padding: 0 1rem;
    }
    
    .floating-share {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .floating-share .share-buttons {
        flex-direction: row;
    }
    
    .floating-share .share-more-menu {
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 0.5rem;
    }
    
    .results-table.desktop-only {
        display: none;
    }
    
    .results-table.mobile-only {
        display: table;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        border-collapse: collapse;
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 8px;
    }
    
    body.dark-mode .results-table.mobile-only {
        background: #2e2e2e;
        border-color: #444;
    }
    
    .results-table.mobile-only tr {
        border-bottom: 1px solid #ddd;
    }
    
    body.dark-mode .results-table.mobile-only tr {
        border-bottom-color: #444;
    }
    
    .results-table.mobile-only tr:last-child {
        border-bottom: none;
    }
    
    .results-table.mobile-only td {
        position: relative;
        padding: 12px 10px 12px 50%;
        border: none;
        border-bottom: 1px solid #ddd;
        font-size: 0.9rem;
    }
    
    body.dark-mode .results-table.mobile-only td {
        border-bottom-color: #444;
    }
    
    .results-table.mobile-only td:before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        width: 45%;
        font-weight: bold;
        font-size: 0.85rem;
        color: #333;
    }
    
    body.dark-mode .results-table.mobile-only td:before {
        color: #ddd;
    }
    
    .results-table.mobile-only td img {
        vertical-align: middle;
    }
    
    .results-table.mobile-only .range-text {
        color: #ff0050;
    }
    
    body.dark-mode .results-table-mobile .range-text {
        color: #ff4a00;
    }
}

@media (max-width: 600px) {
    .results-container table,
    .results-container .results-table.mobile-only tr {
        display: block;
    }
    
    .results-container .results-table.mobile-only td {
        display: block;
        padding: 12px 10px 12px 50%;
        border-bottom: 1px solid #ddd;
        min-width: 0;
        max-width: none;
    }
    
    body.dark-mode .results-container .results-table.mobile-only td {
        border-bottom-color: #444;
    }
    
    .results-container .results-table.mobile-only td:before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        width: 45%;
        font-weight: bold;
        font-size: 0.85rem;
    }
    
    .results-container .range-text:hover::after {
        width: 140px;
    }
    
    .results-container .additional-info {
        display: block;
        margin-top: 0;
    }
    
    .results-container .additional-info p {
        position: relative;
        padding-left: 50%;
        border-bottom: 1px solid #ddd;
        margin-bottom: 0;
        line-height: 1.4;
    }
    
    body.dark-mode .results-container .additional-info p {
        border-bottom-color: #444;
    }
    
    .results-container .additional-info p strong {
        position: absolute;
        left: 10px;
        width: 45%;
        font-weight: bold;
        font-size: 0.85rem;
    }
    
    .results-container .additional-info p span {
        width: 100%;
        display: block;
        padding: 8px 10px;
        overflow-wrap: break-word;
        font-size: 0.85rem;
        max-width: 100%;
    }
    
    .results-container .share-links {
        padding: 0.8rem;
    }
    
    .results-container .share-links h3 {
        font-size: 1rem;
    }
    
    .results-container .share-buttons {
        gap: 0.3rem;
    }
    
    .results-container .share-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .results-container .share-more-menu {
        gap: 0.3rem;
    }
    
    .results-container .disclaimer {
        padding: 0.8rem 10px;
        font-size: 0.8rem;
    }
    
    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: center;
        max-width: 100%;
    }
    
    .floating-share .share-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .floating-share .share-more-menu {
        gap: 0.3rem;
    }
}

.fa-spin {
    animation-duration: 1s;
}
/* Blog Section */
.blog-section {
    padding: 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.blog-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

body.dark-mode .blog-card {
    background: #2e2e2e;
    border-color: #444;
}

.blog-image {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.blog-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

body.dark-mode .blog-title {
    color: #ddd;
}

.blog-author {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.5rem;
}

body.dark-mode .blog-author {
    color: #aaa;
}

.blog-description {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 1rem;
}

body.dark-mode .blog-description {
    color: #aaa;
}

.blog-read-more {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: #ff0050;
    color: #fff;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

body.dark-mode .blog-read-more {
    background: #ff4a00;
}

.blog-read-more:hover {
    background: #e60045;
}

body.dark-mode .blog-read-more:hover {
    background: #e64100;
}

.blog-more {
    text-align: center;
    margin-top: 1rem;
}

.blog-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: #ff0050;
    color: #fff;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
}

body.dark-mode .blog-more-btn {
    background: #ff4a00;
}

.blog-more-btn:hover {
    background: #e60045;
}

body.dark-mode .blog-more-btn:hover {
    background: #e64100;
}

.blog-more-btn i {
    font-size: 0.9rem;
}

.no-posts {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
}

body.dark-mode .no-posts {
    color: #aaa;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}
.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ff2a44;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s;
}
.btn:hover {
    background-color: #e0233d;
}
/* For mobile, show only 6 posts */
@media (max-width: 768px) {
    .blog-grid .blog-card:nth-child(n+7) {
        display: none;
    }
}

/* For desktop, show all 8 posts */
@media (min-width: 769px) {
    .blog-grid .blog-card {
        display: block !important;
    }
}