@charset "UTF-8";

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
 
body {
    color: #e0f7ff;
    font-family: 'Quicksand', sans-serif;
    font-size: 17px;
    line-height: 1.7;
}
 
/* GIF BACKGROUND */
.gif-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
	filter: contrast(120%);
}
 
.gif-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

 
.page-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
 
/* DECORATIVE TEXT */
.deco {
    color: #9ae6ff;
    font-size: 3rem;
    text-align: center;
    letter-spacing: 3px;
    margin: 0.5rem 0;
}
 
.deco.small { font-size: 0.85rem; }
 
/* HEADER */
header {
    text-align: center;
    padding: 5rem 1rem 3rem;
}
 
header h1 {
    font-family: 'Fredoka One', cursive;
    font-size: clamp(3.5rem, 10vw, 6.5rem);
    color: #00eeff;
    text-shadow: 3px 3px 0 #ff00f2;
    line-height: 1.05;
    margin: 0.5rem 0;
}
 
.byline {
    color: #a2e8ff;
    font-size: 1rem;
    letter-spacing: 0.1em;
    margin: 0.6rem 0;
}
 
.header-badge {
    display: inline-block;
    background:rgba(25, 0, 255, 0.377);
    border: 2px solid #00e5ff;
    color: #00e5ff;
    font-family: 'Fredoka One', cursive;
    font-size: 1rem;
    padding: 0.3rem 1.2rem;
    border-radius: 100px;
    margin: 0.6rem 0;
}
 
/* NAV */
nav {
    position: sticky;
    top: 0;
    background: rgba(25, 0, 255, 0.699);
    backdrop-filter: blur(10px);
    border: 3px solid #ff00f2;
	opacity: 0.8;
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    padding: 0.9rem 0;
    z-index: 100;
}
 
nav a {
    font-family: 'Fredoka One', cursive;
    font-size: 20px;
    color: #62efff;
    text-decoration: none;
    transition: color 0.2s;
}
 
nav a:hover { color: #ffffff;
	filter:
	drop-shadow(0 0 10px #ff00f2)
	drop-shadow(0 0 2.5px #ff00f2) 
    drop-shadow(0 0 10px #ff00f2);
 }
 
/* DOWNLOAD */
.extension-download {
    text-align: center;
    padding: 3rem 0;
}
 
.extension-download a {
    font-family: 'Fredoka One', cursive;
    font-size: 1.4rem;
    background: #00e5ff;
    color: #001a2e;
    padding: 0.9rem 2.8rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 4px 4px 0 #005f80;
    display: inline-block;
    transition: transform 0.15s;
    margin: 0.8rem 0;
}
 
.extension-download a:hover { transform: translateY(-3px); }
 
/* HEADINGS */
h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 2rem;
    color: #00e5ff;
    margin-bottom: 1rem;
    text-align: center;
}
 
/* SECTIONS */
section {
    padding: 3.5rem 0;
    border-top: 3px solid rgba(65, 231, 250, 0.568);
}
 
/* PRESENTATION */
.extension-presentation > p {
    color: #b0e8f8;
    max-width: 650px;
    margin: 0 auto 2rem;
    text-align: center;
}
 
.extension-documentation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    width: 100%;
}

.extension-documentation-images video {
    width: 100%;
    border-radius: 8px;
    border: 2px solid rgba(0, 229, 255, 0.4);
    object-fit: cover;
    aspect-ratio: 16/10;
    display: block;
}

/* mute button on videos */
.video-wrapper {
    position: relative;
}

.video-wrapper .mute-toggle {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 20, 40, 0.75);
    border: 1px solid #00e5ff;
    color: #00e5ff;
    font-size: 0.8rem;
    padding: 3px 8px;
    border-radius: 20px;
    cursor: pointer;
    z-index: 10;
    font-family: 'Fredoka One', cursive;
}

.video-wrapper .mute-toggle:hover {
    background: #00e5ff;
    color: #001a2e;
}

.extension-documentation-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    width: 100%;          
    max-width: 800px;     
    margin: 0 auto;       
}

 
.extension-documentation-images img {
    width: 100%;
    border-radius: 8px;
    border: 2px solid rgba(0, 229, 255, 0.4);
    object-fit: cover;
    aspect-ratio: 16/10;
    transition: transform 0.2s;
    display: block;
}
 
.extension-documentation-images img:first-child {
    grid-column: 1 / -1;
}
 
/* REVIEWS */
.extension-reviews-block { text-align: center; }
 
.section-deco {
    font-family: 'Fredoka One', cursive;
    font-size: 1.3rem;
    color: #00e5ff;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}
 
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: left;
}
 
.extension-review {
    border: 2px solid rgba(0, 229, 255, 0.705);
    border-radius: 14px;
    padding: 1.2rem;
    background: rgba(0, 229, 255, 0.411);
}
 
.extension-review p:first-child {
    font-style: italic;
    color: #b0e8f8;
    margin-bottom: 0.5rem;
}
 
.extension-review p:last-child {
    font-family: 'Fredoka One', cursive;
    font-size: 0.85rem;
    color: #00e5ff;
}
 
/* INSTALLATION */
.extension-installation ol {
    list-style: none;
    counter-reset: steps;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
 
.extension-installation li {
    counter-increment: steps;
    display: flex;
    gap: 1rem;
    padding: 0.9rem 1.2rem;
    border: 2px solid rgba(0, 229, 255, 0.774);
    border-radius: 10px;
    background: rgba(0, 229, 255, 0.63);
    color: #dbf7ff;
    transition: border-color 0.2s;
}
 
.extension-installation li:hover {
    border-color: #00e1ff;
	filter:
	drop-shadow(0 0 10px #ff00f2)
	drop-shadow(0 0 2.5px #ff00f2) 
    drop-shadow(0 0 10px #ff00f2);
}
 
.extension-installation li::before {
    content: counter(steps, decimal-leading-zero);
    font-family: 'Fredoka One', cursive;
    color: #b8f0ff;
    font-size: 1.2rem;
    flex-shrink: 0;
}
 
.extension-installation li code {
    background: rgba(35, 233, 255, 0.432);
    border-radius: 4px;
    padding: 0.1em 0.4em;
    color: #ff32f5;
    font-size: 0.9em;
}
 
.extension-installation li strong { 
	color: #e0f7ff;
 }
 
/* FOOTER */
footer {
    border-top: 3px solid rgba(65, 231, 250, 0.568);
    padding: 2.5rem 0;
    display: flex;
    justify-content: space-between;
    font-family: 'Fredoka One', cursive;
    font-size: 0.9rem;
    color: rgb(255, 255, 255);
}
 
