/*^^^^^^^^Desktop 1200px+ ^^^^^^^^^*/
@media (min-width: 1200px) {
  .burger-toggle {
    display: none;
  }

  .burger-icon {
    display: none;
  }

  .menu {
    color: white;
    display: flex;
    background-color: rgba(255, 0, 0, 0.83);
    border-radius: 50px;
    padding: 0px;
    margin: 30px auto;
    max-width: 1400px;
    justify-content: space-evenly;
  }

  .page-header {
    text-align: center;
    margin: 40px auto 50px;
    max-width: 800px;
  }

  .page-title {
    color: #ffffff;
    font-size: 56px;
    font-weight: 700;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0, 231, 255, 0.3);
  }

  .page-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    font-family: sans-serif;
    font-weight: 400;
  }

  .projects-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 60px 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }

  .project-card {
    background: rgba(15, 20, 35, 0.6);
    border: 1px solid rgba(0, 231, 255, 0.15);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }

  .project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 231, 255, 0.4);
    box-shadow: 0 8px 35px rgba(0, 231, 255, 0.2);
    background: rgba(20, 25, 40, 0.7);
  }

  .card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .card-icon {
    color: #00e7ff;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px rgba(0, 231, 255, 0.4));
  }

  .card-title {
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 14px;
    font-family: 'Segoe UI', sans-serif;
  }

  .card-description {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-family: sans-serif;
    flex-grow: 1;
  }

  .tech-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 25px;
  }

  .tag {
    background: rgba(0, 231, 255, 0.1);
    color: #00e7ff;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(0, 231, 255, 0.25);
    font-family: sans-serif;
  }

  .btn-github {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(0, 231, 255, 0.15), rgba(0, 150, 255, 0.15));
    color: #00e7ff;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    font-family: sans-serif;
    border: 1px solid rgba(0, 231, 255, 0.3);
    transition: all 0.3s ease;
  }

  .btn-github:hover {
    background: linear-gradient(135deg, rgba(0, 231, 255, 0.25), rgba(0, 150, 255, 0.25));
    border-color: rgba(0, 231, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 231, 255, 0.3);
  }

  .btn-github svg {
    width: 20px;
    height: 20px;
  }
}

/*^^^^^^^^Tablet 768px - 1199px ^^^^^^^^^*/
@media (min-width: 768px) and (max-width: 1199px) {
  .burger-toggle {
    display: none;
  }

  .burger-icon {
    display: none;
  }

  .menu {
    color: white;
    display: flex;
    background-color: rgba(255, 0, 0, 0.83);
    border-radius: 50px;
    padding: 0px 7%;
    margin: 30px auto;
    max-width: 90%;
    justify-content: space-around;
  }

  .page-header {
    text-align: center;
    margin: 35px auto 40px;
    padding: 0 20px;
  }

  .page-title {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 231, 255, 0.3);
  }

  .page-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    font-family: sans-serif;
  }

  .projects-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 40px 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .project-card {
    background: rgba(15, 20, 35, 0.6);
    border: 1px solid rgba(0, 231, 255, 0.15);
    border-radius: 18px;
    padding: 30px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }

  .project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 231, 255, 0.4);
    box-shadow: 0 8px 35px rgba(0, 231, 255, 0.2);
    background: rgba(20, 25, 40, 0.7);
  }

  .card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .card-icon {
    color: #00e7ff;
    margin-bottom: 18px;
    filter: drop-shadow(0 0 8px rgba(0, 231, 255, 0.4));
  }

  .card-icon svg {
    width: 45px;
    height: 45px;
  }

  .card-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: 'Segoe UI', sans-serif;
  }

  .card-description {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
    font-family: sans-serif;
    flex-grow: 1;
  }

  .tech-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 22px;
  }

  .tag {
    background: rgba(0, 231, 255, 0.1);
    color: #00e7ff;
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid rgba(0, 231, 255, 0.25);
    font-family: sans-serif;
  }

  .btn-github {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 231, 255, 0.15), rgba(0, 150, 255, 0.15));
    color: #00e7ff;
    padding: 11px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    font-family: sans-serif;
    border: 1px solid rgba(0, 231, 255, 0.3);
    transition: all 0.3s ease;
  }

  .btn-github:hover {
    background: linear-gradient(135deg, rgba(0, 231, 255, 0.25), rgba(0, 150, 255, 0.25));
    border-color: rgba(0, 231, 255, 0.5);
    transform: translateY(-2px);
  }

  .btn-github svg {
    width: 18px;
    height: 18px;
  }
}

/*^^^^^^^^Mobile/Small Tablet 480px - 767px ^^^^^^^^^*/
@media (min-width: 480px) and (max-width: 767px) {
  .burger-toggle {
    display: none;
  }

  .burger-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
  }

  .burger-icon span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
  }

  .burger-toggle:checked ~ .burger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .burger-toggle:checked ~ .burger-icon span:nth-child(2) {
    opacity: 0;
  }

  .burger-toggle:checked ~ .burger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }

  .menu {
    color: white;
    display: flex;
    background-color: rgba(255, 0, 0, 0.83);
    border-radius: 50px;
    padding: 10px 20px;
    margin: 20px;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background: linear-gradient(180deg, rgba(255, 0, 0, 0.95), rgba(150, 0, 0, 0.95));
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    padding: 80px 20px 20px;
    gap: 15px;
    transition: right 0.4s ease;
    z-index: 1000;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
  }

  .burger-toggle:checked ~ .container {
    right: 0;
  }

  .tags {
    width: 100%;
  }

  .nav-btn {
    display: block;
    background-color: rgba(255, 0, 0, 0.65);
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    text-align: center;
  }

  .nav-btn:hover {
    background-color: #ff3366;
    transform: translateX(-5px);
  }

  .name {
    z-index: 1001;
    font-size: 35px;
  }

  .page-header {
    text-align: center;
    margin: 30px 20px 35px;
  }

  .page-title {
    color: #ffffff;
    font-size: 38px;
    font-weight: 700;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 231, 255, 0.3);
  }

  .page-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-family: sans-serif;
  }

  .projects-container {
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .project-card {
    background: rgba(15, 20, 35, 0.6);
    border: 1px solid rgba(0, 231, 255, 0.15);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }

  .card-content {
    display: flex;
    flex-direction: column;
  }

  .card-icon {
    color: #00e7ff;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 8px rgba(0, 231, 255, 0.4));
  }

  .card-icon svg {
    width: 45px;
    height: 45px;
  }

  .card-title {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: 'Segoe UI', sans-serif;
  }

  .card-description {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    font-family: sans-serif;
  }

  .tech-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .tag {
    background: rgba(0, 231, 255, 0.1);
    color: #00e7ff;
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid rgba(0, 231, 255, 0.25);
    font-family: sans-serif;
  }

  .btn-github {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 231, 255, 0.15), rgba(0, 150, 255, 0.15));
    color: #00e7ff;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    font-family: sans-serif;
    border: 1px solid rgba(0, 231, 255, 0.3);
  }

  .btn-github svg {
    width: 18px;
    height: 18px;
  }
}

/*^^^^^^^^Mobile < 480px ^^^^^^^^^*/
@media (max-width: 479px) {
  .burger-toggle {
    display: none;
  }

  .burger-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    z-index: 1001;
  }

  .burger-icon span {
    width: 24px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
  }

  .burger-toggle:checked ~ .burger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }

  .burger-toggle:checked ~ .burger-icon span:nth-child(2) {
    opacity: 0;
  }

  .burger-toggle:checked ~ .burger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .menu {
    color: white;
    display: flex;
    background-color: rgba(255, 0, 0, 0.83);
    border-radius: 50px;
    padding: 10px 15px;
    margin: 15px;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, rgba(255, 0, 0, 0.95), rgba(150, 0, 0, 0.95));
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    padding: 60px 12px 12px;
    gap: 10px;
    transition: right 0.4s ease;
    z-index: 1000;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
  }

  .burger-toggle:checked ~ .container {
    right: 0;
  }

  .tags {
    width: 100%;
  }

  .nav-btn {
    display: block;
    background-color: rgba(255, 0, 0, 0.65);
    color: white;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    text-align: center;
  }

  .nav-btn:hover {
    background-color: #ff3366;
    transform: translateX(-5px);
  }

  .name {
    z-index: 1001;
    font-size: 28px;
  }

  .page-header {
    text-align: center;
    margin: 25px 15px 30px;
  }

  .page-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 231, 255, 0.3);
  }

  .page-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-family: sans-serif;
  }

  .projects-container {
    padding: 15px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .project-card {
    background: rgba(15, 20, 35, 0.6);
    border: 1px solid rgba(0, 231, 255, 0.15);
    border-radius: 15px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }

  .card-content {
    display: flex;
    flex-direction: column;
  }

  .card-icon {
    color: #00e7ff;
    margin-bottom: 14px;
    filter: drop-shadow(0 0 8px rgba(0, 231, 255, 0.4));
  }

  .card-icon svg {
    width: 40px;
    height: 40px;
  }

  .card-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Segoe UI', sans-serif;
  }

  .card-description {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 14px;
    font-family: sans-serif;
  }

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

  .tag {
    background: rgba(0, 231, 255, 0.1);
    color: #00e7ff;
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
    border: 1px solid rgba(0, 231, 255, 0.25);
    font-family: sans-serif;
  }

  .btn-github {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 231, 255, 0.15), rgba(0, 150, 255, 0.15));
    color: #00e7ff;
    padding: 11px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    font-family: sans-serif;
    border: 1px solid rgba(0, 231, 255, 0.3);
  }

  .btn-github svg {
    width: 16px;
    height: 16px;
  }
}
