* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #2C3E50 0%, #1a1a1a 100%);
    color: #fff;
    line-height: 1.7;
    padding: 50px 20px;
}

.container { 
    max-width: 1100px; 
    margin: 0 auto; 
}

.header {
    background: linear-gradient(135deg, #1ABC9C 0%, #2C3E50 100%);
    padding: 70px 50px;
    margin-bottom: 60px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(26, 188, 156, 0.2);
    border: 2px solid #E74C3C;
}

h1 {
    font-size: 3em;
    margin-bottom: 15px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.2em;
    color: #E74C3C;
    font-weight: 700;
    letter-spacing: 1px;
}

.trend-section {
    background: rgba(26, 188, 156, 0.1);
    border: 2px solid #1ABC9C;
    padding: 40px;
    margin-bottom: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

h2 {
    font-size: 2.2em;
    color: #1ABC9C;
    margin-bottom: 25px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h3 {
    font-size: 1.5em;
    color: #fff;
    margin: 30px 0 15px 0;
    font-weight: 700;
}

p {
    margin-bottom: 16px;
    font-size: 1.05em;
    color: #ddd;
    text-align: justify;
}

a {
    color: #1ABC9C;
    text-decoration: none;
    font-weight: 700;
}

a:hover {
    text-decoration: underline;
}

.trend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.trend-card {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.15) 0%, rgba(26, 188, 156, 0.05) 100%);
    border: 2px solid #E74C3C;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.trend-value {
    font-size: 2.2em;
    color: #E74C3C;
    font-weight: 900;
    margin-bottom: 8px;
}

.trend-label {
    font-size: 0.95em;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chart-section {
    background: rgba(44, 62, 80, 0.5);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #E74C3C;
    margin: 25px 0;
}

.bar-chart {
    margin: 20px 0;
}

.bar-item {
    margin-bottom: 18px;
}

.bar-label {
    font-size: 0.9em;
    color: #aaa;
    margin-bottom: 5px;
    font-weight: 700;
}

.bar-fill {
    height: 25px;
    background: linear-gradient(90deg, #E74C3C 0%, #1ABC9C 100%);
    border-radius: 5px;
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: 700;
    padding-left: 10px;
    font-size: 0.9em;
}

ul {
    margin: 20px 0 20px 30px;
    list-style: none;
}

li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    font-size: 1.05em;
    color: #ddd;
}

li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #E74C3C;
    font-weight: bold;
    font-size: 1.3em;
}

.highlight-box {
    background: linear-gradient(135deg, #E74C3C 0%, #1ABC9C 50%, #2C3E50 100%);
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer {
    text-align: center;
    padding: 40px;
    color: #888;
    font-size: 0.95em;
    margin-top: 60px;
    border-top: 2px solid #1ABC9C;
}

@media (max-width: 768px) {
    h1 { font-size: 2em; }
    h2 { font-size: 1.6em; }
    .trend-section { padding: 25px; }
}