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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    background: #ffffff;
    border-bottom: 1px solid #e6e6e6;
    z-index: 1000;
    padding: 16px 24px;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #000;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #d93025;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-icon {
    width: 20px;
    height: 20px;
    cursor: pointer;
    color: #666;
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #d93025;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: #333;
    transition: 0.3s;
}

.menu-checkbox {
    display: none;
}

/* Breaking News Banner */
.breaking-banner {
    background: #cc0000;
    color: white;
    padding: 12px 0;
    position: relative;
}

.breaking-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.breaking-label {
    background: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.breaking-text {
    flex: 1;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
}

.breaking-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.breaking-close:hover {
    background: rgba(255,255,255,0.1);
}

/* Live Updates Ticker */
.live-updates {
    background: white;
    border-bottom: 1px solid #e6e6e6;
    padding: 12px 0;
}

.live-updates-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.live-label {
    color: #cc0000;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.update-item {
    color: #333;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.update-item:hover {
    color: #cc0000;
}

.separator {
    color: #999;
    font-weight: 300;
}

.updates-arrow {
    background: none;
    border: none;
    color: #666;
    font-size: 16px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
    margin-left: auto;
}

.updates-arrow:hover {
    background: #f5f5f5;
    color: #cc0000;
}

/* American Time Display */
.american-time {
    position: fixed;
    top: 120px;
    right: 20px;
    background: rgba(0,0,0,0.8);
    color: #00ff00;
    padding: 8px 12px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    font-weight: 600;
    z-index: 999;
    border: 1px solid rgba(0,255,0,0.3);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    animation: digital-glow 2s ease-in-out infinite alternate;
}

@keyframes digital-glow {
    from {
        box-shadow: 0 2px 8px rgba(0,0,0,0.3), 0 0 10px rgba(0,255,0,0.2);
    }
    to {
        box-shadow: 0 2px 8px rgba(0,0,0,0.3), 0 0 20px rgba(0,255,0,0.4);
    }
}

/* Main Content */
.main-content {
    padding: 20px 0 50px 0;
    margin-top: 0;
}

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

.article-header {
    margin-bottom: 30px;
}

.article-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #000;
}

.highlight {
    color: #b62619;
}

.article-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
    font-style: italic;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 20px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #cc0000;
    box-shadow: 0 2px 8px rgba(204, 0, 0, 0.3);
}

.author-details .byline {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.author-details .date {
    font-size: 13px;
    color: #666;
}

.article-stats {
    display: flex;
    gap: 12px;
    align-items: center;
}

.stat-badge {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #495057;
}

/* Hero Image */
.hero-image {
    text-align: center;
    margin: 30px 0;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Content Text */
.content-text {
    margin: 30px 0;
}

.content-text p {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: justify;
}

.content-text ul {
    margin: 20px 0;
    padding-left: 30px;
}

.content-text li {
    margin-bottom: 10px;
    font-size: 16px;
}

/* Live Counter */
.live-counter {
    text-align: center;
    margin: 20px 0;
    padding: 15px;
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border: 2px solid #cc0000;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(204, 0, 0, 0.2);
}

.live-counter p {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.live-counter #live-count {
    color: #cc0000;
    font-size: 18px;
}

/* Video Section */
.video-section {
    text-align: center;
    margin: 40px 0;
}

.video-intro p {
    margin-bottom: 15px;
    font-size: 16px;
}

.video-badge,
.urgent-badge,
.click-badge {
    background: #000;
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-weight: 600;
}

.urgent-badge {
    background: #ff0000;
}

.video-container {
    width: 79%;
    margin: 20px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.video-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.play-button {
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    padding: 20px;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
}

.trust-badges {
    margin-top: 20px;
}

.trust-badges img {
    max-width: 400px;
    height: auto;
    opacity: 0.8;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 40px 0;
}

.cta-button {
    background: linear-gradient(353deg, #ffcc08 0%, #e1bc00 100%);
    color: #000;
    border: 2px solid #ff7500;
    padding: 15px 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse-cta 2s infinite;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    background: linear-gradient(353deg, #e1b407 0%, #ba9c01 100%);
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(0,0,0,0.3);
}

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

/* Comments Section */
.comments-section {
    max-width: 800px;
    margin: 32px auto;
    padding: 20px;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    border-radius: 0;
}

.comments-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comment {
    display: flex;
    margin-bottom: 20px;
    padding: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
}

.comment:hover {
    border-top: 3px solid #cc0000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 2px solid #e5e7eb;
    transition: border-color 0.3s ease;
}

.comment:hover .comment-avatar {
    border-color: #cc0000;
}

.comment-content {
    flex: 1;
}

.comment-author {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #385898;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.comment-author::after {
    content: "✓";
    background: #22c55e;
    color: white;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.comment-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.5;
    color: #333;
}

.comment-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #90949c;
}

.comment-meta span {
    cursor: pointer;
    transition: color 0.2s ease;
}

.comment-meta span:hover {
    color: #cc0000;
}

.comment-likes {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(66, 103, 178, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
}

.like-icon {
    width: 14px;
    height: 14px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #ffffff;
    border-top: 2px solid #d93025;
    margin-top: 50px;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid #333;
}

.footer-nav {
    display: flex;
    gap: 24px;
}

.footer-nav a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: #ffffff;
}

.footer-center {
    font-size: 14px;
    color: #d1d5db;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 20px;
    height: 20px;
    fill: #9ca3af;
    cursor: pointer;
    transition: fill 0.2s ease;
}

.social-icon:hover {
    fill: #ffffff;
}

.footer-disclaimer {
    padding: 20px 0;
    text-align: center;
    font-size: 12px;
    color: #9ca3af;
    line-height: 1.6;
}

/* Share Section */
.share-section {
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border: 2px solid #dee2e6;
    text-align: center;
}

.share-header h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.share-header p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 15px;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 100px;
    justify-content: center;
}

.share-btn svg {
    width: 16px;
    height: 16px;
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.facebook:hover {
    background: #166fe5;
    transform: translateY(-2px);
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.twitter:hover {
    background: #1a91da;
    transform: translateY(-2px);
}

.share-btn.whatsapp {
    background: #25d366;
    color: white;
}

.share-btn.whatsapp:hover {
    background: #22c55e;
    transform: translateY(-2px);
}

.share-btn.email {
    background: #ea4335;
    color: white;
}

.share-btn.email:hover {
    background: #d93025;
    transform: translateY(-2px);
}

.share-btn.copy-link {
    background: #6c757d;
    color: white;
}

.share-btn.copy-link:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.share-btn.copied {
    background: #28a745 !important;
    transform: scale(1.05);
}

.share-stats {
    font-size: 12px;
    color: #666;
    font-style: italic;
}

.share-stats #share-count {
    font-weight: 700;
    color: #cc0000;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header {
        padding: 12px 16px;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        transition: left 0.3s ease;
        border-top: 1px solid #e6e6e6;
    }

    .menu-checkbox:checked ~ .nav-menu {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .header-right {
        gap: 12px;
    }

    .breaking-content {
        padding: 0 16px;
        gap: 12px;
    }

    .breaking-text {
        font-size: 13px;
    }

    .live-updates-content {
        padding: 0 16px;
        gap: 12px;
        overflow-x: auto;
    }

    .american-time {
        top: 140px;
        right: 10px;
        font-size: 10px;
        padding: 6px 8px;
    }

    .article-title {
        font-size: 24px;
    }

    .article-subtitle {
        font-size: 16px;
    }

    .article-meta {
        flex-direction: column;
        gap: 15px;
    }

    .author-info {
        justify-content: center;
        text-align: center;
    }

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

    .video-section {
        padding: 20px 15px;
        margin: 30px 0;
    }

    .video-badges {
        gap: 10px;
    }

    .video-title {
        font-size: 20px;
    }

    .video-subtitle {
        font-size: 14px;
    }

    .video-container {
        width: 100%;
    }

    .video-overlay-text h3 {
        font-size: 18px;
    }

    .video-overlay-text p {
        font-size: 14px;
    }

    .cta-button {
        width: 90%;
        padding: 12px 20px;
        font-size: 14px;
    }

    .trust-badges img {
        max-width: 300px;
    }

    .comment {
        flex-direction: column;
        text-align: center;
    }

    .comment-avatar {
        align-self: center;
        margin-bottom: 10px;
        margin-right: 0;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-nav {
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .footer-nav a {
        font-size: 14px;
    }

    .footer-social {
        justify-content: center;
        gap: 16px;
    }

    .social-icon {
        width: 20px;
        height: 20px;
        padding: 6px;
    }

    .footer-disclaimers {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 32px 0;
    }

    .disclaimer-section {
        padding: 20px 16px;
    }

    .disclaimer-section h4 {
        font-size: 15px;
    }

    .disclaimer-section p {
        font-size: 12px;
    }

    .legal-links {
        flex-direction: column;
        gap: 12px;
    }

    .legal-link {
        text-align: center;
    }
}

/* Urgency Overlay Styles */
.urgency-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.urgency-content {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    margin: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 3px solid #ffff00;
    animation: urgency-pulse 2s infinite;
}

@keyframes urgency-pulse {
    0% { transform: scale(1); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5); }
    50% { transform: scale(1.02); box-shadow: 0 25px 50px rgba(255, 255, 0, 0.3); }
    100% { transform: scale(1); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5); }
}

.urgency-icon {
    font-size: 48px;
    margin-bottom: 15px;
    animation: shake 0.5s infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.urgency-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.urgency-content p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.urgency-highlight {
    background: rgba(255, 255, 0, 0.2);
    padding: 10px;
    border-radius: 10px;
    border: 2px solid #ffff00;
    font-weight: 700;
    animation: glow 1.5s infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 10px rgba(255, 255, 0, 0.5); }
    to { box-shadow: 0 0 20px rgba(255, 255, 0, 0.8); }
}

.continue-watching-btn {
    background: linear-gradient(135deg, #00ff00 0%, #00cc00 100%);
    color: #000;
    border: none;
    padding: 15px 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    margin: 20px 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.3);
    animation: button-pulse 1s infinite;
}

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

.continue-watching-btn:hover {
    background: linear-gradient(135deg, #00cc00 0%, #009900 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 255, 0, 0.4);
}

.urgency-timer {
    font-family: 'Courier New', monospace;
    font-size: 18px;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 10px;
    border: 2px solid #ffff00;
    margin-top: 15px;
}

.urgency-timer #urgency-countdown {
    color: #ffff00;
    font-size: 20px;
    text-shadow: 0 0 10px rgba(255, 255, 0, 0.8);
}

/* Mobile responsiveness for urgency overlay */
@media (max-width: 768px) {
    .urgency-content {
        padding: 30px 20px;
        margin: 10px;
    }
    
    .urgency-content h3 {
        font-size: 24px;
    }
    
    .urgency-content p {
        font-size: 14px;
    }
    
    .continue-watching-btn {
        font-size: 16px;
        padding: 12px 25px;
    }
    
    .urgency-timer {
        font-size: 16px;
    }
    
    .urgency-timer #urgency-countdown {
        font-size: 18px;
    }
}

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

    .article-title {
        font-size: 20px;
    }

    .content-text p {
        font-size: 14px;
    }

    .video-intro p {
        font-size: 14px;
    }

    .cta-button {
        font-size: 13px;
        padding: 10px 15px;
    }
    
    .share-buttons {
        gap: 8px;
    }
    
    .share-btn {
        min-width: 90px;
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .share-btn svg {
        width: 14px;
        height: 14px;
    }
}