/* Base Styles */
    :root {
      --primary: #2A9D8F;
      --secondary: #E9C46A;
      --dark: #264653;
      --light: #F4F1DE;
      --accent: #E76F51;
      --text: #333333;
      --bg: #F8F9FA;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: var(--bg);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
      background-image: radial-gradient(var(--light) 1px, transparent 1px);
      background-size: 40px 40px;
    }
    
    a {
      text-decoration: none;
      color: inherit;
      transition: all 0.3s ease;
    }
    
    /* Navigation */
    header {
      background-color: rgba(255, 255, 255, 0.95);
      padding: 1.5rem 0;
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
      position: sticky;
      top: 0;
      z-index: 100;
    }
    
    .container {
      width: 85%;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .logo {
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--primary);
    }
    
    .nav-links {
      display: flex;
      list-style: none;
      gap: 2.5rem;
    }
    
    .nav-links li a {
      color: var(--dark);
      font-weight: 500;
      position: relative;
    }
    
    .nav-links li a:hover {
      color: var(--primary);
    }
    
    .nav-links li a.active {
      color: var(--primary);
    }
    
    .nav-links li a.active::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 100%;
      height: 3px;
      background-color: var(--primary);
      border-radius: 5px;
    }
    
    /* Hero Section */
    .hero {
      min-height: 85vh;
      display: flex;
      align-items: center;
      padding: 2rem 0;
    }
    
    .hero-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 4rem;
    }
    
    .hero-text {
      flex: 1;
    }
    
    .hero-greeting {
      font-size: 1.5rem;
      color: var(--dark);
      margin-bottom: 0.5rem;
    }
    
    .hero-name {
      font-size: 4.5rem;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 1rem;
      background: linear-gradient(45deg, var(--primary), var(--secondary));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    
    .hero-title {
      font-size: 1.5rem;
      color: var(--dark);
      margin-bottom: 2rem;
    }
    
    .social-icons {
      display: flex;
      gap: 1rem;
      margin-top: 2rem;
    }
    
    .social-icon {
      width: 45px;
      height: 45px;
      background-color: var(--light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--dark);
      font-size: 1.2rem;
      transition: all 0.3s ease;
    }
    
    .social-icon:hover {
      background-color: var(--primary);
      color: white;
      transform: translateY(-3px);
    }
    
    .hero-image {
      flex: 0.8;
      display: flex;
      justify-content: flex-end;
    }
    
    .profile-img {
      width: 350px;
      height: 350px;
      border-radius: 50%;
      object-fit: cover;
      border: 5px solid white;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .profile-circle {
      position: relative;
    }
    
    .profile-circle::before {
      content: '';
      position: absolute;
      top: -10px;
      left: -10px;
      right: -10px;
      bottom: -10px;
      border-radius: 50%;
      border: 2px solid var(--secondary);
      z-index: -1;
    }
    
    .profile-circle::after {
      content: '';
      position: absolute;
      top: -20px;
      left: -20px;
      right: -20px;
      bottom: -20px;
      border-radius: 50%;
      border: 2px dashed var(--primary);
      z-index: -2;
      animation: spin 20s linear infinite;
    }
    
    @keyframes spin {
      from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(360deg);
      }
    }
    
    /* Footer */
    footer {
      text-align: center;
      padding: 2rem 0;
      color: var(--dark);
      font-size: 0.9rem;
    }
    
    /* Article Page Styles */
    .article-container {
      max-width: 800px;
      margin: 3rem auto;
      padding: 2rem;
      background: white;
      border-radius: 10px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    }
    
    .article-header {
      margin-bottom: 2rem;
    }
    
    .article-title {
      font-size: 2.5rem;
      color: var(--dark);
      margin-bottom: 1rem;
    }
    
    .article-meta {
      display: flex;
      align-items: center;
      margin-bottom: 1.5rem;
      color: #777;
      font-size: 0.95rem;
    }
    
    .article-author {
      display: flex;
      align-items: center;
      margin-right: 2rem;
    }
    
    .author-img {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      margin-right: 10px;
    }
    
    .article-date {
      margin-right: 2rem;
    }
    
    .article-tags {
      display: flex;
      gap: 0.5rem;
    }
    
    .article-tag {
      background-color: var(--light);
      color: var(--dark);
      padding: 0.2rem 0.8rem;
      border-radius: 20px;
      font-size: 0.85rem;
    }
    
    .article-image {
      width: 100%;
      height: 400px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 2rem;
    }
    
    .article-content {
      line-height: 1.8;
    }
    
    .article-content p {
      margin-bottom: 1.5rem;
    }
    
    .article-content h2 {
      color: var(--dark);
      margin: 2rem 0 1rem;
    }
    
    .article-content ul, .article-content ol {
      margin-left: 2rem;
      margin-bottom: 1.5rem;
    }
    
    .article-footer {
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid #eee;
    }
    
    .share-buttons {
      display: flex;
      gap: 1rem;
    }
    
    .share-button {
      background-color: var(--light);
      color: var(--dark);
      padding: 0.5rem 1rem;
      border-radius: 5px;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.9rem;
      font-weight: 500;
    }
    
    .share-button:hover {
      background-color: var(--primary);
      color: white;
    }
    
    .related-articles {
      margin-top: 4rem;
    }
    
    .related-articles h3 {
      margin-bottom: 1.5rem;
      color: var(--dark);
      font-size: 1.5rem;
    }
    
    .article-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    
    .article-card {
      background: white;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
    }
    
    .article-card:hover {
      transform: translateY(-5px);
    }
    
    .article-card-img {
      width: 100%;
      height: 150px;
      object-fit: cover;
    }
    
    .article-card-content {
      padding: 1rem;
    }
    
    .article-card-title {
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
      color: var(--dark);
    }
    
    .article-card-date {
      font-size: 0.85rem;
      color: #777;
    }
    
    /* Media Queries */
    @media (max-width: 992px) {
      .hero-name {
        font-size: 3.5rem;
      }
      
      .profile-img {
        width: 300px;
        height: 300px;
      }
    }
    
    @media (max-width: 768px) {
      .hero-content {
        flex-direction: column-reverse;
        text-align: center;
        gap: 2rem;
      }
      
      .hero-image {
        justify-content: center;
      }
      
      .social-icons {
        justify-content: center;
      }
      
      .article-cards {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (max-width: 576px) {
      .nav-links {
        gap: 1.5rem;
      }
      
      .hero-name {
        font-size: 2.8rem;
      }
      
      .profile-img {
        width: 250px;
        height: 250px;
      }
      
      .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
      }
      
      .article-cards {
        grid-template-columns: 1fr;
      }
    }