:root {
    --bg-color: #0f172a;
    --card-bg: #1e293b;
    --primary: #10b981; /* Green */
    --primary-hover: #059669;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
}

/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
    align-items: center;
}
.logo { font-size: 1.5rem; font-weight: bold; color: var(--primary); }
.nav-link { color: var(--text-main); text-decoration: none; font-weight: 600; }

/* Hero Section */
.hero { padding: 60px 50px; }
.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}
.hero-text { flex: 1; min-width: 300px; }
.badge { background: rgba(16, 185, 129, 0.2); color: var(--primary); padding: 5px 10px; border-radius: 20px; font-size: 0.8rem; font-weight: bold; }
h1 { font-size: 3rem; margin: 20px 0; line-height: 1.2; }
.highlight { color: var(--primary); }
p { color: var(--text-muted); font-size: 1.1rem; line-height: 1.6; margin-bottom: 30px; }

/* Buttons */
.btn { padding: 12px 24px; border-radius: 8px; text-decoration: none; font-weight: bold; display: inline-block; transition: 0.3s; }
.primary-btn { background: var(--primary); color: #000; margin-right: 10px; }
.primary-btn:hover { background: var(--primary-hover); }
.secondary-btn { border: 1px solid var(--text-muted); color: var(--text-main); }
.secondary-btn:hover { border-color: var(--primary); color: var(--primary); }

/* Mockup (Visual Element) */
.hero-image { flex: 1; display: flex; justify-content: center; }
.mockup {
    background: #000; width: 350px; height: 250px; border-radius: 10px; border: 1px solid #333;
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.15); padding: 15px; font-family: monospace;
}
.mockup-header { display: flex; gap: 8px; margin-bottom: 20px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.red { background: #ff5f56; } .yellow { background: #ffbd2e; } .green { background: #27c93f; }
.mockup-body p { margin: 5px 0; font-size: 0.9rem; color: #ccc; }
.mockup-body .success { color: var(--primary); }

/* Features */
.features { padding: 80px 20px; text-align: center; background: #162032; }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; max-width: 1000px; margin: 40px auto 0; }
.card { background: var(--card-bg); padding: 30px; border-radius: 12px; transition: 0.3s; border: 1px solid transparent; }
.card:hover { transform: translateY(-5px); border-color: var(--primary); }
.card i { font-size: 2rem; color: var(--primary); margin-bottom: 15px; }

/* Reviews */
.reviews-section { padding: 80px 20px; max-width: 800px; margin: 0 auto; }
.review-form { background: var(--card-bg); padding: 25px; border-radius: 12px; margin-bottom: 40px; border: 1px solid #334155; }
input, textarea {
    width: 100%; padding: 12px; margin: 10px 0; background: #0f172a; border: 1px solid #334155;
    color: white; border-radius: 6px; font-family: inherit; box-sizing: border-box;
}
input:focus, textarea:focus { outline: none; border-color: var(--primary); }
#submitBtn { width: 100%; background: var(--primary); color: #000; padding: 12px; border: none; border-radius: 6px; font-weight: bold; cursor: pointer; }

/* Reviews List */
.review-card { background: var(--card-bg); padding: 20px; border-radius: 8px; margin-bottom: 15px; border-left: 4px solid var(--primary); animation: fadeIn 0.5s; }
.review-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
.r-name { font-weight: bold; color: white; }
.r-time { font-size: 0.8rem; color: var(--text-muted); }
.r-text { color: #cbd5e1; margin: 0; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

footer { text-align: center; padding: 40px; color: var(--text-muted); font-size: 0.9rem; }


/* Admin Reply Style */
.admin-reply {
    margin-top: 15px;
    padding: 10px 15px;
    background: #0f172a;
    border-left: 3px solid #10b981;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #94a3b8;
}
.admin-reply strong {
    color: #10b981;
    display: block;
    margin-bottom: 5px;
}

/* Developer Reply Style */
.developer-reply {
    background-color: #1e293b; /* Dark Blue-ish background */
    border-left: 4px solid #10b981; /* Green line on left */
    padding: 10px 15px;
    margin-top: 10px;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #e2e8f0;
}

.developer-label {
    color: #10b981; /* Green color for 'Developer' text */
    font-weight: bold;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.developer-label i {
    margin-right: 5px;
}