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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #4A90E2 0%, #63B3E6 50%, #87CEEB 100%);
    color: #333;
    overflow-x: hidden;
}

/* Pixel animation in background */
.pixels {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.pixel {
    position: absolute;
    width: 20px;
    height: 20px;
    opacity: 0.6;
    animation: float 6s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 3.5em;
    color: #FF8C42;
    text-shadow: 3px 3px 0 #FFD93D;
    margin-bottom: 10px;
    font-weight: bold;
}

.subtitle {
    font-size: 1.5em;
    color: #7CB342;
    font-weight: 600;
    margin-bottom: 20px;
}

.author {
    font-size: 1.8em;
    color: #4A90E2;
    font-weight: 600;
    margin-bottom: 15px;
}

.tagline {
    font-size: 1.2em;
    color: #666;
    font-style: italic;
}

.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.book-cover {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.book-cover img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.book-info {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.book-info h2 {
    color: #7CB342;
    font-size: 2em;
    margin-bottom: 20px;
}

.book-info p {
    line-height: 1.8;
    font-size: 1.1em;
    color: #555;
    margin-bottom: 20px;
}

.features {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.features h2 {
    color: #FF8C42;
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 30px;
}

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

.feature-item {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #E8F5E9 0%, #F1F8E9 100%);
    border-radius: 15px;
    border: 3px solid #7CB342;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.feature-item h3 {
    color: #4A90E2;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.feature-item p {
    color: #666;
    font-size: 0.95em;
}

/* ========================================
   BLOG ARTICLE STYLES - NEW
   ======================================== */

.blog-article {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.article-title {
    color: #FF8C42;
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
}

.article-intro {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #FFF9E6 0%, #FFFEF8 100%);
    border-radius: 15px;
    border-left: 5px solid #FFD93D;
}

.article-intro p {
    margin-bottom: 20px;
}

.article-intro em {
    font-style: italic;
    color: #FF8C42;
    font-weight: 600;
}

.article-section {
    margin-bottom: 35px;
    padding: 25px;
    background: #FAFAFA;
    border-radius: 12px;
}

.article-section h3 {
    color: #4A90E2;
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: 700;
}

.article-section p {
    line-height: 1.8;
    font-size: 1.05em;
    color: #555;
    margin-bottom: 15px;
}

.article-section strong {
    color: #FF8C42;
    font-weight: 700;
}

.highlight-section {
    background: linear-gradient(135deg, #E3F2FD 0%, #F3E5F5 100%);
    border-left: 5px solid #4A90E2;
}

.advice-list, .routine-list {
    margin-left: 20px;
    margin-top: 20px;
}

.advice-list li, .routine-list li {
    color: #555;
    font-size: 1.05em;
    margin-bottom: 12px;
    line-height: 1.7;
    padding-left: 10px;
}

.routine-list li strong {
    color: #7CB342;
}

.tip-box {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #FF8C42;
    margin-top: 20px;
}

.tip-box p {
    margin: 0;
    color: #555;
    line-height: 1.7;
}

.tip-box strong {
    color: #E65100;
}

/* ======================================== */

.cta-section {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #FFD93D 0%, #FF8C42 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 40px;
}

.cta-section h2 {
    color: white;
    font-size: 2.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-button {
    display: inline-block;
    padding: 20px 50px;
    font-size: 1.3em;
    color: white;
    background: #7CB342;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    background: #689F38;
    transform: scale(1.05);
}

/* Author Meetings Section */
.author-meetings {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.author-meetings h2 {
    color: #7CB342;
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 20px;
}

.meetings-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.meetings-intro p {
    font-size: 1.15em;
    color: #555;
    line-height: 1.8;
}

.meetings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.meeting-card {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFF4D6 100%);
    padding: 30px;
    border-radius: 15px;
    border: 3px solid #FFD93D;
    text-align: center;
    transition: all 0.3s ease;
}

.meeting-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.3);
}

.meeting-icon {
    font-size: 3.5em;
    margin-bottom: 15px;
}

.meeting-card h3 {
    color: #FF8C42;
    font-size: 1.4em;
    margin-bottom: 15px;
}

.meeting-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95em;
}

/* Contact Section */
.contact-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-section h2 {
    color: #4A90E2;
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 15px;
}

.contact-intro {
    text-align: center;
    font-size: 1.15em;
    color: #555;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 1em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-size: 1em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4A90E2;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    width: 100%;
    padding: 15px 30px;
    font-size: 1.2em;
    color: white;
    background: linear-gradient(135deg, #7CB342 0%, #689F38 100%);
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(124, 179, 66, 0.3);
}

.submit-button:hover {
    background: linear-gradient(135deg, #689F38 0%, #558B2F 100%);
    transform: translateY(-2px);
    box-shadow: 0 7px 25px rgba(124, 179, 66, 0.4);
}

footer {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    color: #666;
}

/* Form Messages */
.form-message {
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    font-size: 1.1em;
    font-weight: 600;
    text-align: center;
    transition: opacity 0.3s ease;
}

.form-message.success {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    border: 2px solid #7CB342;
    color: #2E7D32;
}

.form-message.error {
    background: linear-gradient(135deg, #FFEBEE 0%, #FFCDD2 100%);
    border: 2px solid #E53935;
    color: #C62828;
}

/* Responsive */
@media (max-width: 768px) {
    .main-content {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2.5em;
    }

    .subtitle {
        font-size: 1.2em;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .meetings-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 0 10px;
    }

    /* Blog Article Responsive */
    .blog-article {
        padding: 30px 20px;
    }

    .article-title {
        font-size: 2em;
    }

    .article-section h3 {
        font-size: 1.5em;
    }

    .article-intro, .article-section {
        padding: 20px;
    }
}
