Changed around line 1
+ :root {
+ --primary: #ff69b4;
+ --secondary: #4a4a4a;
+ --background: #fff;
+ --accent: #ffd700;
+ --text: #333;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
+ line-height: 1.6;
+ color: var(--text);
+ background: var(--background);
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 2rem;
+ background: var(--primary);
+ color: white;
+ position: fixed;
+ width: 100%;
+ top: 0;
+ z-index: 1000;
+ box-shadow: 0 2px 10px rgba(0,0,0,0.1);
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ margin-left: 2rem;
+ transition: color 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--accent);
+ }
+
+ .hero {
+ height: 100vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ background: linear-gradient(135deg, var(--primary), #ff1493);
+ color: white;
+ text-align: center;
+ }
+
+ .hero h1 {
+ font-size: 4rem;
+ margin-bottom: 1rem;
+ animation: fadeIn 1s ease-in;
+ }
+
+ .hero p {
+ font-size: 1.5rem;
+ animation: fadeIn 1.5s ease-in;
+ }
+
+ .criteria-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ padding: 2rem;
+ }
+
+ .criterion {
+ background: white;
+ padding: 2rem;
+ border-radius: 10px;
+ box-shadow: 0 4px 15px rgba(0,0,0,0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .criterion:hover {
+ transform: translateY(-5px);
+ }
+
+ .points {
+ color: var(--primary);
+ font-weight: bold;
+ margin-top: 1rem;
+ }
+
+ .rankings-container {
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+ padding: 2rem;
+ }
+
+ .ranking-card {
+ display: flex;
+ align-items: center;
+ background: white;
+ padding: 1rem;
+ border-radius: 10px;
+ box-shadow: 0 2px 10px rgba(0,0,0,0.1);
+ }
+
+ .rank {
+ width: 40px;
+ height: 40px;
+ background: var(--primary);
+ color: white;
+ border-radius: 50%;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ font-weight: bold;
+ margin-right: 1rem;
+ }
+
+ section {
+ padding: 4rem 2rem;
+ }
+
+ h2 {
+ text-align: center;
+ margin-bottom: 2rem;
+ color: var(--primary);
+ }
+
+ footer {
+ background: var(--secondary);
+ color: white;
+ text-align: center;
+ padding: 1rem;
+ }
+
+ @keyframes fadeIn {
+ from { opacity: 0; transform: translateY(20px); }
+ to { opacity: 1; transform: translateY(0); }
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+
+ .hero p {
+ font-size: 1.2rem;
+ }
+
+ .criteria-grid {
+ grid-template-columns: 1fr;
+ }
+ }