:root {
    --background-color: #f7f7f7;
    --text-color: #000000;
    --text-secondary: #4d4d4d;
    --header-bg: rgba(255, 255, 255, 0.603);
    --card-bg: #ffffff;
    --card-text: #090909;
    --tab-bg: #f2f2f2;
    --tab-active: #ffffff;
    --border-color: #f3f3f3;
    --accent: #2553fe;
    --accent-hover: #859fff;
    --bg-secondary: #f7f7f7;
  }
  
  [data-theme="dark"] {
    --background-color: #121212;
    --text-color: #fff;
    --text-secondary: #b1b1b1;
    --header-bg: rgba(43 43 43 / 70%);
    --card-bg: #1e1e1e;
    --card-text: #fff;
    --tab-bg: #2d2d2d;
    --tab-active: #3d3d3d;
    --border-color: #2d2d2d;
    --accent: #859fff;
    --accent-hover: #2553fe;
    --bg-secondary: #1e1e1e;
  }
  
  html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    transition: background-color 0.3s ease;
  }
  
  header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1160px;
    background-color: var(--header-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 12px 20px 0 rgba(0, 0, 0, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    height: 60px;
    border-radius: 15px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 100%;
    position: relative;
  }
  
  .hamburger-menu {
    display: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    margin-right: 15px;
  }
  
  .hamburger-menu .bar {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px 0;
    background-color: var(--text-color);
    transition: all 0.3s ease;
  }
  
  .header-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
  }
  
  .logo {
    font-size: 18px;
    font-weight: 600;
    color: var(--card-text);
    text-decoration: none;
  }

  .logo:hover {
    opacity: 70%;
}

  .hyperos-text {
    font-size: 16px;
    margin-left: 10px;
    font-weight: 700;
    color: var(--accent);
    white-space: nowrap;
  }
  
  .hyperos-text a{
    text-decoration: none;
  }
  
  @media (max-width: 768px) {
    .hyperos-text {
      font-size: 0;
    }
  }
  
  .header-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 8px;
    background: none;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
  }
  
  .header-btn:hover {
    background-color: rgb(171 171 171 / 20%);
    transform: translateY(-1px);
  }
  
  /* Dropdown Menu Styles */
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background-color: var(--card-bg);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    z-index: 1001;
    display: none;
    margin-top: 5px;
  }
  
  /* Remove hover behavior - now controlled by JavaScript */
  /*.dropdown:hover .dropdown-menu {
    display: block;
  }*/
  
  .dropdown-menu.active {
    display: block;
  }
  
  .dropdown-item {
    display: block;
    padding: 8px 16px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
  }
  
  .dropdown-item:hover {
    background-color: rgba(171, 171, 171, 0.1);
    color: var(--accent);
  }
  
  .theme-toggle {
    padding: 6px 12px;
    background-color: var(--bg-secondary);
    font-size: 14px;
  }
  
  @media (max-width: 768px) {
    .hamburger-menu {
        display: block;
    }

    .header-content {
        padding: 0 15px;
    }

    .header-buttons {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--header-bg);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 15px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 15px 15px;
        flex-direction: column;
        gap: 10px;
        z-index: 1000;
    }

    .header-buttons.active {
        display: flex;
    }
    
    /* Mobile dropdown styles */
    .dropdown {
        width: 100%;
    }
    
    .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        margin-top: 5px;
        margin-bottom: 5px;
        background-color: rgba(171, 171, 171, 0.1);
    }

    .hamburger-menu.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 5px);
    }

    .hamburger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -5px);
    }

    .header-btn {
        width: 100%;
        text-align: center;
        padding: 10px;
    }

    .header-controls {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .search-form {
        max-width: 150px;
    }
  }
  
  .app-list {
    background-color: var(--card-bg);
    color: var(--card-text);
  }

  .phones-list {
    background-color: var(--card-bg);
    color: var(--card-text);
  }
  
  
  .app-item {
    border-bottom: 1px solid var(--border-color);
  }
  
  /* Theme toggle button styles */
  .theme-toggle {
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .theme-toggle i {
    font-size: 18px;
  }
  
  .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    max-width: 60%;
    width: 60%;
    margin: 30px auto 0;
    gap: 20px;
  }
  
  .section {
    width: 48%;
  }
  
  .app-list {
    width: 100%;
    background-color: var(--card-bg);
    color: var(--card-text);
    border-radius: 8px;
    overflow: hidden;
  }
  
  .app-item {
    display: flex;
    align-items: center;
    padding: 15px;
  }
  
  .app-item:last-child {
    border-bottom: none;
  }
  
  .icon {
    width: 48px;
    height: 48px;
    margin-right: 15px;
    border-radius: 8px;
  }
  
  .app-details {
    display: flex;
    flex-direction: column;
  }
  
  .app-name {
    font-size: 18px;
    font-weight: bold;
  }
  
  .app-name-about {
    font-size: 24px;
    font-weight: bold;
    margin: 0px;
  }
  
  .app-version {
    margin-top: 5px;
    font-size: 14px;
    color: var(--text-secondary);
    display: block;
    font-weight: 300;
}
  
  .tabs {
    display: inline-flex;
    justify-content: space-around;
    cursor: pointer;
    text-decoration: none;
    width: 100%;
  }
  
  @media (max-width: 768px) {
    .tabs {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
        white-space: nowrap;
        justify-content: flex-start;
        padding-bottom: 5px;
    }
    
    .tabs::-webkit-scrollbar {
        display: none; /* Chrome, Safari and Opera */
    }
    
    .tab {
        flex: 0 0 auto;
    }
  }
  
  .tab {
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    color: var(--text-secondary);
    margin: 0 5px;
    position: relative;
    white-space: nowrap; 
    text-decoration: none;
  }
  
  .tab.active{ 
	font-weight: bold;
    color: var(--text);
  }
  
  .tab.active::after{ 
        display: block;
		height:5px;
  }
  
  .tab::after {
		content: "";
		position: absolute;
		bottom: -2px;
		left: 50%;
		transform: translateX(-50%);
		width: 30px;
		height: 4px;
		background-color: var(--accent);
		border-radius: 10px;
		display: none;
	}

  .tab:hover {
    color: var(--text-color);
  }
  
  /* Yeni tablo başlık stilleri */
  .section-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .section-description {
    color: var(--text-secondary);
    font-size: 14px;
    opacity: 0.8;
  }
  
  .section-title i {
    font-size: 18px;
    color: var(--card-bg);
  }
  
  /* Telefon tablosu stilleri */
  .phones-table {
    width: 100%;
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
  }
  
  .phones-table table {
    width: 100%;
    border-collapse: collapse;
  }
  
  .phones-table th,
  .phones-table td {
    padding: 12px 15px;
    text-align: left;
    color: var(--card-text);
  }
  
  .phones-table tr {
    border-bottom: 1px solid var(--border-color);
  }
  
  .phones-table tr:last-child {
    border-bottom: none;
  }
  
  /* Responsive tasarım için medya sorgusu */
  @media (max-width: 768px) {
    .container {
      flex-direction: column;
      max-width: 90%;
      width: 90%;
    }
    .section {
      width: 100%;
      margin-bottom: 20px;
    }
  }
  
  footer {
    background-color: var(--card-bg);
    color: var(--text-secondary);
    padding: 20px 0;
    text-align: center;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .footer-logo img {
    width: 100px;
  }
  
  .footer-links {
    display: flex;
    gap: 20px;
  }
  
  @media (max-width: 768px) {
    .footer-links {
        display: contents;
    }
  }
  
  .footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-links a:hover {
    color: var(--accent);
  }
  
  .footer-social {
    display: flex;
    gap: 15px;
  }
  
  .footer-social a {
    color: var(--accent);
    font-size: 18px;
    transition: color 0.3s;
  }
  
  .footer-social a:hover {
    color: var(--accent-hover);
  }
  
  .footer-copyright {
    font-size: 14px;
  }
  
  .hyperos-logo-image {
    width: 25px;
    height: 25px;
  }
  
  .logo {
    display: flex;
    align-items: center;
  }
  
  .search-form {
    display: flex;
    align-items: center;
    position: relative;
    margin: 0;
  }
  
  .search-input {
    width: 100%;
    padding: 8px 40px;
    background-color: var(--bg-secondary);
    border: none;
    border-radius: 13px;
    font-size: 14px;
    color: var(--text-primary);
    outline: none;
    transition: all 0.2s ease;
  }
  
  .search-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
  }
  
  .search-input:focus {
    background-color: var(--bg-secondary);
    border: 2px solid var(--accent);
  }
  
  .search-button {
    position: absolute;
    left: 12px;
    background: none;
    border: none;
    padding: 0;
    color: var(--text-secondary);
    cursor: pointer;
  }
  
  .search-button i {
    font-size: 14px;
  }
  
  /* Ana container responsive */
  .app-info {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
  }
  
  .app-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 16px;
  }
  
  .app-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
  }
  
  .app-details {
    flex: 1;
  }
  
  .app-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 16px;
  }
  
  /* Screenshots Section */
  .app-screenshots {
    margin-bottom: 32px;
  }
  
  .section-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .section-title i {
    color: var(--primary-color);
  }
  
  .screenshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 16px;
  }
  
  .screenshot-grid img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.2s;
  }
  
  .screenshot-grid img:hover {
    transform: scale(1.02);
  }
  
  /* App Details Section */
  .details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 16px;
  }
  
  .detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  
  .detail-label {
    font-size: 13px;
    color: var(--text-secondary);
  }
  
  .detail-value {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 500;
  }
  
  /* Download Section */
  .download-section {
    margin-top: 32px;
    text-align: center;
  }
  
  .download-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
  }
  
  .download-button:hover {
    background-color: var(--primary-color-dark);
  }
  
  .download-info {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-secondary);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .app-header {
      flex-direction: column;
      text-align: center;
    }
  
    .details-grid {
      grid-template-columns: 1fr;
    }
  
    .screenshot-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  
  
  /* Responsive media queries */
  @media (max-width: 768px) {
  
    .app-header {
      flex-direction: column;
      text-align: center;
      gap: 16px;
      padding: 16px;
    }
  
    .app-icon {
      width: 80px;
      height: 80px;
    }
  
  
    /* Version item responsive */
    .version-item {
      flex-direction: column;
      gap: 16px;
      padding: 16px;
    }
  
    .version-info {
      width: 100%;
      text-align: center;
    }
  
    .version-meta {
      width: 100%;
      flex-direction: column;
      align-items: center;
      gap: 12px;
    }
  
    .version-download {
      text-align: center;
      padding: 12px 0;
    }
  
    /* Pagination responsive */
    .pagination {
      flex-direction: column;
      gap: 16px;
    }
  
    .page-numbers {
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
    }
  
    .page-link {
      padding: 8px 12px;
      min-width: 40px;
    }
  }
  
  /* Daha küçük ekranlar için ek düzenlemeler */
  @media (max-width: 480px) {
  
    .version-number {
      font-size: 16px;
    }
  
    .version-code {
      font-size: 13px;
    }
  
    .version-date {
      font-size: 14px;
    }
  
    .version-size {
      font-size: 13px;
    }
  
    .section-title {
      font-size: 25px;
    }
  
    .app-description {
      padding: 16px;
      font-size: 14px;
    }
  }
  
  /* Tablet boyutu için orta düzenlemeler */
  @media (min-width: 769px) and (max-width: 1024px) {
  
    .version-item {
      padding: 16px;
    }
  
    .version-meta {
      gap: 16px;
    }
  }
  
  /* Dark mode için ek optimizasyonlar */
  @media (prefers-color-scheme: dark) {
    .version-item:hover {
      
    }
  }
  
  /* Yüksek DPI ekranlar için optimizasyonlar */
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .app-icon {
      border-radius: 18px;
    }
  }
  
  /* Dokunmatik cihazlar için hover optimizasyonları */
  @media (hover: hover) {
    .version-download:hover {
      transform: translateY(-1px);
    }
  }
  
  /* Ekran yönü değişimi için optimizasyonlar */
  @media (orientation: landscape) and (max-width: 768px) {
    .app-header {
      flex-direction: row;
      text-align: left;
    }
  }
  
  /* Safe area için iOS optimizasyonları */
  
  /* App Info Styles */
  .app-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
  }
  
  .app-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
  }
  
  .app-details {
    flex: 1;
  }
  
  .app-version {
    font-size: 14px;
    color: var(--text-secondary);
  }
  
  .app-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
  }
  
  /* Screenshots Section */
  .app-screenshots {
    margin-bottom: 32px;
  }
  
  .section-title {
    font-size: 25px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .section-title i {
    color: var(--primary-color);
  }
  
  .screenshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 16px;
  }
  
  .screenshot-grid img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.2s;
  }
  
  .screenshot-grid img:hover {
    transform: scale(1.02);
  }
  
  /* App Details Section */
  .details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 16px;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 16px;
    transition: all 0.2s ease;
    border: 1px solid var(--border-color);
  }
  
  .detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  
  .detail-label {
    font-size: 13px;
    color: var(--text-secondary);
  }
  
  .detail-value {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 500;
  }
  
  /* Download Section */
  .download-section {
    margin-top: 32px;
    text-align: center;
  }
  
  .download-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
  }
  
  .download-button:hover {
    background-color: var(--primary-color-dark);
  }
  
  .download-info {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-secondary);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .app-header {
      flex-direction: row;
      text-align: center;
    }
  
    .details-grid {
      grid-template-columns: 1fr;
    }
  
    .screenshot-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding: 10px 0;
  }
  
  .page-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    border-radius: 8px;
    background: var(--card-bg);
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    border: 1px solid var(--border-color);
  }
  
  .page-link:hover {
    background: var(--accent);
    color: white;
  }
  
  .page-link.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
  }
  
  @media (max-width: 768px) {
    .pagination {
        padding: 10px;
    }
    
    .page-numbers {
        gap: 4px;
    }
    
    .page-link {
        min-width: 28px;
        height: 28px;
        padding: 0 6px;
        font-size: 13px;
    }

    /* Hide some page numbers on very small screens */
    .page-numbers .page-link:not(.active):not(:first-child):not(:last-child):not(:nth-child(2)):not(:nth-last-child(2)) {
        display: none;
    }

    /* Show ellipsis for hidden pages */
    .page-numbers .page-link:nth-child(3):not(.active)::after {
        content: "...";
        position: absolute;
        margin-left: 8px;
    }
  }
  
  .version-list {
    display: flex;
    flex-direction: column;
    background-color: var(--card-bg);
    border-radius: 16px;
}
  
  .version-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: var(--card-bg);
    border-radius: 16px;
    transition: all 0.2sease;
    border-bottom: 1px solid var(--border-color);
}
  
  .version-item:hover {
    background-color: var(--border-color);
  }
  
  .version-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .version-number {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
  }
  
  .version-code {
    color: var(--text-secondary);
    font-size: 14px;
    opacity: 0.8;
  }
  
  .version-date {
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 500;
  }
  
  .version-meta {
    display: flex;
    align-items: center;
  }
  
  .version-size {
    color: var(--text-secondary);
    font-size: 14px;
    padding: 6px 12px;
    background: var(--bg-primary);
    border-radius: 20px;
  }
  
  .version-download {
    background: var(--accent);
    color: var(--background-color);
    padding: 12px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
  }
  
  .version-download:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(var(--primary-color-rgb), 0.3);
  }
  
  .screenshot-container {
    width: 100%;
    overflow-x: auto;
    padding: 20px 0;
  }
  
  .screenshot-scroll {
    display: flex;
    gap: 20px;
    padding: 0 0px;
  }
  
  .screenshot-scroll img {
    width: 280px;
    height: auto;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s;
  }
  
  .screenshot-scroll img:hover {
    transform: scale(1.05);
  }
  
  .modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    box-sizing: border-box;
}

.modal-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 1200px;
}

.modal-content {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    margin-bottom: 20px;
    display: block;
}

.modal-download-button {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    z-index: 10000;
    margin-top: 15px;
}

.modal-download-button:hover {
    background-color: #45a049;
}

.hidden {
    display: none;
}
  
  /* Header Buttons */
  .header-buttons {
    display: flex;
    gap: 16px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .mobile-menu-button {
      display: block;
    }
  
    .header-buttons {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
      background: var(--card-bg);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      z-index: 1000;
    }
  
    .header-buttons.active {
      display: flex;
    }
  }
  
  /* Breadcrumb Styles */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    margin: 16px 0;
    white-space: nowrap;
    overflow: hidden;
}

.breadcrumb a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.2s ease;
    text-overflow: ellipsis;
    overflow: hidden;
}

.breadcrumb a:hover {
    color: var(--primary-color-dark);
}

.breadcrumb i {
    color: var(--text-secondary);
    font-size: 12px;
}

.breadcrumb span {
    color: var(--text-primary);
    font-weight: 500;
    text-overflow: ellipsis;
    overflow: hidden;
}

@media (max-width: 768px) {
    .breadcrumb {
        font-size: 13px;
    }
    
    .breadcrumb a, .breadcrumb span {
        max-width: 150px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* Dreamy blur arka plan */
.dreamy-blur {
    position: fixed;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100px;
    z-index: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0;
    pointer-events: none;
    overflow: hidden;
}

.blur-circle {
    width: 100%;
    max-width: 400px;
    height: 100px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.7;
    animation: spinAndGrow 20s infinite alternate;
    overflow: hidden;
    transform-origin: center;
}

@keyframes spinAndGrow {
    0% {
        transform: scale(0.8) rotate(0deg);
    }
    50% {
        transform: scale(1.2) rotate(180deg);
    }
    100% {
        transform: scale(0.8) rotate(360deg);
    }
}

/* Farklı renklerde daireler */
.blur-circle:nth-child(1) {
    background: rgba(255, 0, 150, 0.5);
}

.blur-circle:nth-child(2) {
    background: rgba(0, 150, 255, 0.5);
}

.blur-circle:nth-child(3) {
    background: rgba(0, 255, 150, 0.5);
}

.blur-circle:nth-child(4) {
    background: rgba(255, 255, 0, 0.5);
}

@media (max-width: 768px) {
    .dreamy-blur {
        width: 100vw;
        height: 80px;
    }
    
    .blur-circle {
        max-width: 200px;
        height: 80px;
    }
}

/* App grid container */
.app-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Kartlar arasındaki boşluk */
    justify-content: center; /* Kartları yatayda ortala */
}

/* App card */  
.app-card {
    flex: 1 1 calc(16.66% - 20px); /* Her kartın genişliği, 6 sütunlu bir düzen için */
    box-sizing: border-box;
    background-color: var(--card-bg);
    border-radius: 8px;
    transition: transform 0.3s ease;
    text-decoration: none;
    color: var(--text-color);
	display: flex;
}

.list-card{
	display: block;
    text-align: center;
    padding: 15px;
}

.app-card:hover {
    transform: translateY(-1px); /* Hover efekti */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .app-card {
        flex: 1 1 calc(50% - 20px); /* 2 sütunlu bir düzen için */
    }
}

@media (max-width: 480px) {
    .app-card {
        flex: 1 1 100%; /* Tek sütunlu bir düzen için */
    }
}

/* Center the download-panels */
.download-panels {
  display: flex;
      gap: 20px;
      box-sizing: border-box;
}

@media (max-width: 768px) {
  .download-panels {
    display: inline-grid;
      width: auto;
  }

  .download-confirm {
    width: auto;
}
}

/* Optional: Style the download-confirm sections */
.download-confirm {
    width: 100%;
    max-width: 600px; /* Limit the width for better readability */
    background: var(--card-bg);
    padding: 20px;
    border-radius: 16px;
    margin: 20px 0;
}

.app-details {
    color: var(--text-secondary);
    overflow: hidden;
}

.countdown {
    text-align: center;
    margin: 20px 0;
    color: var(--text-color);
}

.download-button {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.download-button:hover {
    background: var(--accent-hover);
}

#download-link {
    text-align: center;
}

/* Style for the app details list */
.app-details ul {
    list-style-type: none; /* Remove default list bullets */
    padding: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
}

.app-details li {
    padding: 10px 15px; /* Padding for spacing */
    border-bottom: 1px solid var(--card-bg); /* Divider between items */
    font-size: 16px; /* Font size for readability */
}

.app-details li:last-child {
    border-bottom: none; /* Remove border from last item */
}

.app-details strong {
    color: var(--card-text);
    font-weight: bold; /* Bold labels for emphasis */
}

/* Optional: Add hover effect */
.app-details li:hover {
    background-color: var(--card-bg) /* Light gray background on hover */
}

/* Download Panel Styles */
.download-panel {
    margin: 20px 0;
    width: 100%;
}


.download-confirm {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 20px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.download-confirm h2 {
    margin: 0 0 15px 0;
    font-size: 1.2rem;
    color: var(--text-primary);
}

.app-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.app-details li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.app-details li:last-child {
    border-bottom: none;
}

.countdown {
    text-align: center;
    margin: 20px 0;
    padding: 5px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
}

.timer {
    font-weight: bold;
    color: var(--accent);
}

.download-link {
    text-align: center;
}

.download-button {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Mobil görünüm için özel stiller */
@media (max-width: 768px) {

    .download-confirm {
        padding: 15px;
        margin: 0 auto 15px auto;
        width: 100%;
    }

    .app-details li {
        font-size: 0.9rem;
        padding: 8px 5px;
    }

    .download-button {
        width: 100%;
        padding: 15px;
        box-sizing: border-box;
    }
}

/* 404 Page Styles */
.error-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.error-content {
    background: var(--card-bg);
    border-radius: 40px;
    padding: 40px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.error-content h1 {
    font-size: 4rem;
    margin: 0;
    color: var(--accent);
    font-weight: 700;
}

.error-content p {
    font-size: 1.5rem;
    margin: 20px 0 30px;
    color: var(--text-primary);
}

.error-content img {
    width: 100%;
    border-radius: 20px;
    margin: 20px 0;
}

.error-content .home-button {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 15px 40px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.error-content .home-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Mobil görünüm için özel stiller */
@media (max-width: 768px) {
    .error-content {
        padding: 30px;
        border-radius: 30px;
    }

    .error-content h1 {
        font-size: 3rem;
    }

    .error-content p {
        font-size: 1.2rem;
    }
}

.install-guide-section {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 20px;
}

.guide-preview {
  cursor: pointer;
  padding: 10px;
  position: relative;
}

.preview-text {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.read-more {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  margin-top: 8px;
}

.guide-full {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.guide-content {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 16px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.guide-content h3 {
  margin-top: 0;
  color: var(--text-primary);
}

.guide-content ol {
  color: var(--text-primary);
  line-height: 1.8;
}

.close-guide {
  background: var(--accent);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  margin-top: 20px;
}

.close-guide:hover {
  opacity: 0.9;
}

.search-results {
    position: absolute;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    width: calc(100% - 20px);
    margin-top: 5px;
  /*   display: none; Initially hidden */
}

.search-result-item {
    padding: 10px;
    cursor: pointer;
}

.search-result-item:hover {
    background-color: #f0f0f0;
}

.app-item p{
  margin-left: 5px;
}
.brand-options {
  display: flex;
  justify-content: space-around; /* Butonları yatayda eşit dağıt */
  margin-top: 20px; /* Üstten boşluk */
  gap: 15px;
}

.brand-box {
  display: inline-block; /* Butonları blok olarak göster */
  padding: 10px 20px; /* İçerik için boşluk */
  background-color: #007bff; /* Arka plan rengi */
  color: white; /* Yazı rengi */
  text-decoration: none; /* Alt çizgiyi kaldır */
  border-radius: 5px; /* Kenarları yuvarla */
  transition: background-color 0.3s; /* Geçiş efekti */
}

.brand-box:hover {
  background-color: #0056b3; /* Hover durumunda arka plan rengi */
}

.search-container {
  margin: 20px 0; /* Üst ve alt boşluk */
  text-align: center; /* Ortala */
}

#searchInput {
width: 95%;
padding: 15px;
border: 2px solid var(--border-color);
border-radius: 35px;
font-size: 16px;
transition: border-color 0.3s;
}

.searchinput {
  width: 100%;
  padding: 15px;
  border: 2px solid var(--border-color);
  border-radius: 35px;
  font-size: 16px;
  transition: border-color 0.3s;
  }

  .searchinput:focus {
    outline: none; /* Kenar çizgisi kaldır */
    border-color: #0056b3; /* Odaklandığında kenar rengi değişimi */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* Hafif gölge efekti */
  }

#searchInput:focus {
  outline: none; /* Kenar çizgisi kaldır */
  border-color: #0056b3; /* Odaklandığında kenar rengi değişimi */
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* Hafif gölge efekti */
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.app-buttons {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    justify-content: center;
}

.feature-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: var(--card-bg);
    color: var(--text-color);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-button:hover {
    background-color: var(--accent);
    color: white;
    transform: translateY(-2px);
}

.feature-button i {
    font-size: 16px;
}

@media (max-width: 768px) {
    .app-buttons {
        flex-wrap: wrap;
    }
    
    .feature-button {
        width: 100%;
        justify-content: center;
        padding: 15px;
    }
}

.version-note {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Header Search Results Styles */
#searchResults {
    position: absolute;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: calc(100% - 20px);
    max-width: 300px;
    margin-top: 5px;
    display: none;
    text-decoration: none;
}

.search-results-title {
    padding: 15px;
    font-size: 1.5em;
    font-weight: 700;
    color: var(--text-color);
}

a.search-item {
    text-decoration: none;
    color: var(--text-color);
}

/* ROM Page Styles */
.rom-indicators {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.rom-box {
    flex: 1;
    padding: 15px;
    border-radius: 12px;
    font-size: 14px;
    text-align: center;
    background: var(--card-bg);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 120px;
}

.rom-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.rom-box span:first-child {
    font-size: 24px;
    font-weight: bold;
    color: var(--accent);
}

.rom-box span:last-child {
    font-size: 14px;
    color: var(--text-secondary);
}

.available {
    color: #28a745;
    font-weight: bold;
}

.unavailable {
    color: #dc3545;
    font-weight: bold;
}

/* Brand Title Styling */
.brand-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
    position: relative;
}

.brand-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background-color: var(--accent);
}

.wallpaper-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.wallpaper-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  transition: transform 0.3s ease;
  position: relative;
}

.wallpaper-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.wallpaper-container {
  position: relative;
  padding-bottom: 177.78%;
  /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.wallpaper-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.wallpaper-image:hover {
  transform: scale(1.05);
}

/* GCam Page Styles */
.no-gcam-message {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    margin: 20px 0;
}

.no-gcam-message p {
    color: var(--text-secondary);
    margin: 10px 0 0;
}

.gcam-versions {
    margin: 20px 0;
}

/* Comments Section Styles */
.comments-section {
    margin-top: 40px;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 8px;
}

.comment-form {
    margin: 20px 0;
    width: 96%;
    background: var(--input-bg, var(--card-bg));
    border-radius: 10px;
}
.comment-image{
  width:35px;
  height:35px;
  border-radius:50%;
}
.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--border-color);
    color: var(--text-color);
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-color, var(--accent));
    box-shadow: 0 0 0 3px rgba(74, 118, 168, 0.1);
    outline: none;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-comment {
    background: var(--accent);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
}

.submit-comment:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.comments-list {
    margin-top: 30px;
}

.comment {
    background: var(--border-color);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.comment-author {
    font-weight: bold;
    color: var(--accent);
}

.comment-date {
    color: var(--text-secondary);
    font-size: 0.9em;
}

.comment-content {
    line-height: 1.6;
}

/* Mobile responsiveness for forms */
@media (max-width: 768px) {
    .form-group input,
    .form-group textarea {
        width: 89%;
        font-size: 16px;
        padding: 15px;
    }
    
    .comment-form {
        padding: 10px;
    }
}

/* Clean links without underline */
.clean-link {
    text-decoration: none;
    color: inherit;
}

.hidden {
    display: none;
}

.device-photos-gallery {
  margin-bottom: 30px;
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}
.photo-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.photo-item:hover {
  transform: scale(1.03);
}
.photo-container {
  position: relative;
  padding-bottom: 100%; /* Square aspect ratio */
  height: 0;
  overflow: hidden;
}
.device-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  object-position: top;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.device-photo:hover {
  transform: scale(1.05);
}

/* FAQ Section Styles */
.faq-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--accent);
  font-weight: 600;
}

.faq-item p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
}


.section-title {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--text-color);
  font-weight: 700;
}

.section-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.app-description ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.app-description li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.app-description strong {
  color: var(--text-color);
  font-weight: 600;
}