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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

/* Header and Navigation */
.header {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    color: white;
    transition: all 0.3s ease;
}

.nav-logo:hover .logo-icon {
    transform: rotate(45deg) scale(1.1);
    color: #e1f5fe;
}

.logo-text {
    background: linear-gradient(45deg, #ffffff, #e1f5fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #e1f5fe;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
.main {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0077b5 0%, #005885 50%, #003d5c 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

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

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button.primary {
    background-color: #ff6b35;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-button.primary:hover {
    background-color: #e55a2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.cta-button.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background-color: white;
    color: #0077b5;
    transform: translateY(-2px);
}

/* Today's Answer Section */
.today-answer {
    padding: 4rem 0;
    background: white;
}

.first-section {
    padding-top: 6rem;
}

.answer-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    margin: 0 auto;
}

.answer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    text-align: left;
}

.answer-title-section {
    flex: 1;
}

.answer-title-section .answer-date {
    display: block;
    color: #666;
    font-size: 1rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.section-title {
    font-size: 2rem;
    color: #0077b5;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.puzzle-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #666;
}

.puzzle-number {
    background: linear-gradient(135deg, #0077b5, #005885);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.puzzle-date {
    color: #666;
    font-size: 0.9rem;
    align-self: center;
}

.answer-reveal {
    margin-bottom: 2rem;
    text-align: center;
}

.answer-label-box {
    margin-bottom: 1rem;
}

.answer-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

/* Old answer-box styles removed - using Pinpoint-specific styles below */

.reveal-btn {
    background: linear-gradient(135deg, #ff6b35, #e55a2e);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.reveal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.answer-clues {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.answer-clues h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.clues-container {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-width: 400px;
    margin: 0 auto;
}

.clue-item {
    background: linear-gradient(135deg, #b3d9ff 0%, #87ceeb 100%);
    color: #333;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.clue-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.answer-summary {
    background: linear-gradient(135deg, #e8f4f8 0%, #d4edda 100%);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: center;
}

.answer-summary p {
    margin: 0;
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
}

.answer-navigation {
    text-align: center;
    margin-top: 2rem;
}

.answer-navigation p {
    margin: 1rem 0;
    color: #666;
}

.answer-link {
    color: #0077b5;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.answer-link:hover {
    border-bottom-color: #0077b5;
}

.related-clues {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.related-clue {
    background: #6c757d;
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Individual Pinpoint Answer Pages */
.pinpoint-answer-page {
    padding: 4rem 0;
    background: white;
}

.video-explanation-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.video-explanation-section h2 {
    text-align: center;
    color: #0077b5;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.video-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.video-subscribe-cta {
    margin-top: 2rem;
}

.video-subscribe-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.video-subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.related-answers-section {
    padding: 4rem 0;
    background: white;
}

.related-answers-section h2 {
    text-align: center;
    color: #0077b5;
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.related-answers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.related-answer-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-left: 4px solid #0077b5;
}

.related-answer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.related-answer-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.related-answer-card h3 a {
    color: #0077b5;
    text-decoration: none;
    font-weight: 600;
}

.related-answer-card h3 a:hover {
    text-decoration: underline;
}

.related-answer-card p {
    margin: 0.5rem 0;
    color: #666;
    line-height: 1.5;
}

/* Countdown Section */
.countdown-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
    color: white;
    text-align: center;
}

.countdown-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.time-unit {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    min-width: 100px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.time-unit:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.time-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.time-label {
    display: block;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.time-separator {
    font-size: 2rem;
    font-weight: bold;
    opacity: 0.7;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 0.7; }
    51%, 100% { opacity: 0.3; }
}

.countdown-description {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* How to Play Section */
.how-to-play {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.how-to-play h2 {
    text-align: center;
    color: #0077b5;
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.gameplay-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.gameplay-step {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gameplay-step:hover {
    transform: translateY(-5px);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35, #e55a2e);
    color: white;
    border-radius: 50%;
    line-height: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.gameplay-step h3 {
    color: #0077b5;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.gameplay-step p {
    color: #666;
    line-height: 1.6;
}

/* History Section */
.history-section {
    padding: 4rem 0;
    background: white;
}

.history-section h2 {
    text-align: center;
    color: #0077b5;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.history-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #666;
    font-size: 1.1rem;
}

.history-filter {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.search-input, .filter-select {
    padding: 12px 20px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input:focus, .filter-select:focus {
    border-color: #0077b5;
}

.search-input {
    min-width: 300px;
}

.history-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.history-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.history-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #0077b5;
}

.history-item:hover, .history-item-link:hover .history-item {
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.history-number {
    background: linear-gradient(135deg, #0077b5, #005885);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.history-date {
    color: #666;
    font-size: 0.9rem;
}

.history-answer {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #333;
}

.history-answer strong {
    color: #0077b5;
}

.category-tag {
    background: linear-gradient(135deg, #ff6b35, #e55a2e);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.load-more-btn {
    display: block;
    margin: 0 auto;
    background: linear-gradient(135deg, #0077b5, #005885);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 119, 181, 0.3);
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 119, 181, 0.4);
}

/* Tips Section */
.tips-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.tips-section h2 {
    text-align: center;
    color: #0077b5;
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.tip-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #e55a2e);
}

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

.tip-card h3 {
    color: #0077b5;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.tip-card p {
    color: #666;
    line-height: 1.6;
}

/* Video Section */
.video-section {
    padding: 4rem 0;
    background: white;
}

.video-section h2 {
    text-align: center;
    color: #0077b5;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.video-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #666;
    font-size: 1.1rem;
}

.video-placeholder {
    max-width: 800px;
    margin: 0 auto;
}

.video-embed {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-coming-soon {
    text-align: center;
    padding: 2rem;
}

.video-coming-soon h3 {
    color: #0077b5;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.video-coming-soon p {
    color: #666;
    font-size: 1.1rem;
}

/* Community Section */
.community-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.community-section h2 {
    text-align: center;
    color: #0077b5;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.community-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #666;
    font-size: 1.1rem;
}

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

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-item h3 {
    color: #0077b5;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

.comments-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.comments-section h3 {
    color: #0077b5;
    margin-bottom: 1rem;
    text-align: center;
}

.comments-placeholder {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 2rem;
}

/* Newsletter Section */
.newsletter-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
    color: white;
}

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

.newsletter-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    outline: none;
}

.newsletter-btn {
    background: linear-gradient(135deg, #ff6b35, #e55a2e);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.newsletter-privacy {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #0077b5;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

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

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

.footer-links a:hover {
    opacity: 1;
    color: #0077b5;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.social-links a:hover {
    opacity: 1;
    color: #0077b5;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: #0077b5;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .answer-card {
        margin: 0 1rem;
        padding: 2rem;
    }
    
    .answer-text {
        font-size: 2rem;
    }
    
    .puzzle-info {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .history-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .search-input {
        min-width: 250px;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-input {
        min-width: 280px;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .answer-text {
        font-size: 1.5rem;
    }
    
    .gameplay-grid,
    .tips-grid,
    .community-features,
    .test-modes,
    .benefits-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .history-grid {
        grid-template-columns: 1fr;
    }
    
    .countdown-timer {
        gap: 0.5rem;
    }
    
    .time-unit {
        min-width: 80px;
        padding: 1rem;
    }
    
    .time-value {
        font-size: 2rem;
    }
    
    .countdown-title {
        font-size: 1.5rem;
    }
    
    .logo-container {
        gap: 8px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-icon {
        width: 24px;
        height: 24px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .hero-title,
    .logo-text {
        -webkit-text-fill-color: white;
        background: none;
    }
    
    .answer-box::before {
        display: none;
    }
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: white;
}

.faq-section h2 {
    text-align: center;
    color: #0077b5;
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #0077b5;
    cursor: pointer;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.faq-question {
    color: #0077b5;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-answer {
    color: #666;
    line-height: 1.6;
}

.faq-answer p {
    margin: 0;
}

/* Test Mode Section */
.test-mode-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.test-mode-section h2 {
    text-align: center;
    color: #0077b5;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.test-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #666;
    font-size: 1.1rem;
}

.test-modes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.test-mode-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.test-mode-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #e55a2e);
}

.test-mode-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.test-mode-card h3 {
    color: #0077b5;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.test-mode-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.test-features {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: linear-gradient(135deg, #0077b5, #005885);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.test-btn {
    background: linear-gradient(135deg, #ff6b35, #e55a2e);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    font-size: 1rem;
}

.test-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Why Choose Section */
.why-choose-section {
    padding: 4rem 0;
    background: white;
}

.why-choose-section h2 {
    text-align: center;
    color: #0077b5;
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-item h3 {
    color: #0077b5;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Policy Pages Styles */
.policy-section {
    padding: 4rem 0;
    background: white;
    min-height: 80vh;
}

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

.policy-content h1 {
    color: #0077b5;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.policy-intro {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border-left: 4px solid #0077b5;
}

.policy-intro p {
    margin: 0;
    font-size: 1.1rem;
    color: #555;
}

.policy-section-content {
    margin-bottom: 3rem;
}

.policy-section-content h2 {
    color: #0077b5;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.5rem;
}

.policy-section-content h3 {
    color: #005885;
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.policy-section-content ul, .policy-section-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.policy-section-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.contact-info p {
    margin: 0.5rem 0;
}

.policy-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;
    text-align: center;
}

.back-home-btn {
    display: inline-block;
    background: linear-gradient(135deg, #0077b5, #005885);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.back-home-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 119, 181, 0.4);
}

/* Contact Page Styles */
.contact-section {
    padding: 4rem 0;
    background: white;
}

.contact-content h1 {
    color: #0077b5;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.contact-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-form-section h2, .contact-info-section h2 {
    color: #0077b5;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-form {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    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: #0077b5;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: normal;
}

.contact-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff6b35, #e55a2e);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.contact-method {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 10px;
    border-left: 4px solid #0077b5;
}

.contact-method h3 {
    color: #0077b5;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-method p {
    margin: 0.5rem 0;
    color: #666;
}

.social-contact-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-contact-link {
    background: linear-gradient(135deg, #0077b5, #005885);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 119, 181, 0.3);
}

.faq-quick-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #e9ecef;
}

.faq-quick-section h2 {
    color: #0077b5;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2rem;
}

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

.quick-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.quick-faq-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #ff6b35;
}

.quick-faq-item h3 {
    color: #0077b5;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.quick-faq-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.more-help {
    text-align: center;
    color: #666;
}

.more-help a {
    color: #0077b5;
    text-decoration: none;
    font-weight: 600;
}

.contact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #0077b5;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Blog Page Styles */
.blog-hero {
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
    color: white;
    text-align: center;
}

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

.blog-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.blog-content {
    padding: 4rem 0;
    background: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.blog-main {
    max-width: none;
}

.blog-post {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.featured-post {
    border-left: 5px solid #ff6b35;
}

.post-header {
    margin-bottom: 2rem;
}

.post-category {
    background: linear-gradient(135deg, #ff6b35, #e55a2e);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1rem;
}

.post-header h2 {
    color: #0077b5;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.post-meta {
    display: flex;
    gap: 1rem;
    color: #666;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.post-content {
    line-height: 1.8;
    color: #333;
}

.post-content h3 {
    color: #0077b5;
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.post-content h4 {
    color: #005885;
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem 0;
    font-weight: 600;
}

.post-content ul, .post-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;
}

.post-tags {
    margin-bottom: 2rem;
}

.tag {
    background: linear-gradient(135deg, #0077b5, #005885);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.post-share h4 {
    color: #0077b5;
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
}

.share-btn {
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    color: white;
}

.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.facebook { background: #3b5998; }

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

.related-posts {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
}

.related-posts h3 {
    color: #0077b5;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.related-post {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.related-post h4 {
    color: #0077b5;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.related-post p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.read-more {
    color: #ff6b35;
    font-weight: 600;
    font-size: 0.9rem;
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.sidebar-widget h3 {
    color: #0077b5;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quick-link {
    color: #0077b5;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.quick-link:hover {
    background: #e9ecef;
    border-left-color: #ff6b35;
    transform: translateX(5px);
}

.recent-answers {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recent-answer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.answer-number {
    background: linear-gradient(135deg, #0077b5, #005885);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.answer-word {
    font-weight: 600;
    color: #333;
}

.answer-date {
    color: #666;
    font-size: 0.8rem;
}

.newsletter-widget {
    background: linear-gradient(135deg, #0077b5, #005885) !important;
    color: white;
}

.newsletter-widget h3 {
    color: white;
}

.newsletter-widget p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.sidebar-newsletter {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-newsletter input {
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.sidebar-newsletter button {
    background: linear-gradient(135deg, #ff6b35, #e55a2e);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-newsletter button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.category-tag {
    background: linear-gradient(135deg, #e9ecef, #f8f9fa);
    color: #0077b5;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-tag:hover {
    background: linear-gradient(135deg, #0077b5, #005885);
    color: white;
    border-color: #0077b5;
}

.nav-link.active {
    color: #ff6b35 !important;
    font-weight: 700;
}

/* Mobile Responsive for New Pages */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-post {
        padding: 2rem;
    }
    
    .post-header h2 {
        font-size: 1.5rem;
    }
    
    .blog-hero h1 {
        font-size: 2rem;
    }
    
    .contact-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quick-faq-grid {
        grid-template-columns: 1fr;
    }
    
    .share-buttons {
        flex-wrap: wrap;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Hero with Video Section */
.hero-with-video {
    background: linear-gradient(135deg, #5b6fd8 0%, #4a5dc7 100%);
    padding: 120px 0 60px;
    margin-top: 70px;
    color: white;
}

.hero-video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    padding-right: 20px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
}

.today-answer-compact {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.answer-badge {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.badge-label {
    font-weight: 600;
}

.answer-display {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
}

.answer-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    opacity: 0.9;
}

.answer-words {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.cta-button.primary {
    background: white;
    color: #5b6fd8;
}

.cta-button.primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.hero-video {
    position: relative;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.3);
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

.video-play-icon {
    opacity: 0.9;
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-placeholder:hover .video-play-icon {
    opacity: 1;
    transform: scale(1.1);
}

.youtube-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(255, 0, 0, 0.9);
    padding: 6px 12px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Welcome Text */
.welcome-text {
    background: #f8f9fa;
    padding: 30px 0;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.welcome-text p {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
}

.welcome-text strong {
    color: #5b6fd8;
}

/* Answer Details Section */
.answer-details-section {
    padding: 60px 0;
    background: white;
}

.answer-details-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
}

.section-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
}

.answer-explanation {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.word-ladder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.ladder-step {
    background: white;
    padding: 15px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 300px;
}

.step-number {
    font-size: 0.85rem;
    color: #999;
    min-width: 50px;
}

.step-word {
    font-size: 1.5rem;
    font-weight: 700;
    color: #5b6fd8;
    letter-spacing: 2px;
}

.step-change {
    font-size: 0.9rem;
    color: #666;
    margin-left: auto;
    background: #e8f4f8;
    padding: 4px 12px;
    border-radius: 4px;
}

.ladder-arrow {
    font-size: 2rem;
    color: #5b6fd8;
}

.other-games-links {
    text-align: center;
    margin-top: 50px;
}

.other-games-links p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #666;
}

.game-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.game-link-card {
    background: linear-gradient(135deg, #5b6fd8, #4a5dc7);
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.game-link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(91, 111, 216, 0.3);
}

/* Bookmark Section */
.bookmark-section {
    background: #fff8e1;
    padding: 40px 0;
}

.bookmark-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.bookmark-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #333;
}

.bookmark-subtitle {
    color: #666;
    margin-bottom: 20px;
}

.bookmark-toggle-btn {
    background: linear-gradient(135deg, #5b6fd8, #4a5dc7);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bookmark-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(91, 111, 216, 0.3);
}

.bookmark-instructions {
    margin-top: 25px;
    text-align: left;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
}

.bookmark-instructions h3 {
    margin-bottom: 20px;
    color: #333;
}

.bookmark-method {
    margin-bottom: 20px;
}

.bookmark-method h4 {
    margin-bottom: 10px;
    color: #5b6fd8;
}

.bookmark-method ul {
    list-style: none;
    padding-left: 0;
}

.bookmark-method li {
    padding: 8px 0;
    color: #666;
}

.bookmark-tip {
    background: #e8f4f8;
    padding: 15px;
    border-radius: 6px;
    margin-top: 15px;
    border-left: 4px solid #5b6fd8;
}

/* Tips Section with Icons */
.tips-section {
    padding: 60px 0;
    background: #f8f9fa;
}

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

.tip-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.tip-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #5b6fd8, #4a5dc7);
    border-radius: 50%;
    color: white;
}

.tip-icon svg {
    stroke: white;
}

.tip-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.tip-card p {
    color: #666;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #5b6fd8 0%, #4a5dc7 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-button-large {
    display: inline-block;
    background: white;
    color: #5b6fd8;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-video-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-content {
        padding-right: 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .word-ladder {
        padding: 0 10px;
    }
    
    .ladder-step {
        min-width: auto;
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .step-word {
        font-size: 1.2rem;
    }
    
    .game-links-grid {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
}

/* Pinpoint Answer Styles */
.pinpoint-clues {
    margin-bottom: 40px;
    text-align: center;
}

.pinpoint-clues h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #333;
}

.clues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.clue-item {
    background: linear-gradient(135deg, #5b6fd8, #4a5dc7);
    color: white;
    padding: 20px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(91, 111, 216, 0.3);
    transition: all 0.3s ease;
}

.clue-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(91, 111, 216, 0.4);
}

.answer-reveal-section {
    text-align: center;
    margin: 40px 0;
}

.reveal-answer-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #5b6fd8, #4a5dc7);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(91, 111, 216, 0.3);
}

.reveal-answer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(91, 111, 216, 0.4);
}

.pinpoint-answer-hidden {
    margin-top: 30px;
    animation: fadeIn 0.5s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.answer-box {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    border-left: 5px solid #5b6fd8;
    max-width: 700px;
    margin: 0 auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.answer-box h3 {
    font-size: 1.8rem;
    color: #5b6fd8;
    margin-bottom: 20px;
}

.answer-text {
    font-size: 2.5rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 30px;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    text-rendering: optimizeLegibility !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    letter-spacing: 0.5px;
}

.answer-explanation-text {
    text-align: left;
}

.answer-explanation-text p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #000000;
    font-weight: 700;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

.answer-explanation-text ul {
    list-style: none;
    padding: 0;
}

.answer-explanation-text li {
    padding: 15px 0;
    font-size: 1.1rem;
    color: #000000;
    border-bottom: 1px solid #e0e0e0;
    font-weight: 600;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    line-height: 1.6;
}

.answer-explanation-text li:last-child {
    border-bottom: none;
}

.answer-explanation-text strong {
    color: #5b6fd8;
}

/* Simple Answer Display - Clean and Clear */
.simple-answer-display {
    margin-top: 40px;
    text-align: center;
}

.answer-content-simple {
    font-size: 3rem;
    font-weight: 900;
    color: #000000;
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border: 3px solid #5b6fd8;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    text-rendering: optimizeLegibility !important;
}

/* Analysis Section Styles */
.analysis-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.analysis-content {
    max-width: 900px;
    margin: 0 auto;
}

.analysis-step {
    background: white;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 12px;
    border-left: 4px solid #0077b5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.analysis-step h3 {
    color: #0077b5;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.analysis-step p {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #333;
}

.analysis-step strong {
    color: #0077b5;
    font-weight: 600;
}

.analysis-summary {
    background: linear-gradient(135deg, #0077b5, #005885);
    color: white;
    padding: 35px;
    border-radius: 12px;
    margin-top: 30px;
}

.analysis-summary h3 {
    color: white;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.analysis-summary ul {
    list-style: none;
    padding: 0;
}

.analysis-summary li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.analysis-summary li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Recent Answers Section */
.recent-answers-section {
    padding: 60px 0;
    background: white;
}

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

.recent-answer-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.recent-answer-card:hover {
    border-color: #0077b5;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 119, 181, 0.15);
}

.answer-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.answer-number {
    font-weight: 700;
    color: #0077b5;
    font-size: 1.1rem;
}

.answer-date {
    font-size: 0.9rem;
    color: #666;
}

.answer-path {
    margin: 15px 0;
    padding: 15px;
    background: white;
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.answer-path strong {
    color: #0077b5;
}

.answer-meta {
    margin-top: 15px;
}

.steps-badge {
    display: inline-block;
    background: #0077b5;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.view-all-link {
    text-align: center;
    margin-top: 40px;
}

.cta-button-large {
    display: inline-block;
    background: linear-gradient(135deg, #0077b5, #005885);
    color: white;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 119, 181, 0.3);
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 119, 181, 0.4);
}

/* Archive Page Styles */
.archive-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
    color: white;
    text-align: center;
}

.archive-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.archive-description {
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 40px;
    opacity: 0.95;
}

.archive-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Archive Filters */
.archive-filters {
    padding: 30px 0;
    background: #f8f9fa;
    border-bottom: 2px solid #e0e0e0;
}

.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.filter-group label {
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

.filter-select {
    padding: 10px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:hover,
.filter-select:focus {
    border-color: #0077b5;
    outline: none;
}

.search-input {
    padding: 10px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    width: 300px;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: #0077b5;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 119, 181, 0.1);
}

/* Archive Grid Section */
.archive-grid-section {
    padding: 60px 0;
    background: white;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0077b5;
    margin-bottom: 15px;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.crossclimb-archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.crossclimb-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 25px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: block;
}

.crossclimb-card:hover {
    transform: translateY(-8px);
    border-color: #0077b5;
    box-shadow: 0 12px 30px rgba(0, 119, 181, 0.2);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #0077b5;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

.card-content {
    padding-right: 60px;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0077b5;
    margin-bottom: 12px;
    line-height: 1.4;
}

.card-description {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    font-family: 'Courier New', monospace;
    background: #f0f0f0;
    padding: 10px;
    border-radius: 6px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.meta-date {
    font-size: 0.9rem;
    color: #888;
}

.meta-link {
    font-size: 0.95rem;
    color: #0077b5;
    font-weight: 600;
}

.crossclimb-card:hover .meta-link {
    text-decoration: underline;
}

/* Load More Section */
.load-more-section {
    text-align: center;
    margin-top: 50px;
}

.load-more-btn {
    background: linear-gradient(135deg, #0077b5, #005885);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 119, 181, 0.3);
}

.load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 119, 181, 0.4);
}

.load-more-btn svg {
    transition: transform 0.3s ease;
}

.load-more-btn:hover svg {
    transform: translateY(3px);
}

.load-info {
    margin-top: 20px;
    color: #888;
    font-size: 0.95rem;
}

/* Archive Benefits Section */
.archive-benefits {
    padding: 60px 0;
    background: #f8f9fa;
}

.archive-benefits h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #0077b5;
    margin-bottom: 50px;
}

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

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

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

.benefit-card h3 {
    font-size: 1.4rem;
    color: #0077b5;
    margin-bottom: 12px;
}

.benefit-card p {
    color: #666;
    line-height: 1.7;
}

/* Other Games Section */
.other-games-section {
    padding: 60px 0;
    background: white;
}

.other-games-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #0077b5;
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .archive-title {
        font-size: 2rem;
    }
    
    .archive-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-input {
        width: 100%;
    }
    
    .crossclimb-archive-grid {
        grid-template-columns: 1fr;
    }
    
    .card-content {
        padding-right: 0;
    }
    
    .card-badge {
        position: static;
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
}

/* Image Answer Styles (for Queens, Tango, Sudoku) */
.image-answer-container {
    text-align: center;
    margin: 40px 0;
}

.answer-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    margin: 20px 0;
}

.image-answer-caption {
    font-size: 0.9rem;
    color: #666;
    margin-top: 15px;
    font-style: italic;
}

/* Print styles */
@media print {
    .header,
    .newsletter-section,
    .footer,
    .video-section,
    .community-section,
    .cta-section {
        display: none;
    }
    
    .main {
        margin-top: 0;
    }
    
    * {
        background: white !important;
        color: black !important;
    }
}
