Changed around line 1
+ :root {
+ --primary-color: #ff6f61;
+ --secondary-color: #6b5b95;
+ --background-color: #f4f4f4;
+ --text-color: #333;
+ --font-family: 'Arial', sans-serif;
+ }
+
+ body {
+ font-family: var(--font-family);
+ color: var(--text-color);
+ background-color: var(--background-color);
+ margin: 0;
+ padding: 0;
+ line-height: 1.6;
+ }
+
+ header {
+ background: var(--primary-color);
+ color: white;
+ padding: 2rem;
+ text-align: center;
+ }
+
+ header h1 {
+ margin: 0;
+ font-size: 2.5rem;
+ }
+
+ header p {
+ margin: 0.5rem 0 0;
+ font-size: 1.2rem;
+ }
+
+ main {
+ padding: 2rem;
+ }
+
+ .filters {
+ margin-bottom: 2rem;
+ }
+
+ .filters h2 {
+ text-align: center;
+ margin-bottom: 1rem;
+ }
+
+ .filter-buttons {
+ display: flex;
+ justify-content: center;
+ gap: 1rem;
+ flex-wrap: wrap;
+ }
+
+ .filter-buttons button {
+ background: var(--secondary-color);
+ color: white;
+ border: none;
+ padding: 0.75rem 1.5rem;
+ border-radius: 25px;
+ cursor: pointer;
+ transition: background 0.3s ease;
+ }
+
+ .filter-buttons button:hover {
+ background: var(--primary-color);
+ }
+
+ .rankings {
+ background: white;
+ padding: 2rem;
+ border-radius: 10px;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ }
+
+ .rankings h2 {
+ text-align: center;
+ margin-bottom: 1.5rem;
+ }
+
+ .celebrity-list {
+ list-style: none;
+ padding: 0;
+ margin: 0;
+ }
+
+ .celebrity-list li {
+ padding: 1rem;
+ border-bottom: 1px solid #eee;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .celebrity-list li:last-child {
+ border-bottom: none;
+ }
+
+ .celebrity-list li span {
+ font-weight: bold;
+ }
+
+ footer {
+ background: var(--primary-color);
+ color: white;
+ text-align: center;
+ padding: 1rem;
+ margin-top: 2rem;
+ }
+
+ @media (max-width: 768px) {
+ .filter-buttons {
+ flex-direction: column;
+ align-items: center;
+ }
+
+ .filter-buttons button {
+ width: 100%;
+ margin-bottom: 0.5rem;
+ }
+ }