    :root {
      --bg-color: #121212;
      --text-color: #e0e0e0;
      --accent-color: #ff6600;
      --accent-color-dark: #e65a00;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Inter', sans-serif;
      background-color: var(--bg-color);
      color: var(--text-color);
      scroll-behavior: smooth;
      line-height: 1.6;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .fade-in {
      opacity: 0;
      animation: fadeInUp 1s ease-out forwards;
    }

    ::selection {
      background-color: var(--accent-color);
      color: var(--bg-color);
    }

    header {
      position: fixed;
      top: 0;
      width: 100%;
      background: rgba(0, 0, 0, 0.85);
      backdrop-filter: blur(10px);
      padding: 20px 50px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }
    
    header .logo {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--accent-color);
	  text-decoration: none;
    }
    
    nav ul {
      list-style: none;
      display: flex;
    }
    
    nav ul li {
      margin-left: 30px;
    }
    
    nav ul li a {
      position: relative;
      text-decoration: none;
      color: var(--text-color);
      font-weight: 600;
      transition: color 0.3s ease;
    }
    
    nav ul li a:hover {
      color: var(--accent-color);
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    .hero {
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      background: 
        linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.8) 100%),
        url('https://via.placeholder.com/1500x1000') no-repeat center center/cover;
      background-attachment: fixed;
      position: relative;
    }
    
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 0 20px;
      animation-delay: 0.3s;
    }
    
    .hero h1 {
      font-size: 3rem;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    
    .hero p {
      font-size: 1.2rem;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    }
    
    .btn {
      display: inline-block;
      padding: 12px 30px;
      background-color: var(--accent-color);
      color: #fff;
      text-decoration: none;
      border-radius: 15px;
      transition: background-color 0.3s ease, transform 0.3s ease;
      font-weight: 600;
      cursor: pointer;
      border: 1.5px solid transparent;
    }
    
    .btn:hover {
      background-color: var(--accent-color-dark);
      transform: scale(1.025);
	  border: 1.5px solid rgba(255, 142, 66, 0.5);
    }

    section {
      padding: 100px 50px;
    }
    
    section h2 {
      font-size: 2.5rem;
      margin-bottom: 30px;
      border-bottom: 3px solid var(--accent-color);
      display: inline-block;
      padding-bottom: 10px;
    }
    
    .about p,
    .contact p {
      max-width: 800px;
      margin-bottom: 20px;
    }

    .projects-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }
    
    .project-card {
      position: relative;
      background-color: #1e1e1e;
      border-radius: 10px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
      cursor: pointer;
      border: 2px solid transparent;
      display: flex;
      flex-direction: column;
	  margin-bottom: 10px;
    }

    .project-card a {
	  text-decoration: none;
	  color: white;
    }
    
    .project-card:hover {
      transform: translateY(-2.5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
      border: 2px solid var(--accent-color);
    }
    
    .project-card img {
      width: 100%;
      object-fit: cover;
      height: 200px;
      transition: transform 0.3s ease, filter 0.3s ease;
    }
    
    .project-card:hover img {
      transform: scale(1.05);
      filter: brightness(1.1);
    }

    .project-card.pinned {
        border: 1.2px solid var(--accent-color);
        position: relative;
    }

    .project-card.pinned i {
        font-size: 0.8rem;  
    }

    .project-card.pinned:hover {
      transform: translateY(-2.5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
      border: 2px solid var(--accent-color);
    }

    .pinned-badge {
        position: absolute;
        top: 10px;
        left: 10px;
        background: var(--accent-color);
        color: #fff;
        font-weight: bold;
        padding: 2px 6px;
        border-radius: 15px;
        display: flex;
        align-items: center;
        gap: 4px;
        font-size: 12px;
        z-index: 10;
    }

    .pinned-badge:hover {
	  border: 0.75px solid rgba(255, 142, 66, 0.5);
    }
    
    .project-card .card-content {
      padding: 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .project-card .card-actions {
      margin-top: auto;
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }
    
    .project-card h3 {
      margin-bottom: 15px;
    }
    
    .project-card p {
      font-size: 0.95rem;
    }

    .project-card::after {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #fff;
      opacity: 0;
      transition: opacity 0.3s ease;
      font-weight: 600;
      letter-spacing: 1px;
      pointer-events: none;
    }

    .project-card:hover::after {
      opacity: 1;
    }

   .project-card svg {
     width: 18px; 
     height: 18px; 
     vertical-align: middle; 
     transform: translate(4px, -2px); 
	 margin-left: 3px;
   }

   .project-card .btn {
     margin-top: auto; 
	 margin-right: 12.5px;
     margin-left: -7.5px;
   }

    @media (max-width: 600px) {
        .project-card .btn {
            width: 275px;
            text-align: center;
        }
    }

   .contactcard-grid {
       display: flex;
       flex-direction: column; 
       gap: 20px;
       width: 100%;
       max-width: 45%;
   }

    @media (min-width: 901px) {
        .contactcard-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (max-width: 900px) {
        .contactcard-grid {
            grid-template-columns: repeat(2, 1fr); 
        }
    }

    @media (max-width: 600px) {
        .contactcard-grid {
            grid-template-columns: repeat(1, 1fr); 
            max-width: 100%;
        }
        .contactcard {
          width: 100%;
      }
    }

	.contactcard {
      position: relative;
      background-color: #1e1e1e;
      border-radius: 10px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
      cursor: pointer;
      border: 2px solid transparent;
      display: flex;
      flex-direction: column;
      height: 90%;
	}

    .contactcard svg {
      position: absolute;
      right: 10px; 
      top: 10px; 
      color: white;
      font-size: 26px; 
      transition: color 0.3s ease; 
    }

    .contactcard svg:hover {
      color: var(--accent-color); 
    }

	.contactcard:hover {
      transform: translateY(-2.5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
      border: 2px solid var(--accent-color);
	}

    .contactcard::after {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #fff;
      opacity: 0;
      transition: opacity 0.3s ease;
      font-weight: 600;
      letter-spacing: 1px;
      pointer-events: none;
    }

    .contactcard:hover::after {
      opacity: 1;
    }

	.contactcard a {
	  text-decoration: none;
	}

	.contactcard h4 {
	  color: white;
      text-align: left;
      font-size: 1.2rem;
      margin-top: 5px;     
      margin-left: 10px;
	}

	.contactcard p{
	  color: #a3a3a2;
      text-align: left;
      font-size: 1rem;
      margin-bottom: 5px;
	  margin-left: 10px;
	}

    .contact-container {
        display: flex;
        gap: 30px;
        justify-content: left;
        align-items: flex-start;
        flex-wrap: wrap; 
    }

    .contact-links {
        display: flex;
        flex-direction: column;
        gap: 15px;
        min-width: 200px;
    }

    .contact-links a {
        color: var(--accent-color);
        text-decoration: none;
        font-weight: 600;
    }

    .contact-links a:hover {
        text-decoration: underline;
    }

    .form-card {
        background-color: #1e1e1e;
        padding: 30px;
        border-radius: 12px;
        max-width: 700px;
        flex: 1;
    }

    .form-card .form-group {
        display: flex;
        flex-direction: column;
        margin-bottom: 20px;
    }

    .form-card label {
        font-weight: 600;
        margin-bottom: 6px;
        color: #ddd;
    }

    .form-card select {
        appearance: none;
        background-position: right 15px center;
    }

    .form-card input,
    .form-card select,
    .form-card textarea {
        background-color: #121212;
        border: 1.5px solid #333;
        color: var(--text-color);
        padding: 12px;
        border-radius: 8px;
        font-size: 1rem;
        transition: border 0.2s ease, box-shadow 0.2s ease;
        resize: none !important;
    }

    .form-card input:focus,
    .form-card select:focus,
    .form-card textarea:focus {
        outline: none;
        border: 1.5px solid var(--accent-color);
        box-shadow: 0 0 8px rgba(255,102,0,0.5);
    }

    .form-card textarea {
        min-height: 140px;
        resize: vertical;
    }

    .form-card button {
        display: inline-block;
        background-color: var(--accent-color);
        color: #fff;
        padding: 12px 30px;
        border-radius: 12px;
        font-weight: 600;
        cursor: pointer;
        border: 1.5px solid transparent;
        transition: all 0.3s ease;
    }

    .form-card button:hover {
        background-color: var(--accent-color-dark);
        transform: scale(1.03);
        border: 1.5px solid rgba(255,142,66,0.5);
    }

    .success-message, .error-message {
        padding: 12px 20px;
        border-radius: 10px;
        margin-bottom: 20px;
        font-weight: 600;
    }

    .success-message {
        background-color: #2e7d32;
        color: #dff0d8;
    }

    .error-message {
        background-color: #b71c1c;
        color: #ffdede;
    }

   @media (max-width: 768px) {
       .contact-container {
           flex-direction: column;
           align-items: center;
       }

       .contactcard-grid {
           width: 100%;
       }
   }

    .contact-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin-bottom: 20px;
    }

    .form-card {
        padding: 20px;
        width: 100%;
        max-width: 700px;
    }

    .form-card input,
    .form-card select,
    .form-card textarea {
        font-size: 0.95rem;
    }

    .form-card button {
        width: 100%;
        padding: 12px;
    }

    .discordcard {
      position: relative;
      background-color: #1e1e1e;
      border-radius: 10px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
      cursor: pointer;
      border: 2px solid transparent;
      display: flex;
      flex-direction: column;
      width: 60%;
      text-decoration: none;
      margin-bottom: 5px;
      height: 90%;
      padding: 10px;
    }

    @media (max-width: 600px) {
        .discordcard {
            width: 100%;
        }
    }

	.discordcard:hover {
      transform: translateY(-2.5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
      border: 2px solid var(--accent-color);
	}

    .discordcard::after {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #fff;
      opacity: 0;
      transition: opacity 0.3s ease;
      font-weight: 600;
      letter-spacing: 1px;
      pointer-events: none;
    }

    .discordcard:hover::after {
      opacity: 1;
    }

    .content {
      display: flex;
      align-items: flex-start; 
    }

    .text {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    .discordcard a {
      display: flex;
      flex-direction: row; 
      align-items: flex-start;
      text-decoration: none;
    }

	.discordcard h4 {
	  color: white;
      text-align: left;
      font-size: 1.2rem;
      margin-top: 5px;     
      margin-left: 10px;
	}

	.discordcard p {
	  color: #a3a3a2;
      text-align: left;
      font-size: 1rem;
      margin-bottom: 5px;
	  margin-left: 10px;
	}

    .discordcard .avatar-img {
      border-radius: 50%;
      width: 100px;
      height: 100px;
      object-fit: cover;
    }

    .discordcard svg {
      position: absolute;
      right: 10px; 
      top: 10px; 
      color: white;
      font-size: 26px; 
      transition: color 0.3s ease; 
    }

    .discordcard svg:hover {
      color: var(--accent-color); 
    }

    .discordcard .text img {
        height: 1.2em;
        width: auto;
        vertical-align: -0.2em;
        display: inline-block;
    }

    .discordcard code {
        display: inline-block;
        background-color: #2f3136;
        color: #fff;
        padding: 2px 6px;
        border-radius: 8px;
        font-family: 'Consolas', 'Courier New', monospace;
        font-size: 0.9em;
        line-height: 1.2;
        box-shadow: inset 0 0 2px rgba(214, 214, 214, 0.5);
        white-space: pre-wrap;
    }

    .avatar {
      position: relative;
      display: inline-block;
      overflow: visible;
    }

    .avatar-img {
      display: block;
      border-radius: 0;
    }

    .avatar-status {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
    }

    footer {
      background-color: #1a1a1a;
      text-align: center;
      padding: 30px 20px;
      font-size: 1rem;
      color: #f5f5f5;
    }

    footer p {
      margin: 0;
      font-family: 'Inter', sans-serif;
    }

    footer a {
      color: #ff6d00; 
      text-decoration: none;
    }

    footer a:hover {
      text-decoration: underline;
    }

    .footer-links {
      margin-top: 15px;
    }

    .footer-links a {
      margin: 0 10px;
      font-size: 0.9rem;
    }

    @media (max-width: 768px) {
      header {
        padding: 15px 20px;
      }
      nav ul li {
        margin-left: 15px;
      }
      .hero h1 {
        font-size: 2.5rem;
      }
      section {
        padding: 80px 20px;
      }
      .project-card img {
        height: 150px;
      }
    }

.title-tags {
  display: flex;
  align-items: center;
  justify-content: space-between; 
  gap: 10px;
}

h3 {
  margin: 0;
  font-size: 1.2rem;
  white-space: nowrap;
}

.tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap; 
  margin-bottom: 17px;
}

.tag {
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6); 
  color: #ddd;
  font-size: 11px;
  font-weight: bold;
  padding: 3px 7px;
  border-radius: 4px; 
  border: 1px solid rgba(255, 255, 255, 0.19);
}

.tag::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #aaa;
  border-radius: 50%;
  margin-right: 5px;
}

@media (max-width: 600px) {
  .title-tags {
    display: block; 
  }
  
  .tags {
    margin-top: 5px;
  }
  
  .tag {
    margin-right: 0; 
    margin-bottom: 1px; 
  }
}

.tag.php::before { background-color: #8892BF; }    
.tag.nginx::before { background-color: #009639; }   
.tag.html::before { background-color: #E34F26; }   
.tag.css::before { background-color: #264DE4; }     
.tag.javascript::before { background-color: #F7DF1E; } 
.tag.typescript::before { background-color: #3178C6; } 
.tag.python::before { background-color: #3776AB; } 
.tag.java::before { background-color: #007396; }   
.tag.c::before { background-color: #A8B9CC; }       
.tag.cpp::before { background-color: #00599C; }    
.tag.csharp::before { background-color: #239120; }  
.tag.ruby::before { background-color: #CC342D; }    
.tag.swift::before { background-color: #FA7343; }   
.tag.kotlin::before { background-color: #7F52FF; } 
.tag.go::before { background-color: #00ADD8; }      
.tag.rust::before { background-color: #DEA584; }    
.tag.sql::before { background-color: #E38D13; }     
.tag.bash::before { background-color: #4EAA25; }    
.tag.perl::before { background-color: #39457E; }    
.tag.dart::before { background-color: #0175C2; }    
.tag.laravel::before { background-color: #FF2D20; }
.tag.vue::before { background-color: #42B883; }    
.tag.react::before { background-color: #61DAFB; }   
.tag.angular::before { background-color: #DD0031; } 
.tag.nodejs::before { background-color: #68A063; }  
.tag.shell::before { background-color: #89E051; }  
.tag.powershell::before { background-color: #012456; }  
.tag.asm::before { background-color: #6E4C13; }  
.tag.matlab::before { background-color: #E16737; }  
.tag.r::before { background-color: #276DC3; }  
.tag.lua::before { background-color: #000080; }  
.tag.elixir::before { background-color: #4B275F; }  
.tag.erlang::before { background-color: #A90533; }  
.tag.haskell::before { background-color: #5D4F85; }  
.tag.clojure::before { background-color: #5881D8; }  
.tag.fsharp::before { background-color: #B845FC; }  
.tag.ocaml::before { background-color: #EC6813; }  
.tag.scheme::before { background-color: #1E4B8F; }  
.tag.prolog::before { background-color: #74283C; }  
.tag.julia::before { background-color: #9558B2; }  
.tag.fortran::before { background-color: #4D41B1; }  
.tag.pascal::before { background-color: #E3F171; }  
.tag.abap::before { background-color: #E8274B; }  
.tag.cobol::before { background-color: #005CA5; }  
.tag.sas::before { background-color: #B25284; }  
.tag.groovy::before { background-color: #4298B8; }  
.tag.tcl::before { background-color: #E4CC98; }  
.tag.solidity::before { background-color: #3C3C3D; }  
.tag.sml::before { background-color: #C83232; }  
.tag.d::before { background-color: #B03931; }  
.tag.vhdl::before { background-color: #ADB2D5; }  
.tag.verilog::before { background-color: #B2B7F8; }  
.tag.jq::before { background-color: #222222; }  
.tag.svelte::before { background-color: #FF3E00; }  
.tag.bootstrap::before { background-color: #7952B3; }  
.tag.tailwind::before { background-color: #06B6D4; }  
.tag.alpinejs::before { background-color: #8BC0D0; }  
.tag.django::before { background-color: #092E20; }  
.tag.express::before { background-color: #000000; }  
.tag.fastapi::before { background-color: #009688; }  
.tag.flask::before { background-color: #000000; }  
.tag.rails::before { background-color: #CC0000; }  
.tag.spring::before { background-color: #6DB33F; }  
.tag.mongodb::before { background-color: #47A248; }  
.tag.postgresql::before { background-color: #336791; }  
.tag.redis::before { background-color: #DC382D; }  
.tag.firebase::before { background-color: #FFCA28; }  
.tag.graphql::before { background-color: #E10098; }  
.tag.cassandra::before { background-color: #1287B1; }  
.tag.sqlite::before { background-color: #003B57; }  
.tag.docker::before { background-color: #2496ED; }  
.tag.kubernetes::before { background-color: #326CE5; }  
.tag.terraform::before { background-color: #5C4EE5; }  
.tag.ansible::before { background-color: #EE0000; }  
.tag.aws::before { background-color: #FF9900; }  
.tag.azure::before { background-color: #0089D6; }  
.tag.gcp::before { background-color: #4285F4; }  
.tag.heroku::before { background-color: #430098; }  
.tag.powershell::before { background-color: #012456; }  
.tag.groovy::before { background-color: #4298B8; }  
.tag.jq::before { background-color: #222222; }  
.tag.lisp::before { background-color: #3C5A99; }  
.tag.forth::before { background-color: #7C4DFF; }  
.tag.racket::before { background-color: #9F1D20; }  
.tag.idris::before { background-color: #B300B3; }  
.tag.coq::before { background-color: #A30C00; }  
.tag.unity::before { background-color: #000000; }  
.tag.unreal::before { background-color: #0E1128; }  
.tag.godot::before { background-color: #478CBF; }  
.tag.pygame::before { background-color: #00A0D0; }  
.tag.assembly::before { background-color: #6E4C13; }  
.tag.embeddedc::before { background-color: #A8B9CC; }  
.tag.verilog::before { background-color: #B2B7F8; }  
.tag.vhdl::before { background-color: #ADB2D5; }  
.tag.mariadb::before { background-color: #003545; }
.tag.json::before { background-color: #00B4A0; }
