* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
}

.warning {
    background: #ffeb3b;
    color: #f57c00;
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    font-weight: bold;
    font-size: 0.9rem;
    border: 2px solid #ffa000;
}

.main-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.featured-idea {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.featured-idea:hover {
    transform: translateY(-5px);
}

.idea-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.date-badge {
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    margin-right: 15px;
    font-size: 0.9rem;
}

.idea-title {
    font-size: 2rem;
    color: #333;
    font-weight: bold;
}

.terrible-rating {
    background: #f44336;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-left: auto;
    font-weight: bold;
}

.idea-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
}

.business-model {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    border-left: 5px solid #ff6b6b;
}

.business-model h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.model-points {
    color: #666;
    line-height: 1.6;
}

.why-terrible {
    background: #ffebee;
    padding: 20px;
    border-radius: 15px;
    border-left: 5px solid #f44336;
}

.why-terrible h3 {
    color: #d32f2f;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stats-card, .subscribe-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.stats-card h3, .subscribe-card h3 {
    margin-bottom: 20px;
    color: #333;
    font-size: 1.4rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.stat-value {
    font-weight: bold;
    color: #ff6b6b;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.subscribe-form input {
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.subscribe-form input:focus {
    outline: none;
    border-color: #ff6b6b;
}

.subscribe-btn {
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
}

.footer-links {
    text-align: center;
    margin-top: 40px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 20px;
    font-weight: bold;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.floating-icons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.floating-icon:hover {
    transform: scale(1.1);
}

.sample-coloring-page {
    background: #f0f8ff;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 25px;
    border: 2px solid #e3f2fd;
}

.sample-coloring-page h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.coloring-preview {
    background: white;
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.coloring-preview:hover {
    border-color: #ff6b6b;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.2);
    transform: translateY(-2px);
}

.coloring-page-svg {
    width: 100%;
    height: auto;
    max-width: 400px;
    display: block;
    margin: 0 auto;
}

.coloring-page-img {
    width: 100%;
    height: auto;
    max-width: 400px;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

.click-to-enlarge {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 10px;
    font-style: italic;
}

/* Modal styles for enlarged image */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    margin: 5% auto;
    width: 90%;
    max-width: 800px;
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.modal-content .coloring-page-svg {
    max-width: 100%;
    height: auto;
}

.modal-content .coloring-page-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 30px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #ff6b6b;
}

.modal-title {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    font-size: 1.5rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 768px) {
    .main-content {
        grid-template-columns: 1fr;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    .idea-title {
        font-size: 1.5rem;
    }
    
    .idea-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .terrible-rating {
        margin-left: 0;
    }
    
    .floating-icons {
        right: 10px;
    }
    
    .floating-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 15px;
    }
    
    .coloring-page-svg {
        max-width: 300px;
    }
    
    .coloring-page-img {
        max-width: 300px;
    }
}