Changed around line 1
+ :root {
+ --primary-color: #2a6bc2;
+ --secondary-color: #f5f7fa;
+ --accent-color: #ff6b6b;
+ --text-color: #333;
+ --transition: all 0.3s ease;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ }
+
+ header {
+ background: var(--secondary-color);
+ padding: 1rem;
+ position: fixed;
+ width: 100%;
+ top: 0;
+ z-index: 100;
+ box-shadow: 0 2px 10px rgba(0,0,0,0.1);
+ }
+
+ nav {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ color: var(--primary-color);
+ }
+
+ .nav-links a {
+ margin-left: 2rem;
+ text-decoration: none;
+ color: var(--text-color);
+ transition: var(--transition);
+ }
+
+ .nav-links a:hover {
+ color: var(--primary-color);
+ }
+
+ main {
+ margin-top: 4rem;
+ }
+
+ .hero {
+ height: 60vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ background: linear-gradient(135deg, #6ab7ff 0%, #2a6bc2 100%);
+ color: white;
+ padding: 2rem;
+ }
+
+ .hero h1 {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ }
+
+ .destinations {
+ padding: 4rem 2rem;
+ }
+
+ .destination-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ max-width: 1200px;
+ margin: 2rem auto;
+ }
+
+ .destination-card {
+ background: var(--secondary-color);
+ border-radius: 1rem;
+ overflow: hidden;
+ transition: var(--transition);
+ position: relative;
+ }
+
+ .destination-card:hover {
+ transform: translateY(-5px);
+ box-shadow: 0 10px 20px rgba(0,0,0,0.1);
+ }
+
+ .card-content {
+ padding: 2rem;
+ text-align: center;
+ }
+
+ .vote-btn {
+ background: var(--accent-color);
+ color: white;
+ border: none;
+ padding: 0.5rem 2rem;
+ border-radius: 2rem;
+ cursor: pointer;
+ transition: var(--transition);
+ margin-top: 1rem;
+ }
+
+ .vote-btn:hover {
+ background: darken(var(--accent-color), 10%);
+ transform: scale(1.05);
+ }
+
+ .vote-count {
+ display: block;
+ margin-top: 1rem;
+ font-size: 1.2rem;
+ font-weight: bold;
+ }
+
+ .results {
+ padding: 4rem 2rem;
+ background: var(--secondary-color);
+ }
+
+ footer {
+ background: var(--text-color);
+ color: white;
+ padding: 2rem;
+ text-align: center;
+ }
+
+ footer nav {
+ margin-top: 1rem;
+ }
+
+ footer a {
+ color: white;
+ text-decoration: none;
+ margin: 0 1rem;
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .hero h1 {
+ font-size: 2rem;
+ }
+
+ .destination-grid {
+ grid-template-columns: 1fr;
+ }
+ }