/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #D4A574;
    --secondary-color: #C4956C;
    --dark-bg: #3E3731;
    --light-bg: #FAF8F5;
    --cream: #F5F1E8;
    --text-dark: #3E3731;
    --text-light: #8B7E74;
    --success-green: #9CAF88;
    --warning-red: #C17767;
    --card-shadow: 0 10px 30px rgba(62, 55, 49, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, #F5F1E8 0%, #E8DCC8 100%);
    min-height: 100vh;
}

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

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(62, 55, 49, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    color: white;
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.cookie-link:hover {
    color: #fff;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 16px;
    white-space: nowrap;
}

.btn-primary:hover {
    background: #45b8b0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #D4A574 0%, #C4956C 100%);
    padding: 80px 20px 60px;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    opacity: 0.95;
}

/* Comparison Section */
.comparison {
    background: white;
    padding: 60px 20px;
}

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

.comparison-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.comparison-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-header {
    padding: 25px;
    text-align: center;
    color: white;
}

.bad-way .card-header {
    background: linear-gradient(135deg, #C17767 0%, #B06757 100%);
}

.good-way .card-header {
    background: linear-gradient(135deg, #9CAF88 0%, #8A9E78 100%);
}

.card-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0;
}

.card-body {
    padding: 30px;
}

.description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Chat Mockup */
.chat-mockup {
    background: #E5DDD5;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.1);
}

.chat-header {
    background: #075E54;
    padding: 15px;
    display: flex;
    justify-content: flex-end;
}

.chat-icons {
    display: flex;
    gap: 15px;
}

.icon {
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.icon:hover {
    opacity: 0.7;
}

.chat-messages {
    padding: 20px;
    min-height: 300px;
}

.date-separator {
    text-align: center;
    color: #8696A0;
    font-size: 0.75rem;
    margin: 15px 0;
    font-weight: 600;
}

.message {
    margin: 10px 0;
    display: flex;
    align-items: flex-end;
    gap: 5px;
    animation: messageSlide 0.3s ease;
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message.received {
    justify-content: flex-start;
}

.message.sent {
    justify-content: flex-end;
}

.message-text {
    background: white;
    padding: 10px 15px;
    border-radius: 10px;
    max-width: 70%;
    word-wrap: break-word;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.message.received .message-text {
    background: white;
    border-radius: 0 10px 10px 10px;
}

.message.sent .message-text {
    background: #DCF8C6;
    border-radius: 10px 0 10px 10px;
}

.message-time {
    font-size: 0.7rem;
    color: #8696A0;
    margin-left: 5px;
}

/* Explanation */
.explanation {
    background: linear-gradient(135deg, #D4A574 0%, #C4956C 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--card-shadow);
}

.highlight {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
}

/* Content Section */
.content {
    background: white;
    padding: 60px 20px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 700;
}

.content-text {
    max-width: 900px;
    margin: 0 auto 50px;
}

.content-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

.content-text em {
    font-style: italic;
    color: var(--text-dark);
    font-weight: 500;
}

.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--primary-color);
    text-align: center;
    font-weight: 700;
    margin-top: 50px;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer p {
    margin: 10px 0;
    font-size: 1rem;
}

.footer a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
}

.footer a:hover {
    color: white;
    text-decoration: underline;
}

.footer-note {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 60px 20px 40px;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content p {
        min-width: auto;
    }

    .comparison,
    .content {
        padding: 40px 20px;
    }

    .explanation {
        padding: 30px 20px;
    }

    .highlight {
        font-size: 1.1rem;
    }

    .card-body {
        padding: 20px;
    }

    .message-text {
        max-width: 85%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .card-header h2 {
        font-size: 1.5rem;
    }

    .description {
        font-size: 1rem;
    }

    .content-text p {
        font-size: 1rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.comparison-card,
.explanation,
.content-text {
    animation: fadeIn 0.6s ease;
}

/* Ad Containers */
.ad-container {
    margin: 30px auto;
    text-align: center;
    max-width: 100%;
}

.ad-top {
    margin-top: 20px;
}

.ad-middle {
    margin: 40px auto;
}

.ad-bottom {
    margin: 40px auto 20px;
}

.ad-placeholder {
    background: linear-gradient(135deg, #F5F1E8 0%, #E8DCC8 100%);
    border: 2px dashed var(--primary-color);
    border-radius: 10px;
    padding: 40px 20px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    min-width: 300px;
    max-width: 100%;
}

/* AdSense Responsive */
.adsbygoogle {
    display: block;
    margin: 0 auto;
}

/* Ad Container Responsive */
@media (max-width: 768px) {
    .ad-container {
        margin: 20px auto;
    }
    
    .ad-placeholder {
        padding: 30px 15px;
        font-size: 0.85rem;
        min-width: 250px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .cookie-notice,
    .footer {
        display: none;
    }

    body {
        background: white;
    }

    .hero {
        background: none;
        color: black;
    }
}

/* Made with Bob */
