Changed around line 1
+ :root {
+ --primary: #6a5acd;
+ --primary-dark: #483d8b;
+ --secondary: #ff69b4;
+ --light: #f8f9fa;
+ --dark: #343a40;
+ --success: #28a745;
+ --info: #17a2b8;
+ --warning: #ffc107;
+ --danger: #dc3545;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
+ }
+
+ body {
+ background-color: #f5f5f5;
+ color: #333;
+ line-height: 1.6;
+ }
+
+ header.hero {
+ background: linear-gradient(135deg, var(--primary), var(--primary-dark));
+ color: white;
+ padding: 2rem 0;
+ text-align: center;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 0 2rem;
+ margin-bottom: 2rem;
+ }
+
+ .logo {
+ font-size: 1.8rem;
+ font-weight: bold;
+ color: white;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 1.5rem;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ font-weight: 500;
+ }
+
+ .hero-content {
+ max-width: 800px;
+ margin: 0 auto;
+ padding: 0 1rem;
+ }
+
+ .hero-content h1 {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ }
+
+ .hero-content p {
+ font-size: 1.2rem;
+ margin-bottom: 2rem;
+ opacity: 0.9;
+ }
+
+ .primary-button, .cta-button {
+ display: inline-block;
+ padding: 0.8rem 1.8rem;
+ border-radius: 50px;
+ font-weight: bold;
+ text-decoration: none;
+ transition: all 0.3s ease;
+ }
+
+ .primary-button {
+ background-color: var(--secondary);
+ color: white;
+ }
+
+ .primary-button:hover {
+ background-color: #ff1493;
+ transform: translateY(-2px);
+ }
+
+ .cta-button {
+ background-color: transparent;
+ border: 2px solid white;
+ color: white;
+ }
+
+ .cta-button:hover {
+ background-color: rgba(255, 255, 255, 0.1);
+ }
+
+ section {
+ padding: 4rem 1rem;
+ }
+
+ .features {
+ text-align: center;
+ }
+
+ .features h2 {
+ margin-bottom: 3rem;
+ font-size: 2.2rem;
+ color: var(--dark);
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .feature-card {
+ background: white;
+ padding: 2rem;
+ border-radius: 10px;
+ box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .feature-card:hover {
+ transform: translateY(-10px);
+ }
+
+ .feature-icon {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .leaderboard {
+ background-color: white;
+ }
+
+ .leaderboard h2 {
+ text-align: center;
+ margin-bottom: 2rem;
+ font-size: 2.2rem;
+ }
+
+ .leaderboard-container {
+ max-width: 800px;
+ margin: 0 auto;
+ overflow-x: auto;
+ }
+
+ table {
+ width: 100%;
+ border-collapse: collapse;
+ }
+
+ th, td {
+ padding: 1rem;
+ text-align: left;
+ border-bottom: 1px solid #ddd;
+ }
+
+ th {
+ background-color: var(--primary);
+ color: white;
+ }
+
+ tr:nth-child(even) {
+ background-color: #f2f2f2;
+ }
+
+ .measure {
+ text-align: center;
+ }
+
+ .measure-container {
+ display: flex;
+ flex-wrap: wrap;
+ justify-content: center;
+ gap: 3rem;
+ max-width: 1000px;
+ margin: 0 auto;
+ }
+
+ .measure-form {
+ background: white;
+ padding: 2rem;
+ border-radius: 10px;
+ box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
+ text-align: left;
+ width: 300px;
+ }
+
+ .measure-form label {
+ display: block;
+ margin-bottom: 0.5rem;
+ font-weight: 500;
+ }
+
+ .measure-form input {
+ width: 100%;
+ padding: 0.8rem;
+ margin-bottom: 1.5rem;
+ border: 1px solid #ddd;
+ border-radius: 5px;
+ font-size: 1rem;
+ }
+
+ .penis-graphic {
+ width: 200px;
+ height: 300px;
+ background: linear-gradient(to bottom, #ffb6c1, #ff69b4);
+ border-radius: 100px 100px 50px 50px;
+ position: relative;
+ margin: 0 auto;
+ transition: all 0.5s ease;
+ }
+
+ footer {
+ background-color: var(--dark);
+ color: white;
+ padding: 2rem 1rem;
+ text-align: center;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .footer-links {
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+ margin-bottom: 1.5rem;
+ }
+
+ .footer-links a {
+ color: white;
+ text-decoration: none;
+ }
+
+ .footer-links a:hover {
+ text-decoration: underline;
+ }
+
+ @media (max-width: 768px) {
+ nav {
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ .hero-content h1 {
+ font-size: 2.2rem;
+ }
+
+ .measure-container {
+ flex-direction: column;
+ align-items: center;
+ }
+
+ .footer-links {
+ flex-direction: column;
+ gap: 1rem;
+ }
+ }