<style>
    * {
      box-sizing: border-box;
    }
	
	.content-fadeclass {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 40px 20px;
      text-align: center;
    }
	
	.background-fixed {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: url('images/BannièreLogo.png') no-repeat center center;
      background-size: cover;
      z-index: -1;
      pointer-events: none;
    }
	
	body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      color: white;
      min-height: 100vh;
      overflow-x: hidden;
      position: relative;
      z-index: 0;
      display: flex;
      flex-direction: column;
    }

    .fade-out {
      opacity: 0;
      transition: opacity 0.5s ease;
    }
	
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 40px;
      background: rgba(0, 0, 0, 0.7);
      position: relative;
      z-index: 2;
    }
    nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      gap: 20px;
    }
    nav ul li a {
      color: white;
      text-decoration: none;
      font-weight: bold;
	  position: relative;
      overflow: hidden;
      transition: color 0.3s ease;
    }
	
	nav ul li a::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0%;
      height: 2px;
      background-color: white;
      transition: width 0.3s ease;
    }

    nav ul li a:hover::after {
      width: 100%;
    }
	
	#nav-apps {
	  color: white;
      text-decoration: none;
      font-weight: bold;
		
	}
    .lang-select {
      position: relative;
      cursor: pointer;
    }
    .lang-flag {
      display: flex;
      align-items: center;
      gap: 6px;
      background: none;
      border: none;
      color: white;
      font-size: 1rem;
    }
    .lang-dropdown {
      position: absolute;
      top: 100%;
      right: 0;
      background-color: rgba(0,0,0,0.9);
      border-radius: 5px;
      overflow: hidden;
      display: none;
      z-index: 10;
    }
    .lang-dropdown div {
      padding: 10px 15px;
      cursor: pointer;
    }
    .lang-dropdown div:hover {
      background-color: #444;
    }
    main {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 40px 20px;
      text-align: center;
    }
    .content-box {
      border-radius: 12px;
      padding: 20px 60px;
      max-width: 700px;
      width: 100%;
    }
    h1.logo-title {
      font-size: 3rem;
      margin-bottom: 10px;
    }
    h2 {
      font-size: 2rem;
      margin-bottom: 20px;
    }
    p {
      font-size: 1.2rem;
      margin-bottom: 30px;
    }
    .btn {
      display: inline-block;
      padding: 10px 20px;
      background-color: #00aaff;
      color: white;
      text-decoration: none;
      border-radius: 5px;
      font-size: 1rem;
	  transition: all 0.3s ease;
      transform: scale(1);
    }
	
	.btn:hover {
      background-color: #008ecc;
      transform: scale(1.05);
    }
	
	.appBtn {
      display: inline-block;
      color: white;
      text-decoration: none;
      border-radius: 5px;
      font-size: 1rem;
	  transition: all 0.3s ease;
      transform: scale(1);
    }
	
	.appBtn:hover {
      transform: scale(1.15);
    }
	
	.market-icon{
		width: 300px;
		max-width: 100%;
	}
	
    .lang-flag img {
      width: 24px;
      height: auto;
      vertical-align: middle;
    }
	
	.lang-flag img {
      transition: transform 0.3s ease, filter 0.3s ease;
    }

    .lang-flag img:hover {
      transform: scale(1.2) rotate(4deg);
      filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.4));
    }
	
	.lang-dropdown img {
      transition: transform 0.3s ease, filter 0.3s ease;
    }

    .lang-dropdown div:hover img {
      transform: scale(1.2) rotate(4deg);
      filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.4));
    }
	
	nav ul li.dropdown {
      position: relative;
    }

    .dropdown-content {
      display: none;
      position: absolute;
      top: calc(100% + 8px);
      left: 0;
      background: rgba(50, 50, 50, 0.95);
      padding: 10px 0;
      min-width: 220px;
      z-index: 100;
      border-radius: 6px;
	  border: 1px solid rgba(255, 255, 255, 0.2);
	  pointer-events: auto;
    }

    .dropdown-content li {
      padding: 5px 15px;
    }

    .dropdown-content li a {
      color: white;
      text-decoration: none;
      display: inline-flex;
      font-weight: normal;
	  position: relative;
      overflow: visible; 
      transition: color 0.3s ease;
    }
	
	.dropdown-content li a::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0%;
      height: 2px;
      background-color: white;
      transition: width 0.3s ease;
    }

    .dropdown-content li a:hover {
      background: rgba(255, 255, 255, 0.1);
    }
	
	.dropdown-content li a:hover::after {
      width: 100%;
    }

    nav ul li.dropdown:hover .dropdown-content {
      display: block;
    }
	
	nav ul li.dropdown::after {
      content: '';
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      height: 12px; 
    }
	
	.dropdown-label {
      position: relative;
      display: inline-block;
      cursor: default;
      font-weight: bold;
      color: white;
	  white-space: nowrap;
    }

    .dropdown-label::before {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0%;
      height: 2px;
      background-color: white;
      transition: width 0.3s ease;
    }
	
	.dropdown:hover .dropdown-label::before,
    .dropdown-label:hover::before {
      width: 100%;
    }
	
	.dropdown-label::after {
      content: ' ▼';
      font-size: 0.8em;
    }

    nav ul li.dropdown:hover .dropdown-label::after {
      width: 100%;
    }
	
	.app-title-div{
		display:flex;
		justify-content:center;
		align-items:center;
		gap:40px;
		padding-bottom:60px;
	}
	
	.app-icon {
      width: 20px;
      height: 20px;
      vertical-align: middle;
      margin-right: 8px;
    }
	
	.burger.open::before {
      content: '✖';
    }

    .burger::before {
      content: '☰';
    }
	
	.burger {
      display: none;
      font-size: 2rem;
      background: none;
      border: none;
      color: white;
      cursor: pointer;
      z-index: 1001;
    }
	nav .menu {
      display: flex;
      gap: 20px;
    }
	
	.project-icon img {
      width: 100px;
      height: 100px;
      object-fit: cover;
      border-radius: 8px;
    }
	
	.smallProject-icon{
		display: none;	
	}
	
	
	.smallProject-icon img {
      width: 100px;
      height: 100px;
      object-fit: cover;
      border-radius: 8px;
    }
	
	.app-privacy-nav {
		display: flex;
		justify-content: center;
		align-content: center;
		gap: 40px;
	}
	
	.storeBtnDiv{
		display: flex;
		justify-content: center;
		gap: 40px;
		padding-bottom: 100px;
	}
	
	.app-image-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
	  width: 100%;
    }


    .app-image-wrapper {
      width: calc(50% - 10px);
	  display: flex;
	  justify-content: center;
    }
	
	.app-image-wrapper-pad {
      padding-bottom: 50px;
    }
	
	.app-palier-img {
		width: 400px;
        height: auto;
        display: block;
        border-radius: 8px;
		padding : 20px;
		max-width: 100%;
	}
	.app-border-wrapper {
		background: rgba(0, 0, 0, 0.3);
		border: 1px solid rgba(255, 255, 255, 0.2);
		border-radius: 12px;
		max-width: 100%;
	}
	
     p {
      max-width: 100%;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }
	
	.gallery-wrapper {
      position: relative;
      overflow: hidden;
      width: 100%;
      cursor: grab;
    }

    .gallery-slide:active {
    	cursor: grabbing;
    }

    .gallery-container {
      display: flex;
      gap: 20px;
      transition: transform 0.5s ease;
	  justify-content: flex-start;
    }

    .gallery-slide {
      flex: 0 0 90%;
      box-sizing: border-box;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 12px;
      text-align: center;
      padding: 10px;
      transition: transform 0.3s ease;
    }

    .gallery-slide img {
      width: 100%;
      height: auto;
      border-radius: 8px;
    }

    .image-title {
      margin-top: 10px;
      font-weight: bold;
      color: white;
    }

    .gallery-nav {
      position: absolute;
      top: 45%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.5);
      border: none;
      color: white;
      font-size: 2rem;
      padding: 10px 15px;
      cursor: pointer;
      z-index: 10;
    }

    .gallery-nav.prev {
      left: 0;
    }

    .gallery-nav.next {
      right: 0;
    }

    .user-select-none {
      user-select: none;
      -webkit-user-select: none;
      -ms-user-select: none; 
    }
	
	.app-section-padding {
		padding-bottom : 100px;
	}
	.video-wrapper {
      max-width: 900px;
      width: 100%;
      margin: 40px auto;
      background: rgba(0, 0, 0, 0.3);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 12px;
      overflow: hidden;
    }

    .video-wrapper video {
      width: 100%;
      height: auto;
      display: block;
    }
	
	@media (max-width: 400px) {
		h1.logo-title {
			font-size: 1.5rem;
		}
		
		.app-title-div{
		  display:flex;
		  justify-content:center;
		  align-items:center;
		  gap:0px;
		  padding-bottom:60px;
		  flex-direction: column;
	    }
		
	}
	
	@media (max-width: 300px) {
		h1.logo-title {
			font-size: 1.2rem;
		}
		
		.app-title-div{
		  display:flex;
		  justify-content:center;
		  align-items:center;
		  gap:0px;
		  padding-bottom:60px;
		  flex-direction: column;
	    }
		
	}

    @media (max-width: 768px) {
      nav .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 10px;
        left: 40px;
        background-color: #1c1c1c;
        border-radius: 8px;
        padding: 10px 15px;
        z-index: 999;
		min-width: 150px;
		border: 1px solid rgba(255, 255, 255, 0.2);
      }
	  nav {
        position: relative;
      }


      .burger {
        display: block;
      }

      nav ul {
        flex-direction: column;
        gap: 10px;
        margin: 0;
        padding: 0;
      }

      nav ul li {
        margin: 0;
      }

      nav .menu.open {
        display: flex;
      }
	  
	  h1.logo-title {
        font-size: 2rem;
      }

      h2 {
        font-size: 1.5rem;
      }

      p {
        font-size: 1rem;
      }
	  
	  .smallProject-icon{
		display: block;	
	  }
	  
	  .project-icon{
		display: none;	
	  }
	  
	  .creation-content{
		  padding: 0px;
	  }
	  
	  .dropdown-content {
        background: rgba(50, 50, 50, 1);
      }
	  
	  .app-privacy-nav {
		  display: block;
	  }
	
	  .app-privacy-div{
    	  padding-bottom: 20px;
	  }
	  
	  .market-icon{
		  width: 200px;
	  }
	  
	  .storeBtnDiv{
		  flex-direction: column;
	  }
	  
	  .content-box {
        padding: 20px 15px;
        max-width: 100%;
      }

      .content-fadeclass {
        padding: 20px 10px;
      }
	  
	  p {
        word-break: break-word;
      }
	  
	  .app-title-div{
		display:flex;
		justify-content:center;
		align-items:center;
		gap:20px;
		padding-bottom:60px;
		flex-direction: column;
	  }
	  
	  .app-section-padding {
		  padding-bottom : 80px;
	  }
	  
    }
	
	@media (max-width: 1000px) {
		
	  .app-image-wrapper-pad {
        padding-bottom: 0px;
      }
	  
	  .app-image-wrapper {
        width: 100%;
		padding-bottom: 20px;
      }
	  
	  .app-palier-img {
		  width: 300px;
		  height: auto;
          display: block;
          border-radius: 8px;
		  padding: 0px;
	  }
	  
	  .gallery-slide {
        flex: 0 0 80%;
      }
	  
	}
	  
	
	.fade-in {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }
	
	.fade-in-no-transform {
      opacity: 0;
      transition: opacity 0.8s ease;
    }

    .fade-in-no-transform.visible {
      opacity: 1;
    }
	
	body.bfcache-hidden {
      visibility: hidden;
    }
	
	.bfcache-hidden *,
    .bfcache-hidden *::before,
    .bfcache-hidden *::after {
      transition: none !important;
      animation: none !important;
    }
	
	a.blueAnimLink {
      color: #7aa6d8;
      text-decoration: none;
      font-weight: bold;
	  position: relative;
      overflow: hidden;
      transition: color 0.3s ease;
    }
	
	a.blueAnimLink::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0%;
      height: 2px;
      background-color: #5c8cd8;
      transition: width 0.3s ease;
    }

    a.blueAnimLink:hover::after{
      width: 100%;
    }
	
	.project-card {
      display: flex;
      gap: 20px;
	  align-items: center;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 20px;
      margin-bottom: 30px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .project-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    }

	.project-icon-background img{
	  background: #222;
	}
	
	.smallProject-icon-background img{
	  background: #222;
	}

    .project-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .project-title {
      font-size: 1.2em;
      font-weight: bold;
      margin-bottom: 8px;
      color: white;
      text-decoration: none;
      position: relative;
    }

    .project-description {
      color: rgba(255, 255, 255, 0.8);
      font-size: 1em;
      line-height: 1.4em;
    }
	
	a.project-link {
      text-decoration: none;
      color: inherit;
      display: block;
    }

    a.project-link:hover {
      text-decoration: none;
    }
	
</style>