/* ============================================
   İlanen Duyurulur - Ana Stil Dosyası
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&family=Playfair+Display:wght@700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-yellow: #ffc107;
    --primary-yellow-dark: #e6ac00;
    --primary-yellow-light: #ffecb3;
    --dark-bg: #1a1a2e;
    --darker-bg: #16213e;
    --text-dark: #222;
    --text-light: #666;
    --text-white: #fff;
    --border-color: #e5e5e5;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 5px 20px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background: #f5f5f5;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Page Transition */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-yellow);
    z-index: 9999;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.page-transition.active {
    transform: scaleX(1);
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--dark-bg);
    color: var(--text-white);
    padding: 8px 0;
    font-size: 13px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.date-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.date-info i {
    color: var(--primary-yellow);
    margin-right: 5px;
}

.currency-bar {
    display: flex;
    gap: 20px;
}

.currency-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.currency-item span:first-child {
    color: #aaa;
}

.currency-item strong {
    color: var(--primary-yellow);
}

.currency-item .up {
    color: #4caf50;
}

.currency-item .down {
    color: #f44336;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: var(--transition);
}

.social-icons a.facebook { background: #3b5998; color: white; }
.social-icons a.twitter { background: #1da1f2; color: white; }
.social-icons a.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }
.social-icons a.youtube { background: #ff0000; color: white; }

.social-icons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

/* ============================================
   HEADER
   ============================================ */
.header {
    background: white;
    padding: 15px 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark-bg);
}

.logo h1 i {
    color: var(--primary-yellow);
    margin-right: 10px;
    font-size: 32px;
}

.logo h1 span {
    color: var(--primary-yellow);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-links {
    display: flex;
    gap: 20px;
}

.header-links a {
    color: var(--text-dark);
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 5px;
    transition: var(--transition);
}

.header-links a:hover {
    background: var(--primary-yellow);
    color: var(--dark-bg);
}

.search-box {
    display: flex;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    overflow: hidden;
    transition: var(--transition);
}

.search-box:focus-within {
    border-color: var(--primary-yellow);
}

.search-box input {
    border: none;
    padding: 10px 20px;
    width: 200px;
    font-family: inherit;
    outline: none;
}

.search-box button {
    background: var(--primary-yellow);
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: var(--transition);
}

.search-box button:hover {
    background: var(--primary-yellow-dark);
}

/* ============================================
   MAIN NAVIGATION
   ============================================ */
.main-nav {
    background: var(--primary-yellow);
    padding: 0;
    position: sticky;
    top: 70px;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.main-nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.main-nav ul li a {
    display: block;
    padding: 15px 25px;
    color: var(--dark-bg);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--dark-bg);
    transition: var(--transition);
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 80%;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    background: rgba(0,0,0,0.1);
}

/* ============================================
   BREAKING NEWS TICKER
   ============================================ */
.breaking-news {
    background: #d32f2f;
    padding: 10px 0;
    overflow: hidden;
}

.breaking-news .container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.breaking-label {
    background: white;
    color: #d32f2f;
    padding: 5px 15px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    border-radius: 3px;
    white-space: nowrap;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.ticker-wrap {
    overflow: hidden;
    flex: 1;
}

.ticker {
    display: flex;
    animation: ticker 30s linear infinite;
}

.ticker-item {
    color: white;
    white-space: nowrap;
    padding: 0 50px;
    font-weight: 600;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    padding: 30px 0;
}

.hero-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.hero-big {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
    display: block;
}

.hero-big img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.hero-big:hover img {
    transform: scale(1.05);
}

.hero-big .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: white;
}

.hero-big .overlay h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.hero-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-small {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    flex: 1;
    display: block;
}

.hero-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.hero-small:hover img {
    transform: scale(1.05);
}

.hero-small .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
}

.hero-small .overlay h3 {
    font-size: 14px;
    font-weight: 600;
}

.category-tag {
    display: inline-block;
    background: var(--primary-yellow);
    color: var(--dark-bg);
    padding: 5px 12px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* ============================================
   AD BANNER
   ============================================ */
.ad-banner {
    background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
    border: 2px dashed #ccc;
    padding: 30px;
    text-align: center;
    margin: 20px 0;
    border-radius: 10px;
}

.ad-banner p {
    color: #999;
    font-weight: 600;
}

/* ============================================
   MAIN CONTENT LAYOUT
   ============================================ */
.section {
    padding: 30px 0;
}

.main-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

.content-left {
    min-width: 0;
}

.mt-30 {
    margin-top: 30px;
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-yellow);
}

.section-title h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-bg);
}

.section-title h2 i {
    color: var(--primary-yellow);
    margin-right: 10px;
}

.more-link {
    color: var(--primary-yellow-dark);
    font-weight: 700;
    font-size: 14px;
}

.more-link:hover {
    color: var(--dark-bg);
}

/* ============================================
   TABS
   ============================================ */
.tabs-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.tabs-nav {
    display: flex;
    background: var(--primary-yellow);
}

.tabs-nav button {
    flex: 1;
    padding: 15px 20px;
    border: none;
    background: transparent;
    font-family: inherit;
    font-weight: 700;
    font-size: 14px;
    color: var(--dark-bg);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.tabs-nav button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--dark-bg);
    transform: scaleX(0);
    transition: var(--transition);
}

.tabs-nav button.active::after,
.tabs-nav button:hover::after {
    transform: scaleX(1);
}

.tabs-nav button.active {
    background: rgba(0,0,0,0.1);
}

.tab-content {
    display: none;
    padding: 20px;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   NEWS GRID
   ============================================ */
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: block;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.news-card .image-wrap {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.news-card .image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .image-wrap img {
    transform: scale(1.1);
}

.news-card .image-wrap .category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
}

.news-card .content {
    padding: 20px;
}

.news-card .content h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card:hover .content h3 {
    color: var(--primary-yellow-dark);
}

.news-card .meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: var(--text-light);
}

.news-card .meta i {
    margin-right: 5px;
}

/* ============================================
   LATEST LIST
   ============================================ */
.latest-list {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.latest-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.latest-item:last-child {
    border-bottom: none;
}

.latest-item:hover {
    background: var(--primary-yellow-light);
}

.latest-item .time {
    min-width: 50px;
    font-weight: 700;
    color: var(--primary-yellow-dark);
    font-size: 14px;
}

.latest-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

.latest-item:hover h4 {
    color: var(--dark-bg);
}

/* ============================================
   SIDEBAR
   ============================================ */
.sidebar {
    position: sticky;
    top: 140px;
    align-self: start;
}

.sidebar-widget {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-yellow);
}

.widget-title i {
    color: var(--primary-yellow);
    margin-right: 10px;
}

/* Prayer Times */
.prayer-times {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.prayer-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: var(--transition);
}

.prayer-item:hover {
    background: var(--primary-yellow-light);
}

.prayer-item .name {
    font-weight: 600;
    color: var(--text-dark);
}

.prayer-item .time {
    font-weight: 700;
    color: var(--primary-yellow-dark);
}

/* Weather Widget */
.weather-widget {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    color: white;
}

.weather-icon {
    font-size: 50px;
}

.weather-info h4 {
    font-size: 32px;
    font-weight: 700;
}

.weather-info p {
    font-size: 14px;
    opacity: 0.9;
}

/* Social Follow */
.social-follow {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-follow a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    transition: var(--transition);
}

.social-follow a:hover {
    transform: translateX(5px);
}

.social-follow a.facebook { background: #3b5998; }
.social-follow a.twitter { background: #1da1f2; }
.social-follow a.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-follow a.youtube { background: #ff0000; }

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
    background: var(--dark-bg);
    padding: 40px 0;
    margin-top: 30px;
}

.video-section .section-title {
    border-bottom-color: var(--primary-yellow);
}

.video-section .section-title h2 {
    color: white;
}

.video-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.video-main {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    display: block;
}

.video-main img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.video-main .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--dark-bg);
    transition: var(--transition);
}

.video-main:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-main .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

.video-main .overlay h3 {
    color: white;
    font-size: 18px;
}

.video-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.video-item {
    display: flex;
    gap: 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.video-item:hover {
    background: rgba(255,255,255,0.2);
}

.video-item img {
    width: 120px;
    height: 70px;
    object-fit: cover;
}

.video-item h4 {
    color: white;
    font-size: 13px;
    padding: 10px;
    display: flex;
    align-items: center;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--darker-bg);
    color: white;
    padding: 50px 0 0;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-widget h3 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-yellow);
    display: inline-block;
}

.footer-widget h3 i {
    color: var(--primary-yellow);
    margin-right: 10px;
}

.footer-widget p {
    color: #aaa;
    line-height: 1.8;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    color: #aaa;
    transition: var(--transition);
}

.footer-widget ul li a:hover {
    color: var(--primary-yellow);
    padding-left: 5px;
}

.footer-widget ul li i {
    color: var(--primary-yellow);
    margin-right: 10px;
    width: 20px;
}

.footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    color: #888;
    font-size: 14px;
}

.footer-bottom p:last-child {
    color: var(--primary-yellow);
    font-weight: 700;
    margin-top: 5px;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-yellow);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--dark-bg);
    color: var(--primary-yellow);
    transform: translateY(-5px);
}

/* ============================================
   PAGE SPECIFIC STYLES
   ============================================ */
/* About & Contact Pages */
.page-header {
    background: linear-gradient(135deg, var(--dark-bg), var(--darker-bg));
    padding: 60px 0;
    text-align: center;
    color: white;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.page-header p {
    color: #aaa;
    font-size: 16px;
}

.page-header .breadcrumb {
    margin-top: 20px;
}

.page-header .breadcrumb a {
    color: var(--primary-yellow);
}

.page-header .breadcrumb span {
    color: #888;
}

.page-content {
    padding: 40px 0;
}

.content-box {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.content-box h2 {
    font-size: 24px;
    color: var(--dark-bg);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-yellow);
}

.content-box p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-box ul {
    margin: 20px 0;
}

.content-box ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.content-box ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-weight: bold;
}

/* Contact Form */
.contact-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: var(--primary-yellow);
    color: var(--dark-bg);
    padding: 15px 40px;
    border: none;
    border-radius: 10px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--dark-bg);
    color: var(--primary-yellow);
}

/* Contact Info */
.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-card i {
    font-size: 40px;
    color: var(--primary-yellow);
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 18px;
    color: var(--dark-bg);
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text-light);
}

/* Map */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ============================================
   ARTICLE / DETAIL PAGE
   ============================================ */
.article-header {
    background: linear-gradient(135deg, var(--dark-bg), var(--darker-bg));
    padding: 40px 0;
    color: white;
}

.article-header .category-tag {
    margin-bottom: 15px;
}

.article-header h1 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #aaa;
}

.article-meta i {
    margin-right: 5px;
    color: var(--primary-yellow);
}

.article-content {
    padding: 40px 0;
}

.article-body {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.article-body img {
    width: 100%;
    border-radius: 10px;
    margin: 20px 0;
}

.article-body p {
    color: var(--text-dark);
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 16px;
}

.article-body h2 {
    font-size: 22px;
    color: var(--dark-bg);
    margin: 30px 0 15px;
}

.article-tags {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.article-tags span {
    font-weight: 600;
    margin-right: 10px;
}

.article-tags a {
    display: inline-block;
    padding: 5px 15px;
    background: #f5f5f5;
    border-radius: 20px;
    font-size: 13px;
    margin: 5px;
    transition: var(--transition);
}

.article-tags a:hover {
    background: var(--primary-yellow);
}

/* Share Buttons */
.share-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.share-buttons a {
    padding: 10px 20px;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.share-buttons a.facebook { background: #3b5998; }
.share-buttons a.twitter { background: #1da1f2; }
.share-buttons a.whatsapp { background: #25d366; }

.share-buttons a:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Related Articles */
.related-articles {
    margin-top: 40px;
}

.related-articles h3 {
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-yellow);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .main-content {
        grid-template-columns: 1fr 300px;
    }
}

@media (max-width: 992px) {
    .main-content {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
    }
    
    .hero-main {
        grid-template-columns: 1fr;
    }
    
    .hero-side {
        flex-direction: row;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        justify-content: center;
    }
    
    .currency-bar {
        display: none;
    }
    
    .header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-right {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .main-nav ul li a {
        padding: 12px 15px;
        font-size: 12px;
    }
    
    .hero-big {
        height: 300px;
    }
    
    .hero-side {
        flex-direction: column;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .tabs-nav {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .article-header h1 {
        font-size: 24px;
    }
    
    .content-box {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 22px;
    }
    
    .search-box input {
        width: 150px;
    }
    
    .hero-big {
        height: 250px;
    }
    
    .hero-big .overlay h2 {
        font-size: 18px;
    }
    
    .breaking-news .container {
        flex-direction: column;
        align-items: flex-start;
    }
}