/*
   VoroMail Unified Static Page Styles
   Advanced, Modern, and Responsive Design
*/

:root {
    --primary: #00E676;
    --primary-dark: #00C853;
    --bg-dark: #121212;
    --bg-card: #1E1E1E;
    --text-main: #FFFFFF;
    --text-muted: #B0B0B0;
    --accent-orange: #FFAB40;
    --font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-family);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(0, 230, 118, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
}

/* Layout */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

header {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #121212 0%, #1a1a1a 100%);
    border-bottom: 1px solid #333;
}

.logo {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: 2px;
}

/* Typography */
h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-main);
    animation: fadeInUp 0.8s ease-out;
}

h2 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary);
    animation: fadeInUp 1s ease-out;
}

p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    animation: fadeInUp 1.2s ease-out;
}

/* Content Blocks */
.content-section {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 30px;
    margin-top: 30px;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: fadeInUp 1.4s ease-out;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    padding: 30px;
    background: #252525;
    border-radius: 20px;
    border: 1px solid #444;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

/* CTA Button */
.cta-container {
    text-align: center;
    margin-top: 60px;
    padding-bottom: 40px;
}

.btn-main {
    display: inline-block;
    padding: 18px 45px;
    background-color: var(--primary);
    color: #000;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.btn-main:hover {
    background-color: var(--primary-dark);
    transform: scale(1.1);
}

/* Footer */
footer {
    text-align: center;
    padding: 40px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 0.9rem;
}

footer a {
    color: var(--primary);
    text-decoration: none;
    margin: 0 10px;
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.6rem; }
    .content-section { padding: 25px; }
}
