/* Plugin Page Specific Styles */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
}

.status {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-decoration: none;
    transition: background 0.3s;
}

.status:hover {
    background: #2980b9;
}

.hero {
    background: white;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: block;
}

.hero > p {
    font-size: 1.1em;
    margin-bottom: 30px;
    text-align: center;
}

/* Newsletter in hero section */
.hero .ml-form-embedContainer {
    display: block;
}

.hero .ml-form-embedWrapper {
    display: block !important;
}

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

.feature {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.feature h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.3em;
}

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

.section {
    background: white;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.section h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 2em;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 10px;
}

.section ul {
    list-style: none;
    padding-left: 0;
}

.section ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.section ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2em;
}

.support-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #f39c12;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.support-link:hover {
    background: #e67e22;
}

@media (max-width: 768px) {
    .logo {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }

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

    .hero, .section {
        padding: 20px;
    }
}
