Changed around line 1
+ :root {
+ --primary-color: #624e3d;
+ --secondary-color: #a69585;
+ --background-color: #faf6f2;
+ --text-color: #2c2420;
+ --accent-color: #8b7355;
+ }
+
+ * {
+ 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);
+ background-color: var(--background-color);
+ }
+
+ header {
+ background-color: var(--primary-color);
+ padding: 1rem;
+ position: fixed;
+ width: 100%;
+ top: 0;
+ z-index: 100;
+ box-shadow: 0 2px 8px rgba(0,0,0,0.1);
+ }
+
+ nav ul {
+ display: flex;
+ justify-content: center;
+ list-style: none;
+ gap: 2rem;
+ }
+
+ nav a {
+ color: white;
+ text-decoration: none;
+ font-weight: 500;
+ transition: color 0.3s ease;
+ }
+
+ nav a:hover {
+ color: var(--secondary-color);
+ }
+
+ main {
+ margin-top: 4rem;
+ padding: 2rem;
+ }
+
+ .hero {
+ text-align: center;
+ padding: 4rem 1rem;
+ background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
+ color: white;
+ border-radius: 1rem;
+ margin-bottom: 3rem;
+ }
+
+ .hero h1 {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ animation: fadeIn 1s ease-out;
+ }
+
+ .translation-box {
+ background: white;
+ padding: 2rem;
+ border-radius: 1rem;
+ box-shadow: 0 4px 12px rgba(0,0,0,0.1);
+ margin: 2rem 0;
+ transition: transform 0.3s ease;
+ }
+
+ .translation-box:hover {
+ transform: translateY(-4px);
+ }
+
+ .verse {
+ margin: 1.5rem 0;
+ padding: 0.5rem;
+ border-left: 3px solid var(--accent-color);
+ }
+
+ .pali {
+ font-size: 1.2rem;
+ color: var(--primary-color);
+ margin-bottom: 0.5rem;
+ }
+
+ .english {
+ color: var(--text-color);
+ font-style: italic;
+ }
+
+ .about {
+ max-width: 800px;
+ margin: 4rem auto;
+ }
+
+ footer {
+ background-color: var(--primary-color);
+ color: white;
+ text-align: center;
+ padding: 2rem;
+ margin-top: 4rem;
+ }
+
+ @keyframes fadeIn {
+ from { opacity: 0; transform: translateY(20px); }
+ to { opacity: 1; transform: translateY(0); }
+ }
+
+ @media (max-width: 768px) {
+ .hero h1 {
+ font-size: 2rem;
+ }
+
+ nav ul {
+ gap: 1rem;
+ }
+
+ .translation-box {
+ padding: 1rem;
+ }
+ }