@import url('https://fonts.googleapis.com/css2?family=Chewy&family=Jua&family=Montserrat&family=Sour+Gummy:ital,wght@0,100..900;1,100..900&display=swap');
/* Change colors and fonts here */
:root {
    --burgericon:url(/assets/burger.svg); /* Path to burger vector */
    --closeicon:url(/assets/close.svg); /* Path to close vector */

    /* FONTS */
    --bodyfont: "Montserrat", sans-serif;
    --headerfont: "Sour Gummy", sans-serif;
    --titlefont: "Chewy", sans-serif;
    --titlefont2: "Jua", sans-serif;

    /* COLORS */

    --background:#dabfff; /*Main background color*/
    --color:#333; /*Body text color*/

    --header:; /*Header background color*/

    /* CONTENT COLORS */
    --mainbg: #f1e8ff; /*Content background color*/
    --linkcolor: #00a5e0; /*Body link color*/
    --linkhover: #7fdeff; /*Body link hover color*/

    --borders: #fff; /*Border for header 1*/

    --formbg:#f5f5f5; /*Background for text boxes/dropdown menus*/
    --formcolor:#907ad6; /*Color for text boxes/dropdown menus*/
    --buttonbg:#f5f5f5; /*Background for submit buttons*/
    --buttoncolor:#907ad6; /*Color for submit buttons*/

    /* MENU COLORS */
    --navcolor:#333; /*Menu text color*/
    --navbg:#f1e8ff; /*Menu background color*/

    --navtextlink:#ffe8a2; /*Sidebar text link color*/
    --navtexthover:#907ad6; /*Sidebar text link hover*/

    --navlink: #907ad6; /*Menu link color*/
    --navlinkbg: #dabfff; /*Menu link background*/
    --navhover: #907ad6; /*Menu link hover color*/
    --navhoverbg: #f5f5f5; /*Menu link hover background*/

    --burger:#333; /*Color for hamburger menu text/icons*/
    --overlay:rgb(0,0,0,0.3); /*Color for overlay when hamburger menu is open*/
    
    /* FOOTER COLORS */
    --footercolor:#333; /*Footer text color*/
    --footerbg:#f1e8ff; /*Footer background color*/

    --footerlink:#00a5e0; /*Footer link color*/
    --footerhover:#7fdeff; /*Footer background color*/
}

* { margin:0; padding:0; text-decoration:none;}
img {
    max-width:95%;
    margin:5px;
}


body {
    font:1.05rem var(--bodyfont);
    color:var(--color);
    background:var(--background);
    background-image: url(/img/Raikou-Sleep_Opaque-1-1.png), url(/img/MagoShinyBG-Pattern_Trans.png);
    background-position: bottom right, left top;
    background-repeat: no-repeat, repeat;
}

/* Header styling */

header {
    width:100%;
    height:150px; /* You can change the height */
    background-image: url(/img/Raikou_Smile-Anim-Flip.gif), url(/img/Raikou_Smile-Anim.gif); /*header image(s)*/
    background-position: left, right;
    background-repeat: no-repeat;
    background-size:contain;
    margin-bottom:10px;
    font:110px var(--titlefont);
    color: #ffdb49;
    display: flex;
    justify-content: center;
    align-items: center;

}

header img {
    width:100%;
    height:150px; /* You can change the height */
    background-image: url(/img/Raikou_Smile-Anim-Flip.gif), url(/img/Raikou_Smile-Anim.gif); /*header image(s)*/
    background-position: left, right;
    background-repeat: no-repeat;
    background-size:contain;
    margin-bottom:10px;
    display: flex;

}

.cloud-text {
	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent;	
	background-image: url(/img/clouds.gif);
	background-size: auto;
	background-attachment: inherit;
	background-position: 0%;
	width: 100%;
	margin: 10%;
	animation: clouds-moving infinite 220s;
	animation-fill-mode: forwards;
	animation-play-state: running;
	animation-timing-function: linear;
	    -webkit-text-stroke:5px #453e41;
    paint-order: stroke fill;
}
@keyframes clouds-moving {
	0% {
		background-position: 0%;	
	}
	50% {
		background-position: 100%;	
	}
	100% {
		background-position: 0%;
	}
}

/* BEGIN Magic Sparkly Text Code  */
/* SOURCE: https://freefrontend.com/code/sparkling-gradient-text-highlight-2026-02-14/ */

:root {    /* Gradient Colors */
  --purple: rgb(123, 31, 162);
  --blue: #7fdeff;
  --yellow: #ffe8a2;
  --gold: #f8d671;
}

@keyframes background-pan {
  from {
    background-position: 0% center;
  }
  
  to {
    background-position: -200% center;
  }
}

@keyframes scale {
  from, to {
    transform: scale(0);
  }
  
  50% {
    transform: scale(1);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  
  to {
    transform: rotate(180deg);
  }
}

sparkle > .magic {
  display: inline-block;
  position: relative;
}

sparkle > .magic > .magic-star {
  --size: clamp(20px, 1.5vw, 30px);
  
  animation: scale 2s ease-in-out infinite alternate forwards;
  display: block;
  height: var(--size);
  left: var(--star-left);
  position: absolute;
  top: var(--star-top);
  width: var(--size);
}

sparkle > .magic > .magic-star > svg {
  animation: scale 2s ease-in-out infinite alternate forwards;
  animation: rotate 2s ease-in-out infinite alternate forwards;
  display: block;
  opacity: 0.7;
}

sparkle > .magic > .magic-star > svg > path {
  fill: var(--gold);
}

sparkle > .magic > .magic-text {
  animation: background-pan 5s linear infinite; /* Gradient Speed */
  background: linear-gradient(
    to right,
    var(--purple),
    var(--blue),
    var(--yellow),
    var(--purple)
  );
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

sparkle > .magic > .magic-text-stroke { /*  For title/logo  */
  animation: background-pan 3s linear infinite; /* Gradient Speed */
  background: linear-gradient(
    to right,
    var(--purple),
    var(--blue),
    var(--yellow),
    var(--purple)
  );
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke:5px rgba(255, 255, 255, 0.9);
  paint-order: stroke fill;
  white-space: nowrap;
  text-shadow: rgba(97, 61, 147, 0.8) 15px 10px 15px;
}


sparkle > .magic > .magic-title {
  color: white;
  font-family: var(--titlefont);
  font-size: 110px;
  margin: 0px;
  padding: 0.1rem;
  text-align: center;
}

/* END Magic Sparkly Text Code  */

/* Container styling */

#container {
    width:95%;
    max-width:1200px;
    margin:auto;
    padding:10px;
}

/* Wrapper for columns */

#columns {
    display:flex;
    flex-wrap:nowrap;
    margin-bottom: 10px;
}

/* Content styling */

main {
    width:calc(60% - 30px);
    padding: 15px;
    background:var(--mainbg);
    margin:0px 10px 0px 10px;
    background-clip: padding-box;
    border: 15px solid;
    border-image: url(/img/Border-Image_BG.png) 50 round;
    word-wrap: break-word;
}

main h1 {
    font:1.8em var(--headerfont);
    border-bottom:4px dotted var(--borders);
    border-radius: 12px;
    text-indent:0.5rem;
    -webkit-text-stroke:5px #fff;
    paint-order: stroke fill;
    background-image: url('/img/LoveBall.png');
    background-image: url('/img/LoveBall.png'), linear-gradient(90deg,rgba(239, 156, 218, 1) 0%, rgba(254, 206, 241, 1) 10%, rgba(255, 255, 255, 0) 100%);
    background-position: top right;
    background-size:contain;
    background-repeat: no-repeat;
}

main h2 {
    font:1.6em var(--headerfont);
    border-bottom:3px dotted var(--borders);
    border-radius: 12px;
    text-indent:1rem;
    -webkit-text-stroke:5px #fff;
    paint-order: stroke fill;
    background-image: url('/img/DreamBall.png');
    background-image: url('/img/DreamBall.png'), linear-gradient(90deg,rgba(218, 191, 255, 1) 0%, rgba(218, 191, 255, 1) 10%, rgba(218, 191, 255, 0) 100%);
    background-position: top right;
    background-size:contain;
    background-repeat: no-repeat;
}

main h3 {
    font:1.4em var(--headerfont);
    border-bottom:2px dotted var(--borders);
    border-radius: 12px;
    text-indent:1.5rem;
    -webkit-text-stroke:5px #fff;
    paint-order: stroke fill;
    background-image: url('/img/QuickBall.png');
    background-image: url('/img/QuickBall.png'), linear-gradient(90deg,rgba(170, 234, 255, .5) 0%, rgba(255, 255, 255, 0) 100%);
    background-position: top right;
    background-size:contain;
    background-repeat: no-repeat;
}

main h4 { /*  Sparkle magic header  */
  color: violet;
  font-family: var(--titlefont);
  font-size: 1.5rem;
  margin: 0px;
  padding: 0.1rem;
  text-align: center;
}

main h5 { /*  Subheadings  */
  font:1.4em var(--headerfont);
  border-bottom:2px dotted var(--borders);
  border-radius: 12px;
  text-indent:2rem;
  -webkit-text-stroke:5px #fff;
  paint-order: stroke fill;
  background-image: url('/img/LuxuryBall.png');
  background-image: url('/img/LuxuryBall.png'), linear-gradient(90deg,rgba(255, 220, 122, 1) 0%, rgba(255, 255, 255, 0) 100%);
  background-position: top right;
  background-size:contain;
  background-repeat: no-repeat;
}

/* Dotted border */
.divider {
  border-top: 5px dotted #fff;
}

/* Scroll box */
.scrollbox {
background: #fff;
background-clip: padding-box;
border: 20px solid;
border-image: url(/img/Border-Image-2_BG.png) 15 round round;
width:70% center;
min-height:10px;
max-height:100px;
overflow-y:auto;
} 

/* Gradient stroke text */
.gradmask-yellow {
background: linear-gradient(#FFFFFF, #FFF95B, #ECAA0F);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-size: 1.5em;
font-weight:bold;
filter: drop-shadow(0px 1.5px #5C5C5C) drop-shadow(0 -1.5px #5C5C5C) drop-shadow(1.5px 0 #242424) drop-shadow(-1.5px 0 #242424);
}

.gradmask-blue {
background: linear-gradient(#FFFFFF, #aaeaff, #00a5e0);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-size: 1.5em;
font-weight:bold;
filter: drop-shadow(0px 1.5px #5C5C5C) drop-shadow(0 -1.5px #5C5C5C) drop-shadow(1.5px 0 #242424) drop-shadow(-1.5px 0 #242424);
}

.gradmask-pink {
background: linear-gradient(#FFFFFF, #fecef1, #ef9cda);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-size: 1.5em;
font-weight:bold;
filter: drop-shadow(0px 1.5px #5C5C5C) drop-shadow(0 -1.5px #5C5C5C) drop-shadow(1.5px 0 #242424) drop-shadow(-1.5px 0 #242424);
}

.gradmask-pinkwhite {
background: linear-gradient(#FFFFFF, #fecef1, #ef9cda);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-size: 1.5em;
font-weight:bold;
filter: drop-shadow(0px 1.5px #FFFFFF) drop-shadow(0 -1.5px #FFFFFF) drop-shadow(1.5px 0 #FFFFFF) drop-shadow(-1.5px 0 #FFFFFF);
}

/* Paragraphs and links */

p {
    margin:10px 0px 10px 0px;
    line-height:1.5;
}

main a {
    color:var(--linkcolor);
    text-decoration:underline;
}

main a:hover {
    color:var(--linkhover);
    text-decoration:none;
}

main details {
    padding:10px;
    background:var(--details);
    margin:5px;
}

/* Form elements */

main input, textarea, select {
    color:var(--formcolor);
    background:var(--formbg);
    font:1rem var(--bodyfont);
    border:1px solid;
    padding:5px;
}

main button {
    color:var(--buttoncolor);
    background:var(--buttonbg);
    font:1rem var(--bodyfont);
    border:1px solid;
    padding:5px;
}

/* Lists */

main ul, ol { 
    width: 90%;
    list-style-position:inside;
    margin:5px;
    background: rgba(255, 255, 255, 0.4);
    border: 3px dotted #fff;
    padding: 5px;
    border-radius:12px;
    text-indent:0.5rem;
    vertical-align: middle;
}


main li {
    margin:5px;
    line-height:1;
    background: rgba(218, 191, 255, 0.5);
    padding: 5px;
    border-bottom:3px dotted #fff;
    border-radius:12px;
    list-style-image: url(/img/Pachirisu.gif);
    background-size: 20px;
    list-style-type: circle;
	  background-position: left center middle;
	  text-indent:0.5rem;
	  vertical-align: middle;
}

/*  Expanding wide content box  */
.dotbox { 
    background: rgba(255, 255, 255, 0.4);
    border: 3px dotted #fff;
    min-height:10px;
    padding: 0.5rem;
    display: flex;
    border-radius: 12px;
}

.dotbox img { 
    float:left;
    border-radius: 25px;
}

/*  Tables  */
th {
  border-radius: 10px 10px 0px 0px;
  border-top: 2px dotted white;
  border-left: 2px dotted white;
  border-right: 2px dotted white;
  border-bottom: 2px dotted rgba(255, 255, 255, 0.4);
  border-collapse: collapse;
  border-spacing: 0px;
  padding: 0px;
}

td {
  border-left: 2px dotted white;
  border-right: 2px dotted white;
  border-bottom: 2px dotted rgba(255, 255, 255, 0.4);
  border-collapse: collapse;
  border-spacing: 0px;
  padding: 0px;
}

th, td {
  color: #3d3d3d;
  font-size: 1rem;
  background-color: #dabfff;
  vertical-align: middle;
  border-spacing:0;
  border-collapse: collapse;
  padding: 5px;
}

/*  Content section boxes  */
blurb {
     margin: 0 auto;
}

.left, .right {
    float: left;
    min-height: 50px;
}

.left {
  width: 50%;
}

.right {
  width: 50%;
  margin: auto;
}

.center {
  clear: both;
  margin: 5px;
}


/* Styling for the sidebars */

.menu {
    padding: 1rem;
    background:var(--navbg);
    background-clip: padding-box;
    width: 9.5rem;
    font:1rem var(--titlefont2);
    border: 15px solid transparent;
    border-image: url(/img/Border-Image_BG.png) 50 round;
}

.menu section {
    margin-bottom:5px;
}


.menu .text p {
    color:var(--navcolor);
    margin:5px 0px 5px 0px;
    line-height:1.4;
    font-size:0.8rem;

}

.menu .text a {
    color:var(--navtextlink);
    text-decoration:none;
}

.menu .text a:hover {
    cursor:pointer;
    position:relative;
    color:var(--navtexthover);
    text-decoration:underline;
}


.menu ul {
    list-style:none;
    margin:0;
}

.menu li a {
    display:block;
    position:relative;
    background: #DABFFF;
    background: linear-gradient(90deg,rgba(218, 191, 255, 1) 0%, rgba(218, 191, 255, 1) 10%, rgba(218, 191, 255, 0) 100%);
    border-bottom:2px dotted var(--borders);
    border-radius: 5px;
    margin:0px 0px 2px 0px;
    text-decoration:none;
    text-indent:0.25rem;
    padding:2px;
}

.menu li a:hover {
    transition:300ms, background-color 300ms;
    background:url(/img/Skitty-1.gif) no-repeat right;
    background-color: #beb0ee;
    border-radius: 5px;
    text-decoration:none;
    font-size:130%;
    text-indent:0.5rem;
    -webkit-text-stroke:5px white;
     paint-order: stroke fill;
}

.menu h2 {
    font:1.3em var(--headerfont);
    color:var(--navcolor)
  
}

/* Footer styling */

footer {
    max-width: calc(60% - 30px);
    margin: auto;
    padding:15px;
    text-align:center;
    background:var(--footerbg);
    color:var(--footercolor);
    font-size:0.9em;
    background-clip: padding-box;
    border: 15px solid;
    border-image: url(/img/Border-Image_BG.png) 50 round;
}

footer a {
    color:var(--footerlink);
    text-decoration:underline;
}

footer a:hover {
    color:var(--footerhover);
    text-decoration:none;
}

/*  Gallery */
#myImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#myImg:hover {
  opacity: 0.7;
  transform: scale(1.2);
}

.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  padding-top: 100px;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(85, 75, 105, 0.8);
  /* BG w/ opacity */
}

.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

.modal-content,
#caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {
    transform: scale(0)
  }
  to {
    transform: scale(1)
  }
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 120px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

@media only screen and (max-width: 700px) {
  .modal-content {
    width: 100%;
  }
}

/* Hamburger menu */

#burger {
    display:none;
    width:100%;
    position:fixed;
    top:0;
}

#burger summary {
    list-style-type: none;
    cursor: pointer;
    display:flex;
    align-items:center;
    color:var(--burger);
    padding:5px;
    background:var(--background);
}

#burger summary::before, #burger[open]>summary::before {
    height:40px;
    width:40px;
    background:var(--burger);
}

#burger summary::-webkit-details-marker {
    display: none;
}

#burger summary::before {
    content: '';
    mask-image:var(--burgericon);
    -webkit-mask-image:var(--burgericon);
    mask-size:40px;
    -webkit-mask-size:40px;
}

#burger[open]>summary::before {
    content: '';
    mask-image:var(--closeicon);
    -webkit-mask-image:var(--closeicon);
    mask-size:40px;
    -webkit-mask-size:40px;
}

#burger[open] {
    position:fixed;
    background:var(--overlay);
}

.skip a {
    position:absolute;
    left:-10000px;
    top:auto;
    width:1px;
    height:1px;
    overflow:hidden;
}
 
.skip a:focus {
    position:static;
    width:auto;
    height:auto;
}

#burger-menu {
    height:calc(100vh - 70px);
    overflow:auto;
    z-index:1000;
    background:var(--navbg);
    width:200px;
}

/* Accessibility stuff */

#skip a {
    position:absolute;
    display:inline-block;
    left:0px;
    top:-1000px;
    overflow:hidden;
    transition:top 0.5s ease;
    background:var(--mainbg);
    color:var(--link);
    z-index:1100;
    padding:5px;
}
 
#skip a:focus {
    top: 0;
    transition:top 0.5s ease;
}

.desktopmenulink { display:inline; }
.mobilemenulink { display:none; }

@media screen and (max-width: 799px) {
    #container {
        width:calc(100 - 20px);
        margin-top:50px;
    }
    
    #columns {
        display:block;
    }
    
    main {
        margin:auto;
        width:calc(100% - 30px);
    }
    
    #left {
        display:none;
    }
    
    #burger {
        display:block;
    }
    
    #right {
        display:grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        grid-gap:5px;
        width:calc(100% - 20px);
        margin-top:10px;
    }

    .desktopmenulink { display:none; }
    .mobilemenulink { display:inline; }
}