Changed around line 1
+ :root {
+ --primary-color: #fe3c72;
+ --secondary-color: #424242;
+ --background-color: #f5f7fa;
+ --text-color: #333;
+ --card-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
+ background: var(--background-color);
+ color: var(--text-color);
+ line-height: 1.6;
+ }
+
+ header {
+ background: white;
+ padding: 1rem;
+ box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
+ position: fixed;
+ width: 100%;
+ top: 0;
+ z-index: 100;
+ }
+
+ 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 {
+ display: flex;
+ gap: 1rem;
+ }
+
+ .nav-link {
+ text-decoration: none;
+ color: var(--secondary-color);
+ padding: 0.5rem 1rem;
+ border-radius: 20px;
+ transition: all 0.3s ease;
+ }
+
+ .btn-primary {
+ background: var(--primary-color);
+ color: white;
+ }
+
+ main {
+ margin-top: 80px;
+ padding: 2rem;
+ min-height: calc(100vh - 160px);
+ }
+
+ .card-container {
+ max-width: 400px;
+ margin: 0 auto;
+ }
+
+ .card {
+ background: white;
+ border-radius: 20px;
+ box-shadow: var(--card-shadow);
+ overflow: hidden;
+ transform-origin: center;
+ transition: transform 0.3s ease;
+ }
+
+ .card:hover {
+ transform: scale(1.02);
+ }
+
+ .profile-photo {
+ width: 100%;
+ height: 400px;
+ overflow: hidden;
+ }
+
+ .profile-photo img {
+ width: 100%;
+ height: 100%;
+ object-fit: cover;
+ }
+
+ .profile-info {
+ padding: 1rem;
+ }
+
+ .action-buttons {
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+ padding: 1rem;
+ }
+
+ .btn-like, .btn-dislike {
+ width: 60px;
+ height: 60px;
+ border-radius: 50%;
+ border: none;
+ font-size: 1.5rem;
+ cursor: pointer;
+ transition: all 0.3s ease;
+ }
+
+ .btn-like {
+ background: #fff;
+ color: var(--primary-color);
+ border: 2px solid var(--primary-color);
+ }
+
+ .btn-dislike {
+ background: #fff;
+ color: #666;
+ border: 2px solid #666;
+ }
+
+ .btn-like:hover {
+ background: var(--primary-color);
+ color: white;
+ transform: scale(1.1);
+ }
+
+ .btn-dislike:hover {
+ background: #666;
+ color: white;
+ transform: scale(1.1);
+ }
+
+ .match-modal {
+ position: fixed;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ background: rgba(0, 0, 0, 0.5);
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ z-index: 1000;
+ }
+
+ .modal-content {
+ background: white;
+ padding: 2rem;
+ border-radius: 20px;
+ text-align: center;
+ }
+
+ footer {
+ background: white;
+ padding: 1rem;
+ text-align: center;
+ }
+
+ footer nav {
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+ }
+
+ footer a {
+ color: var(--secondary-color);
+ text-decoration: none;
+ }
+
+ @media (max-width: 768px) {
+ .card-container {
+ max-width: 100%;
+ }
+
+ .profile-photo {
+ height: 300px;
+ }
+
+ .action-buttons {
+ gap: 1rem;
+ }
+
+ .btn-like, .btn-dislike {
+ width: 50px;
+ height: 50px;
+ }
+ }