body {
  margin: 0;
  padding: 0;
  background: #001711;
   overflow-x: hidden; /* Hide horizontal scrollbar */
  line-height: 133%;
  font-size: 0.98em;
  font-family: "Open Sans", "Droid Sans", "Calibri", sans-serif;
  }
      
/*Contains the main content and sidebar.*/
.page-wrapper {
  padding: 0 100px;
  margin: 0 auto;
  background-color: #020202; 
  background-image: url(../images/graphy-dark.png);
  }      
  
/*Contains the main content and sidebar.*/
.page-wrapper-gaming-log {
  padding: 0 100px;
  margin: 0 auto;
  background-color: #7A7081; 
  background-image: url(../images/dark-exa.png);
  }

.parent {
display: grid;
grid-template-columns: repeat(4, 1fr);	
grid-template-rows: repeat(2, 1fr);
grid-column-gap: 5px;
grid-row-gap: 5px;
} 

.div1 { grid-area: 1 / 1 / 2 / 2; }
.div2 { grid-area: 1 / 2 / 2 / 3; }
.div3 { grid-area: 1 / 3 / 2 / 4; }
.div4 { grid-area: 1 / 4 / 2 / 5; }
.div5 { grid-area: 1 / 5 / 2 / 6; }

.gaming-log-grid-img{
	width:200px;
	float:left;
}

.musique-grid{
	width:150px;
  border-radius:15px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
}

.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.95);
  color: #ffffff;
  padding: 15px;
  border-radius: 4px;
  box-shadow: 0px 0px 15px rgba(0, 255, 0, 0.6);
  
  max-width: 600px;
  text-align: left;
  border: 3px solid #00ff7f;
  overflow: hidden;
}


/* Effet de texte qui clignote façon terminal */
.popup::after {
  content: "_";
  display: inline-block;
  animation: blink 1s infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* Ajout d'un effet de scan */
.popup::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 255, 0, 0.1) 0%,
    rgba(0, 255, 0, 0) 50%,
    rgba(0, 255, 0, 0.1) 100%
  );
  opacity: 0.2;
  animation: scan 4s linear infinite;
}

@keyframes scan {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 32px;
  font-weight:900;
  cursor: pointer;
  color: #de12ad;
}

.popup p {
  font-size: 18px;
  line-height: 1.6;
  font-family: 'Glancyr';
}

.popup h3 {
  font-size: 20px;
  text-align:center;
  color:white;
  font-family: 'Text';
  font-family: 'Glancyr';
}

/* Animation glitch plus intense */
@keyframes glitch {
  0% { transform: translate(-50%, -50%) scale(0.95); opacity: 0.8; filter: hue-rotate(0deg); }
  10% { transform: translate(-50%, -50%) skewX(5deg); filter: hue-rotate(20deg); box-shadow: -5px 0px 5px rgba(255,0,0,0.5), 5px 0px 5px rgba(0,255,255,0.5); }
  20% { transform: translate(-50%, -50%) skewX(-5deg); filter: hue-rotate(-20deg); box-shadow: 5px 0px 5px rgba(255,0,0,0.5), -5px 0px 5px rgba(0,255,255,0.5); }
  30% { transform: translate(-50%, -50%) skewX(10deg); filter: hue-rotate(30deg); }
  40% { transform: translate(-50%, -50%) skewX(-10deg); filter: hue-rotate(-30deg); }
  50% { transform: translate(-50%, -50%) scale(1.05); filter: hue-rotate(40deg); box-shadow: -10px 0px 10px rgba(255,0,0,0.7), 10px 0px 10px rgba(0,255,255,0.7); }
  60% { transform: translate(-50%, -50%) scale(1); filter: hue-rotate(-40deg); }
  70% { transform: translate(-50%, -50%) skewX(5deg); filter: hue-rotate(20deg); }
  80% { transform: translate(-50%, -50%) skewX(-5deg); filter: hue-rotate(-20deg); }
  90% { transform: translate(-50%, -50%) scale(0.98); filter: hue-rotate(10deg); opacity: 0.9; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 1; filter: hue-rotate(0deg); }
}

.album-gallery{
  
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-direction: row-reverse;

}

.popup.show {
  display: block;
  animation: glitch 0.2s linear;
}



.widget {
  width: 250px;
  padding: 15px;
  background: #222;
  color: white;
  border-radius: 8px;
  text-align: center;
}
.album-art {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  margin-bottom: 10px;
}



.parentgallery {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(2, 1fr);
grid-column-gap: 5px;
grid-row-gap: 5px;
}

 /* Style the buttons that are used to open and close the accordion panel */
.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
  background-color: #ccc;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  background-color: white;
  display: none;
  overflow: hidden;
} 

.accordion:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #777;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}

.div1gallery { grid-area: 1 / 1 / 2 / 2; }
.div2gallery { grid-area: 1 / 2 / 2 / 3; }
.div3gallery { grid-area: 1 / 3 / 2 / 4; }


  
  @font-face {
    font-family: 'Custom-1'; /*a name to be used later*/
    src: url('../fonts/unitype-current.ttf'); /*URL to font*/
}

  
  @font-face {
    font-family: 'Text'; /*a name to be used later*/
    src: url('../fonts/binchotan.ttf'); /*URL to font*/
}

  @font-face {
    font-family: 'Glancyr'; /*a name to be used later*/
    src: url('../fonts/GlancyrVariable-VF.ttf'); /*URL to font*/
}

p, ul, li, tr, th{
	font-family: 'Text'; 
}

a{
	font-family: 'Text'; 
}


h1{
	font-family: 'Text'; 
}

ul {
  list-style: none;
  margin-top:0.2em;
  margin-left: 0;
  padding-left: 0;
}

li {
  padding-left: 1em;
  text-indent: -1em;
}

li:before {
  content: "•";
  padding-right: 5px;
}

.img-with-text {
    text-align: justify;
    width: [width of img];
	float:left;
	padding: 1em 1em 1em 1em;
}

.img-with-text img {
    display: block;
    margin: 0 auto;
}

.img-with-text p {
	text-align:center;
}

hr.solid {
  border-top: 3px solid #bbb;
}
  
/*Miscellanous custom styling for various elements.*/
h1, h2, h3 {
  font-family: "Calibri";
  }
  
a {
  color: #4d4385;
  }

a:hover, a:focus {
  color: #2a2543;
  transition: ease-in 0.1s, ease-out 0.1s;
  }
  
blockquote {
  border-left: #4d4385 3px solid;
  background: #d8d4ec;
  padding: 0.1px 0.75rem;
  margin: 0 1.5rem;
  }

hr {
  width: 75%;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  }
  
/*Sticky navigation links at the top of the page.*/
.quick-nav {
  position:fixed;
  z-index: 999;
  width: 100%;
  background: #0a000a;
  background: rgba(10,0,10,1);
  text-align: right;
  color: #fff;  
  font-size: 0.875em;
  }
  
.navbar {
  padding: 1px 25px;
  }
  
.navbar a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  padding: 5px 4px;
  margin: 0 2px;
  }
  
.navbar a:hover, .footer a:hover, .navbar a:focus, .footer a:focus {
  color: #edeef3;
  transition: ease-in 0.1s, ease-out 0.1s;
  }
  
  
/*Header image.*/
.header {
  height: 50px;
  background-color: #110000;
  background: repeat url("../images/dark-exa.png");
 }
 
@media (max-width: 480px) {

}



/*Header image.*/
.header-shrine {
  height: 250px;
  background: no-repeat url("../images/header-shrine-hdk.jpg");
  background-size: cover;
 }
 
 .headermusique {
  height: 150px;
  background: no-repeat url("https://www.shutterstock.com/image-vector/abstract-geometric-background-squares-green-600nw-2334475409.jpg");
  background-size: cover;
 }


/*Title bar with icon and title/tagline.*/
.title {
  background: #010101;
  min-height: 60px;
  margin-bottom: -25px;
  text-align: right;
  }
  
.title-text, .title-pic {
	
  padding:0;
  margin: 0;
  display: inline-block;
  vertical-align: top;
  }
  
/*Contains the text tagline.*/
.title-text {
	
  padding-right: 1em;
  color:white;
  width: calc(85vw - 110px);
  line-height: 167%;
  margin-top: -3px;
  padding-bottom: 15px;
  }
  
.title-text h1 {
  padding:0;
  font-size: 32px;
  }
  
/*Contains the profile pic. This can be left out and should still look okay.*/
.title-pic {
  height: 100px;
  margin-right: 100px;
  margin-top: -25px;
  border: 5px solid #00FFCC;
  border-radius: 10px;
  }
  
.title-pic img {
  height: 100%;
  overflow: hidden;
  }
 
  .largetitle {
    font-size: 1.2rem;
    background: #128E67;
    color: #fff;
    padding: 12px 10px 10px 10px;
    margin: auto;
    }
/*Contains the sidebar boxes.*/
.sidebar {
  width: 320px;
  margin: 15px 0;
  position: absolute;
  
  }
  
.nav-titles {
  font-size: 1.2rem;
  background: #00110c;
  color: #fff;
  padding: 12px 10px 10px 35px;
  margin: auto;
  text-align:left;
  font-family: 'Glancyr'; 
	font-size:1.5em; 
	margin-top:0.5em; 
	margin-bottom:-0.1em;
  color: #00ffcc; /* Vert néon */
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  transition: text-shadow 0.3s ease-in-out, color 0.3s ease-in-out;
  overflow: hidden;
  text-shadow: rgba(0,255,38,0.9) 0px 0px 9px;
} 
 
  
.nav-titles-sidebar {
  font-size: 1.2rem;
  background: #00110c;
  color: #fff;
  padding: 12px 10px 10px 10px;
  margin: auto;
  text-align:center;
  font-family: 'Glancyr'; 
	font-size:1.5em; 
	margin-top:0.5em; 
	margin-bottom:-0.1em;
  color: #00ffcc; /* Vert néon */
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  transition: text-shadow 0.3s ease-in-out, color 0.3s ease-in-out;
  overflow: hidden;
  text-shadow: rgba(0,255,38,0.9) 0px 0px 9px;
} 



@keyframes scanline {
  0% { opacity: 0.8; transform: translateY(-100%); }
  50% { opacity: 0.3; transform: translateY(100%); }
  100% { opacity: 0.8; transform: translateY(-100%); }
}


.nav-titles-sidebar::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
      to bottom,
      rgba(0, 255, 204, 0.1) 0%,
      rgba(0, 255, 204, 0) 5%,
      rgba(0, 255, 204, 0.1) 10%
  );
  opacity: 0.4;
  animation: scanline 1.5s linear infinite;
  pointer-events: none;
}


.nav-titles::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
      to bottom,
      rgba(0, 255, 204, 0.1) 0%,
      rgba(0, 255, 204, 0) 5%,
      rgba(0, 255, 204, 0.1) 10%
  );
  opacity: 0.4;
  animation: scanline 1.5s linear infinite;
  pointer-events: none;
}


  
.sidebar a {
  display: block;
  padding: 5px;
  color: #fafafa;
  text-decoration: none;
  }
  
.sidebar a:hover, .sidebar a:focus {
  background: #fafafa;
  color:#010101;
  transition: ease-in 0.5s, ease-out 0.5s;
  font-size:19px;
  font-weight: bolder;
  border-radius: 0.2em;
  }


  
.sidebar, .main {
  display: inline-block;
  }

/*Contains main content boxes.*/
.main {
  margin: 15px 100px 50px 350px;
  width: auto;
  width: calc(100vw - 550px);
}

.albumname{
	font-family: 'Glancyr';
	font-weight:900;
	font-size:1.5em;
	margin-top:1vh;
	margin-bottom:0.2vh;
}
.genrename{
	font-family: 'Glancyr';
	font-weight:200;
	line-height:0.5em;
	font-size:1.2em;
}

  
  .column1 {
  float: left;
  width: 25%;
}
  .column2 {
  float: left;
  width: 75%;
}

  .columnsmol {
  float: left;
  width: 10%;
}
  .columnbig {
  float: left;
  width: 90%;
}
  .columnalbum {
  float: left;
  width: 15vw;
}
  .columntext {
  float: left;
  width: 75%;
  padding-left:1em;
}
  .columnhalf {
  float: left;
  width: 50%;
}
  .columnhalfstamp {
  float: left;
  width: 100%;
}
  .columnhalftodo {
  float: left;
  width: 40%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}
  
  
/*Basic container type for subsections of main and sidebar divs*/
.box {
  margin-bottom: 15px;
  clip-path: polygon(0 0, 100% 0px, 100% calc( 100% - 30px ), calc( 100% - 30px ) 100%, 0 100%, 0 50%, 10px calc( 50% - 10px ), 10px calc( 25% + 10px ), 0 25% );
  
  }  
/*Basic container type for subsections of main and sidebar divs*/
.box-sidebar {
  margin-bottom: 15px;

  clip-path: polygon(0 0, 100% 0px, 100% calc( 100% - 30px ), calc( 100% - 30px ) 100%, 0 100%, 0 50%, 10px calc( 50% - 10px ), 10px calc( 25% + 10px ), 0 25% );
  
  }  
  
/*Basic container type for subsections of main and sidebar divs*/
.boxhalfl {
  margin-bottom: 15px;
  margin-right:5px;
  border-radius: 5px;
  clip-path: polygon(0 0, 100% 0px, 100% calc( 100% - 30px ), calc( 100% - 30px ) 100%, 0 100%, 0 50%, 10px calc( 50% - 10px ), 10px calc( 25% + 10px ), 0 25% );
  
  }
 .boxhalfr {
  margin-bottom: 15px;
  margin-left:5px;
  border-radius: 5px;
  clip-path: polygon(0 0, 100% 0px, 100% calc( 100% - 30px ), calc( 100% - 30px ) 100%, 0 100%, 0 50%, 10px calc( 50% - 10px ), 10px calc( 25% + 10px ), 0 25% );

  }
  
/*Inner content div for boxes. Padding goes here so sidebar headers etc can keep their no-margin look.*/
.inner {
  background:  #212121;
  padding: 10px 20px;
  color:#fafafa;
  
  border-top: thick double #00FFCC;
  }
.inner-sidebar {
  background:  #212121;
  padding: 10px 20px;
  border-top: thick double #00FFCC;
  }
.innerstamp {
  background:  #212121;
  padding: 20px 20px;
  margin-left:auto;
  margin-right:auto;
  color:white;
}

.inner a {
  color:#7ae0ff;
  
text-shadow: rgba(87,255,93,1) 0px 0px 5px;
font-weight: bold;

  }

.inner img {
  max-width: 100%; /*Prevent image overflow.*/
  height: auto;
  border-radius: 5px; /*Give images in content rounded corners.*/
  }
  
.box, .title-pic img {
  border-radius: 5px;
  overflow: hidden; /*Force inner divs to conform to rounded corners.*/
  }
  
  
/*Footer section.*/
.footer {
  background: #050005;
  color: #fff;
  padding: 5px 20px;
  font-size: 0.75em;
  padding-bottom: 10px;
  }
  
.footer a {
  color: #fff;
  }

/*Individual column of the footer. You can have 3 of these at the current given width.*/
.footer-column {
  width: 25%;
  margin: 5px 10px;
  display: inline-block;
  vertical-align: top;
  }


/*Adapt to narrower screens.*/
@media(max-width: 900px) {
  .page-wrapper {
    padding: 0 50px;
    }
  
  .sidebar {
    width: 25vw;
    }
    
  .main {
    margin: 50px 0 50px calc(25vw + 30px);
    width: calc(75vw - 150px);
    }
    
  .title-pic {
    margin-right: 7vw;
    }
    
  .title-text {
    padding-left: 1vw;
    padding-right: 2vw;
    }
	
	.parent {
		display: grid;
		grid-template-columns: repeat(1, 1fr);	
		grid-template-rows: repeat(1, 1fr);
		grid-column-gap: 5px;
		grid-row-gap: 10px;
	} 

.div1 { grid-area: 1 / 1 / 2 / 2; }
.div2 { grid-area: 1 / 2 / 2 / 3; }
.div3 { grid-area: 2 / 1 / 3 / 2; }
.div4 { grid-area: 2 / 2 / 3 / 3; }
.div5 { grid-area: 3 / 1 / 4 / 2; }
.div6 { grid-area: 3 / 2 / 4 / 3; } 

	.gaming-log-grid-img{
		width:150px;
		float:left;
	}

  }
  
/*Mobile layout.*/
@media(orientation: portrait) {  
  .page-wrapper {
    padding-top: 0.1px;
    padding-bottom: 0.1px;
    }
  
  .sidebar, .main {
    display: block;
    margin: 0 auto;
    position: static;
    width: 100%;    
    }
    
  .sidebar {
    margin-top: 50px;
    }
    
  .main {
    margin-top: 30px;
    margin-bottom: 30px;
    }
    
    
  }
  
/***
For really narrow screens which cause the title text to wrap. 
You may need to adjust the width at which this kicks in to fit 
your own title.
***/
@media(max-width: 500px) {
	
	.header {
		height: 20vw;
		background-position: top center;
	}
	.column1 img{
		width:800px; 
	}
	.columnalbum{
		flex: 1;
		min-width: 200px;
		display: block; 
		margin-left:auto;
		margin-right:auto;
	}
	.columntext{
		width:80%;
	}
  
  .title {
    padding-right: 0
    }
  
  .title-text {
    margin-top: -5px;
    }
    
  .title-text h1 {
    font-size: 6vw;
    line-height: 75%;
    }
    
  .title {
    height: calc(auto - 25px);
	
    }
    
  .page-wrapper {
    padding: 0.1px 7vw;
    }
    
  /*For extra narrow screens where the columns would get too skinny.*/
  .footer-column {
    display: block;
    width: 100%;
    margin: 0 auto;
  }
}