html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    text-align: left;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    max-width: 100%;
}

img {
    max-width: 100%;
}

h1, h2 {
    font-family: 'League Spartan', sans-serif;
    line-height: 1.4;
    margin: 0;
    padding: 0;
    color: #121212;
}

p, small {
    font-family: 'Roboto', sans-serif;
    line-height: 1.4;
    margin: 0;
    padding: 0;
    color: #121212;
}

h1 {
    font-size: 21px;
}

h2 {
    font-size: 19px;
}

p {
    font-size: 17px;
}

.eyes {
    font-size: 30px;
}

small {
    font-size: 13px;
}

.button {
    background: #00aff0;
    color: #fff;
    padding: 20px;
    border-radius: 5px;
    margin: 10px auto;
    transition: background 0.3s, color 0.3s;
}

.button small {
    color: #fff;
}

.button:hover {
    background: rgba(0, 175, 240, 0.7);
}

a {
    font-family: 'Roboto', sans-serif;
	font-weight: bold;
    color: #00aff0;
    text-decoration: none;
}

a:hover {
    color: #008ccf;
}

h1 a {
    font-family: 'League Spartan', sans-serif;
}

.section {
    width: 90%;
    max-width: 600px;
    position: relative;
    margin: 0 auto;
    background: none;
}

.social-spacing {
    margin: 0 2px;
    white-space: nowrap;
    line-height: 1.5;
}

.social-spacing:hover {
    opacity: 0.5;
}

.social-spacing img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.clear {
    clear: both;
}

.avy {
    width: 100px;
    height: 100px;
}

.avy:hover {
    opacity: 0.5;
}

.round {
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -webkit-appearance: none;
}

.underline:hover {
    border-bottom: 1px solid #121212;
}

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

.white {
    color: #fff;
}

.divider {
    border-bottom: 1px solid #eee;
}

.padding-top-50 {
    padding-top: 50px;
}

.padding-bottom-50 {
    padding-bottom: 50px;
}

.padding-bottom-100 {
    padding-bottom: 100px;
}

.padding-top-25 {
    padding-top: 25px;
}

.padding-top-15 {
    padding-top: 15px;
}

.sale-button {
    position: relative;
    display: block;
}

.sale-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 50px;
    height: auto;
}

#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
	z-index: 9999;
}

.lightbox-content {
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
}

.lightbox-image {
    width: 100%;
    height: auto;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

#lightbox {
    display: none;
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    width: 100%;
    margin: 0 auto;
    overflow-x: auto;
}

.pricing-table::-webkit-scrollbar {
    display: none;
}

.pricing-row {
    display: contents;
}

.pricing-cell {
    padding: 10px;
    background-color: #f2f2f2;
    text-align: left;
	display: block;
    border-radius: 10px;
    box-sizing: border-box;
}

.pricing-cell.plan .button {
	font-size: 18px;
    line-height: 1.2;
}

/*

@media (max-width: 768px) {
    .pricing-table {
        grid-template-columns: 2fr;
    }
}

*/

.warning-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.warning-box {
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    text-align: center;
}

.warning-box button {
    background: #00aff0;
    color: #fff;
	font-weight: bold;
    border: none;
    padding: 10px 15px;
    margin: 5px;
    cursor: pointer;
    border-radius: 5px;
}

.warning-box button:hover {
    background: rgba(0, 175, 240, 0.7);
}

.testimonials {
    width: 100%;
    max-width: 600px;
}

.testimonial {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px;
    border-left: 5px solid #00aff0;
    background: #f2f2f2;
    border-radius: 10px;
}

.testimonial:hover {
   border-left: 5px solid #008ccf;
}

.testimonial img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.testimonial .author {
    font-family: 'League Spartan', sans-serif;
    margin-top: 10px;
    font-weight: bold;
    text-align: right;
}

.testimonial:last-child {
    margin-bottom: 0;
}

.collab-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 600px;
    margin: auto;
}

.collab-item {
	position: relative;
    background: #f2f2f2;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
}

.collab-item:hover {
    transform: scale(1.05);
    transition: 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.collab-item img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.aff-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 600px;
    margin: auto;
}

.aff-item {
	position: relative;
    background: #f2f2f2;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
}

.aff-item:hover {
    transform: scale(1.05);
    transition: 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.aff-item img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
    margin: 0 auto;
    overflow-x: auto;
    white-space: nowrap;
    background-color: #f2f2f2;
    padding: 10px;
    border-radius: 10px;
	box-sizing: border-box;
}

.comparison-grid::-webkit-scrollbar {
    display: none;
}

.comparison-header {
    font-weight: bold;
    background: #00aff0;
    padding: 5px;
    text-align: left;
    border-radius: 5px;
    white-space: nowrap;
}

.comparison-header small {
    color: #fff;
}

.comparison-item {
    padding: 5px;
    text-align: left;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.comparison-grid small {
    font-size: 11px;
}

.pricing-cell.disabled {
    opacity: 0.5;
    pointer-events: none;
    position: relative;
}

.pricing-cell.disabled .button {
    background: #ccc;
    cursor: not-allowed;
}

.pricing-cell.disabled .unavailable-note {
    font-family: 'League Spartan', sans-serif;
    display: block;
    color: red;
    font-size: 0.85rem;
    font-weight: bold;
    margin-top: 8px;
}

img.bf {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}