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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

header {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.top-bar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    padding: 10px 15px;
    color: white;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.menu-btn:hover {
    background: rgba(255,255,255,0.3);
}

.user-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.login-btn {
    background: white;
    color: #ff6b35;
    border: none;
    padding: 8px 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

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

nav {
    background: white;
    border-bottom: 3px solid #ff6b35;
}

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

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 14px;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: #ff6b35;
}

.nav-links a.active {
    color: #ff6b35;
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 3px;
}

.logo-section {
    text-align: center;
    padding: 30px 20px;
    background: white;
    position: relative;
}

.logo-section h1 {
    font-size: 56px;
    font-weight: 900;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.logo-section p {
    color: #666;
    font-style: italic;
    font-size: 16px;
}

.date {
    color: #999;
    font-size: 14px;
    margin-bottom: 10px;
}

.subscribe-btn {
    position: absolute;
    right: 20px;
    top: 20px;
    background: linear-gradient(135deg, #ffa726 0%, #ff6b35 100%);
    color: white;
    padding: 12px 25px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(255,107,53,0.3);
    transition: all 0.3s;
}

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

.tabs {
    background: #fff;
    border-bottom: 2px solid #f0f0f0;
}

.tabs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 30px;
}

.tab {
    padding: 15px 0;
    cursor: pointer;
    color: #666;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    font-size: 14px;
}

.tab:hover {
    color: #ff6b35;
}

.tab.active {
    color: #ff6b35;
    border-bottom: 3px solid #ff6b35;
}

.main-container {
    max-width: 1400px;
    margin: 30px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.featured-section {
    background: white;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.featured-image {
    position: relative;
    height: 400px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.featured-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.featured-image:hover .video-overlay {
    opacity: 1;
}

.upload-prompt {
    text-align: center;
    color: white;
    padding: 20px;
}

.upload-prompt h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.file-input-wrapper {
    position: relative;
    display: inline-block;
}

.file-input-btn {
    background: #ff6b35;
    color: white;
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.file-input-btn:hover {
    background: #ff8c42;
    transform: translateY(-2px);
}

#videoUpload {
    display: none;
}

.constitution-banner {
    width: 100%;
    height: 500px;
    background: white;
    margin-top: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.constitution-bannerd{
    width: 100%;
    height: 500px;
    background: white;
    margin-top: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.constitution-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.newsletter-box {
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
    padding: 30px;
    color: white;
    box-shadow: 0 4px 15px rgba(255,107,53,0.2);
}

.newsletter-box h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #fff;
}

.newsletter-box p {
    margin-bottom: 20px;
    opacity: 0.95;
}

.newsletter-box input {
    width: 100%;
    padding: 12px;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    margin-bottom: 15px;
    color: white;
    font-size: 14px;
}

.newsletter-box input::placeholder {
    color: rgba(255,255,255,0.7);
}

.newsletter-box button {
    width: 100%;
    padding: 12px;
    background: white;
    color: #ff6b35;
    border: none;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
}

.newsletter-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.news-section {
    background: white;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.news-section h2 {
    font-size: 32px;
    color: #ff6b35;
    margin-bottom: 20px;
    font-style: italic;
}

.news-item {
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item h3 {
    color: #333;
    font-size: 18px;
    margin-bottom: 8px;
    line-height: 1.4;
    cursor: pointer;
    transition: color 0.3s;
}

.news-item h3:hover {
    color: #ff6b35;
}

.news-time {
    color: #999;
    font-size: 13px;
}

@media (max-width: 968px) {
    .main-container {
        grid-template-columns: 1fr;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
    }

    .logo-section h1 {
        font-size: 40px;
    }
}