/* NonCow Global Styles */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
}

/* Navigation */
nav {
    text-align: center;
    padding: 20px 0;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 30px;
}

nav a {
    margin: 0 20px;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: #764ba2;
}

/* Container */
.container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.container.wide {
    max-width: 800px;
}

/* Logo */
.logo {
    text-align: center;
    margin-bottom: 30px;
}

.logo h1 {
    font-size: 2.5em;
    color: #667eea;
    margin-bottom: 10px;
}

.logo p {
    color: #666;
    font-size: 1.1em;
}

/* Screens */
.screen {
    display: none;
}

.screen.active {
    display: block;
    animation: fadeIn 0.5s;
}

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

/* Start Screen */
.start-screen {
    text-align: center;
}

.start-screen h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
}

.start-screen p {
    color: #666;
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Buttons */
.btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1em;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    font-weight: 600;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: #e0e0e0;
    color: #333;
}

.btn-secondary:hover {
    background: #d0d0d0;
}

/* Question Styles */
.question {
    margin-bottom: 30px;
}

.question h3 {
    color: #333;
    font-size: 1.5em;
    margin-bottom: 20px;
}

.progress {
    background: #e0e0e0;
    height: 8px;
    border-radius: 10px;
    margin-bottom: 30px;
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 100%;
    transition: width 0.3s;
}

/* Options */
.options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.option {
    background: #f5f5f5;
    border: 2px solid transparent;
    padding: 20px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
    display: flex;
    align-items: center;
}

.option:hover {
    background: #e8e8e8;
    transform: translateX(5px);
}

.option.selected {
    background: #e8f5e9;
    border-color: #4e9f3d;
}

.option-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.option-desc {
    color: #666;
    font-size: 0.9em;
}

/* Results */
.result {
    text-align: center;
}

.result-icon {
    font-size: 5em;
    margin-bottom: 20px;
}

.result h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 15px;
}

.result-desc {
    color: #666;
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Affiliate Section */
.affiliate-section {
    background: #f8f9ff;
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
}

.affiliate-section h3 {
    color: #333;
    margin-bottom: 15px;
}

.product-link {
    display: block;
    background: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    text-decoration: none;
    color: #333;
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
}

.product-link:hover {
    border-color: #4e9f3d;
    transform: translateX(5px);
}

.product-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.product-desc {
    font-size: 0.9em;
    color: #666;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 30px;
}

.share-btn {
    padding: 12px 25px;
    border-radius: 25px;
    border: 2px solid #4e9f3d;
    background: white;
    color: #4e9f3d;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.share-btn:hover {
    background: #4e9f3d;
    color: white;
}

/* Navigation Buttons */
.nav-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* Blog Styles */
.blog-header {
    text-align: center;
    margin-bottom: 40px;
}

.blog-header h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 10px;
}

.blog-header p {
    color: #666;
    font-size: 1.1em;
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.blog-card {
    background: #f8f9ff;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.blog-card h2 {
    color: #333;
    font-size: 1.8em;
    margin-bottom: 10px;
}

.blog-card .blog-meta {
    color: #999;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.blog-card p {
    color: #666;
    line-height: 1.6;
}

/* Article Styles */
article {
    line-height: 1.8;
}

article h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}

article h2 {
    font-size: 1.8em;
    color: #333;
    margin: 40px 0 20px;
}

article h3 {
    font-size: 1.4em;
    color: #333;
    margin: 30px 0 15px;
}

article p {
    color: #444;
    margin-bottom: 20px;
    font-size: 1.05em;
}

article ul, article ol {
    margin: 20px 0 20px 30px;
    color: #444;
}

article li {
    margin-bottom: 10px;
}

article strong {
    color: #333;
    font-weight: 600;
}

article .intro {
    font-size: 1.2em;
    color: #666;
    font-style: italic;
    margin-bottom: 30px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    display: none;
    z-index: 1000;
    animation: slideUp 0.5s;
}

.cookie-banner.show {
    display: block;
}

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

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

.cookie-text {
    flex: 1;
    min-width: 250px;
}

.cookie-text p {
    margin: 0;
    color: #333;
    font-size: 0.95em;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9em;
    transition: all 0.3s;
}

.cookie-accept {
    background: #4e9f3d;
    color: white;
}

.cookie-accept:hover {
    background: #3d7a2e;
}

.cookie-decline {
    background: #e0e0e0;
    color: #333;
}

.cookie-decline:hover {
    background: #d0d0d0;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }
    
    .container {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .logo h1 {
        font-size: 2em;
    }
    
    .logo {
        margin-bottom: 20px;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .result-icon {
        font-size: 3.5em;
        margin-bottom: 10px;
    }
    
    .result h2 {
        font-size: 1.8em;
        margin-bottom: 10px;
    }
    
    .result-desc {
        font-size: 0.95em;
        line-height: 1.4;
        margin-bottom: 20px;
    }
    
    .affiliate-section {
        padding: 15px;
        margin: 20px 0;
    }
    
    .affiliate-section h3 {
        font-size: 1em;
        margin-bottom: 10px;
    }
    
    .product-link {
        padding: 12px;
    }
    
    .share-buttons {
        margin-top: 20px;
        gap: 8px;
    }
    
    .share-btn {
        padding: 10px 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    nav a {
        margin: 0 10px;
        font-size: 0.9em;
    }
    
    article h1 {
        font-size: 1.8em;
    }
    
    article h2 {
        font-size: 1.4em;
    }
}
