:root {
    /* Ana Renkler */
    --primary: #4299E1;
    --secondary: #34B289;
    --accent: #F5A623;
    
    /* Zemin ve Arka Plan */
    --bg-main: #F9FAFC;
    --bg-secondary: #F0F2F7;
    --bg-tertiary: #FFFFFF;
    --bg-dark: #1F2837;
    
    /* Tipografi */
    --text-heading: #1A2233;
    --text-subheading: #384259;
    --text-body: #4A5568;
    --text-secondary: #718096;
    --text-muted: #A0AEC0;
    --text-light: #E2E8F0;
    --text-link: #3451B2;
    --text-link-hover: #2A4090;
    
    /* Butonlar */
    --btn-primary: #3451B2;
    --btn-primary-hover: #2A4090;
    --btn-primary-active: #1E3179;
    --btn-secondary: #EDF2F7;
    --btn-secondary-text: #384259;
    --btn-secondary-hover: #E2E8F0;
    
    /* Durum ve Bildirim */
    --success: #34B289;
    --success-bg: #E3F9F3;
    --warning: #F5A623;
    --warning-bg: #FDF6EA;
    --error: #E53E3E;
    --error-bg: #FEF1F1;
    --info: #3d9ae6;
    --info-bg: #EBF8FF;
    
    /* Kenarlıklar */
    --border: #E2E8F0;
    --border-emphasized: #CBD5E0;
    --divider: #EDF2F7;
    --focus-border: #3451B2;
    --input-border: #CBD5E0;
    
    /* Formlar */
    --input-bg: #FFFFFF;
    --input-disabled: #EDF2F7;
    --placeholder: #A0AEC0;
    
    /* Modal */
    --modal-bg: #FFFFFF;
    --modal-shadow: rgba(0, 0, 0, 0.1);
    --modal-overlay: rgba(26, 32, 44, 0.4);
    
    /* Tablolar */
    --table-header-bg: #F7FAFC;
    --table-divider: #EDF2F7;
    --table-alt-row: #F9FAFC;
    --table-hover: #F0F5FF;
    --table-selected: #EBF4FF;
    
    /* Navigasyon */
    --nav-bg: #FFFFFF;
    --nav-hover: #EDF2F7;
    
    /* Kartlar */
    --card-bg: #FFFFFF;
    --card-shadow: rgba(0, 0, 0, 0.05);
    
    /* Tooltip */
    --tooltip-bg: #2D3748;
    --tooltip-text: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-body);
    background-color: var(--bg-main);
    overflow-x: hidden;
    user-select: none;
}
/**************************************************************************************************************************************************************************/

/* Buttons */
.btn {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 12px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--btn-primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--btn-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 81, 178, 0.2);
    color: #fff;

}

.btn-secondary {
    background-color: var(--btn-secondary);
    color: var(--btn-secondary-text);
}

/* DELETE Button (Hata Butonu gibi) */
.btn-delete {
    background-color: var(--error);
    color: #fff;
  }
  
  .btn-delete:hover {
    background-color: #cc3535; /* error renginin hover tonu */
    transform: translateY(-2px);
    color: #fff;

  }
  
  .btn-delete:active {
    background-color: #b32d2d; /* error renginin daha koyu tonu */
    transform: translateY(-2px);
    color: #fff;

  }

.btn-accent {
    background-color: var(--accent);
    color: white;
}

.btn-accent:hover {
    background-color: #e89b1e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.2);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--btn-primary);
    color: var(--btn-primary);
}

.btn-outline:hover {
    background-color: var(--btn-primary);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-light {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--btn-primary);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 12px 24px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/**************************************************************************************************************************************************************************/
/*header*/

/* Header & Navigation */
.header {
    background-color: var(--bg-tertiary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 35px;
}
.logo a{
    display: flex;
    flex-direction: row;
}

.testimg {
    width: 50px;
    height: auto;
    display: block;
    max-width: 100%;
}
.logo_text{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-family: "Orbitron", sans-serif !important;
    font-weight: 500;
    color: var(--bg-dark);
}
.main_logo_txt{    
    font-size: 20px;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-family: "Orbitron", sans-serif !important;
}
.second_logo_txt{
    font-size: 10px;
    font-family: "Orbitron", sans-serif !important;
}


.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu li {
    margin: 0 15px;
}

.nav-link {
    color: var(--text-subheading);
    font-weight: 500;
}

.nav-link:hover {
    color: var(--btn-primary);
}


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

h1, h2, h3, h4, h5, h6 {
    color: var(--text-heading);
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: var(--text-link);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--text-link-hover);
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}
.def_img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}
.cta-buttons .btn {
    margin-left: 10px;
}
/* Hero Section */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #f6f9fc 0%, #edf2f7 100%);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

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

.hero-title .highlight {
    color: var(--btn-primary);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

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

.hero-image {
    flex: 1;
    text-align: center;
    max-width: 90%;
}

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}
/**************************************************************************************************************************************************************************/

/* Features Section */
.features {
    background-color: var(--bg-tertiary);
}

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

.feature-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--card-shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--info-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--info);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-secondary);
}

/* Benefits Section */
.benefits {
    background-color: var(--bg-secondary);
}

.benefits .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.benefits-content {
    flex: 1;
    max-width: 550px;
}

.benefits-list {
    margin: 30px 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.benefits-list i {
    margin-right: 15px;
    color: var(--success);
    font-size: 1.2rem;
}

.benefits-image {
    flex: 1;
    text-align: center;
    perspective: 1000px; /* 3D dönüşlerin görünmesi için gerekli */

}

.benefits-image img {
    max-width: 90%;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1); /* Çok hafif bir kenarlık */
    transform: rotateY(-25deg);
    transition: box-shadow 0.2s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4); /* Daha belirgin gölge */
    will-change: box-shadow;
}

/* Pricing Section */
.pricing {
    background-color: var(--bg-tertiary);
}

.pricing-switcher {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    background-color: var(--bg-secondary);
    border-radius: 50px;
    padding: 5px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.pricing-switcher button {
    background: none;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.pricing-switcher button.active {
    background-color: var(--btn-primary);
    color: white;
}

.pricing-plans {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing-plan {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--card-shadow);
    width: 100%;
    max-width: 350px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.pricing-plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-plan.featured {
    transform: scale(1.05);
    border: 2px solid var(--accent);
    z-index: 2;
}
.pricing-plan.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 12px;
    right: -30px;
    transform: rotate(45deg);
    background-color: var(--accent);
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.plan-header {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, #fff 100%);
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-heading);
}

.plan-price {
    margin-bottom: 15px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
    position: relative;
    top: 5px;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-heading);
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.plan-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.plan-features {
    padding: 30px 20px;
    flex: 1;
}

.plan-features ul {
    list-style: none;
}

.plan-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.plan-features i {
    margin-right: 10px;
    font-size: 1rem;
}

.plan-features i.fa-check {
    color: var(--success);
}

.plan-features i.fa-times {
    color: var(--text-muted);
}

.plan-features li.disabled {
    color: var(--text-muted);
    text-decoration: line-through;
}

.plan-footer {
    padding: 20px;
    text-align: center;
    border-top: 1px solid var(--border);
}

.plan-note {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    padding: 15px;
    background-color: var(--success-bg);
    border-radius: 10px;
    color: var(--success);
}

.pricing-guarantee i {
    margin-right: 10px;
    font-size: 1.3rem;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--bg-secondary);
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px var(--card-shadow);
    transition: all 0.3s ease;
    max-width: 350px;
    flex: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: var(--accent);
    font-size: 1.1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 3px;
}

.author-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* FAQ Section */
.faq {
    background-color: var(--bg-tertiary);
}

.faq-grid {
    display: block;
    width: 100%;
}

.faq-item {
    width: 100%;
    margin-bottom: 20px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px var(--card-shadow);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Bu değeri içerik yüksekliğine göre ayarla */
    padding: 20px;
    border-top: 1px solid var(--border);
}
/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--btn-primary) 0%, var(--primary) 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

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

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}
@media (max-width:1124px){
    .navbar{
        justify-content: space-around;
    }
    .cta-buttons{
        padding: 0;
        margin: 0;
        gap: 0;
    }
    .cta-buttons .btn{
        font-size: 10px;
    }
    .logo {
        gap: 0;
        display: flex;
        align-items: center;
    }
    .logo img{
        width: 45px;
        height:35px;
        padding-right: 10px;
        padding-top: 10px;
    }
    .hero-image{
        display:none;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
     .navbar{
        justify-content: space-around;
    }
    .cta-buttons{
        padding: 0;
        margin: 0;
        gap: 0;
    }
    .cta-buttons .btn{
        font-size: 10px;
    }
    .logo {
        gap: 0;
        display: flex;
        align-items: center;
    }
    .logo img{
        width: 45px;
        height:35px;
        padding-right: 10px;
        padding-top: 10px;
    }
    .hero .container,
    .benefits .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content,
    .benefits-content {
        margin-bottom: 30px;
        max-width: 100%;
    }
    
    .hero-image,
    .benefits-image {
        margin-top: 30px;
    }
    
    .hero-image img,
    .benefits-image img {
        max-width: 100%;
    }
    
    .benefits-list li {
        justify-content: center;
    }
    
    .pricing-plan {
        max-width: 100%;
    }
    
    .pricing-plan.featured {
        transform: none;
        order: -1;
    }
    
    .pricing-plan.featured:hover {
        transform: translateY(-10px);
    }
    
    .faq-grid {
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .testimonials-slider {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial-card {
        max-width: 100%;
        margin-bottom: 20px;
    }
    
}

/**************************************************************************************************************************************************************/

/* Kompakt Premium Search Section Styling */
.search_content {
    background-color: var(--bg-tertiary);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 1rem;
    max-width: 320px;
    position: relative;
    margin: 1rem 0;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.search_content:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.search-container {
    width: 100%;
}

#search-form {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 0.5rem;
}

.search-box {
    grid-column: 1 / 3;
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
    color: var(--text-body);
    background-color: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 6px;
    transition: all 0.2s ease;
}

.search-box:focus {
    outline: none;
    border-color: var(--focus-border);
    box-shadow: 0 0 0 2px rgba(52, 81, 178, 0.1);
}

.search-box::placeholder {
    color: var(--placeholder);
    font-size: 0.85rem;
}

.search-select {
    grid-column: 1 / 2;
    padding: 0.6rem 0.8rem;
    font-size: 0.85rem;
    color: var(--text-body);
    background-color: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 6px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23718096' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    transition: all 0.2s ease;
}

.search-select:focus {
    outline: none;
    border-color: var(--focus-border);
    box-shadow: 0 0 0 2px rgba(52, 81, 178, 0.1);
}

.search-button {
    grid-column: 2 / 3;
    padding: 0.6rem;
    background-color: var(--btn-primary);
    color: white;
    font-weight: 500;
    font-size: 0.85rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.search-button:hover {
    background-color: var(--btn-primary-hover);
}

.search-button:active {
    background-color: var(--btn-primary-active);
    transform: translateY(1px);
}

.search-button i {
    font-size: 0.9rem;
}

.suggestion-box {
    position: absolute;
    top: calc(100% - 0.5rem);
    left: 0;
    width: 100%;
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    z-index: 999;
    max-height: 250px;
    overflow-y: auto;
    padding: 0.75rem;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.suggestions-section {
    margin-bottom: 0.75rem;
}

.suggestions-section:last-child {
    margin-bottom: 0;
}

.suggestions-section h4 {
    color: var(--text-subheading);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid var(--divider);
}

.suggestions-section ul {
    list-style: none;
}

.suggestions-section ul li {
    padding: 0.4rem 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.15s ease;
    margin-bottom: 0.15rem;
    font-size: 0.85rem;
    color: var(--text-body);
}

.suggestions-section ul li:hover {
    background-color: var(--nav-hover);
    color: var(--text-heading);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .search_content {
        max-width: 100%;
    }
}

/* Custom compact scrollbar */
.suggestion-box::-webkit-scrollbar {
    width: 4px;
}

.suggestion-box::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

.suggestion-box::-webkit-scrollbar-thumb {
    background: var(--text-muted);
    border-radius: 4px;
}

/* Accent border top */
.search_content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 10px 10px 0 0;
}

/**************************************************************************************************************************************************************/
/* Ek stiller - mevcut CSS'inize eklenebilir */
        .news {
            background-color: var(--bg-tertiary);
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .news-card {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px var(--card-shadow);
            transition: all 0.3s ease;
            overflow: hidden;
            border: 1px solid var(--border);
            position: relative;
        }

        .news-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .news-card-image {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .news-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .news-card:hover .news-card-image img {
            transform: scale(1.05);
        }

        .news-category {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: var(--btn-primary);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .news-category.featured {
            background-color: var(--accent);
        }

        .news-category.update {
            background-color: var(--secondary);
        }

        .news-date {
            position: absolute;
            bottom: 15px;
            right: 15px;
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 5px 10px;
            border-radius: 15px;
            font-size: 0.75rem;
            font-weight: 500;
        }

        .news-content {
            padding: 25px;
        }

        .news-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--text-heading);
            margin-bottom: 12px;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-excerpt {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid var(--border);
            margin-top: auto;
        }

        .news-author {
            display: flex;
            align-items: center;
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        .news-author i {
            margin-right: 5px;
            color: var(--btn-primary);
        }

        .news-read-more {
            color: var(--btn-primary);
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .news-read-more:hover {
            color: var(--btn-primary-hover);
            transform: translateX(3px);
        }

        .news-read-more i {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }

        .news-read-more:hover i {
            transform: translateX(3px);
        }

        .news-stats {
            display: flex;
            gap: 15px;
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-top: 10px;
        }

        .news-stats span {
            display: flex;
            align-items: center;
        }

        .news-stats i {
            margin-right: 4px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .news-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .news-card-image {
                height: 180px;
            }
            
            .news-content {
                padding: 20px;
            }
            
            .news-title {
                font-size: 1.2rem;
            }
        }