:root {
    --apple-light: #f5f5f7;
    --apple-dark: #1d1d1f;
    --apple-accent: #06c;
    --casino-gold: #ffd700;
    --casino-red: #e2293f;
    --casino-dark: #0a0a0a;
    --text-dark: #333;
    --text-light: #777;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: var(--apple-light);
    color: var(--text-dark);
}

a{
    text-decoration: none;
    color: var(--apple-accent);
}

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

header {
    background-color: #FF4F2E;
    color: white;
    padding: 3rem 0;
    border-bottom: 4px solid var(--casino-gold);
    position: relative;
}

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

header h1 {
    margin: 0;
    font-size: 3rem;
    font-family: "Mogra", system-ui;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

header h1 span {
    color: var(--casino-gold);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--apple-dark);
    margin-bottom: 2rem;
    text-align: center;
}

article {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-detail {
    margin-top: 2rem;
}

.article-preview:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

h1, h2 {
    color: var(--apple-dark);
    margin-top: 0;
    font-family: "Mogra", system-ui;
    font-weight: 400;
    font-style: normal;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

h2 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

h2 a:hover {
    color: var(--casino-red);
}

.meta {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.article-content p {
    margin-bottom: 1.5rem;
}

.preview-content {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.error-message {
    color: var(--casino-red);
    text-align: center;
    margin: 2rem 0;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--apple-accent);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn:hover {
    background: var(--casino-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.back-link {
    margin-bottom: 2rem;
    display: inline-block;
}


.img_blog{
    width:40% !important;
    text-align:center;
    border-radius:60%;
}

.h2_blog{text-align:center;}


@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    article {
        padding: 1.5rem;
    }
}