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

body {
    text-align: left;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    max-width: 100%;
    background:
        radial-gradient(circle at top, rgba(0,175,240,0.10), transparent 35%),
        linear-gradient(to bottom, #2F074E, #260B39);
}

img {
    max-width: 100%;
}

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

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

h1 {
    font-size: 21px;
}

.price {
    font-size: 38px;
}

h2 {
    font-size: 19px;
}

p {
    font-size: 18px;
}

small {
    font-size: 13px;
}

.button-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.button-gallery .full-width {
    grid-column: 1 / -1;
}

.button-gallery a {
    display: block;
}

.button-gallery .button {
    margin: 0;
}

.info-button {
    background: transparent;
    border: 2px solid #E0006C;
    color: #FFFFFF;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    box-sizing: border-box;
}

.info-button:hover {
    color: #E0006C;
}

.button {
    background: #E0006C;
    color: #FFFFFF;
    padding: 20px;
    border-radius: 5px;
    margin: 10px auto;
    transition: background 0.3s, color 0.3s;
	text-align: center;
    font-size: 18px;
}

.button small {
    color: #FFFFFF;
}

.button:hover {
    opacity: 0.5;
}

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

a:hover {
    color: #FE5ACB;
}

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;
}

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

.white {
    color: #FFFFFF;
}

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

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

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

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

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

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

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

#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: #FFFFFF;
    cursor: pointer;
}

#lightbox {
    display: none;
}

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

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

.pricing-row {
    display: contents;
}

.pricing-cell {
    padding: 10px;
    background-color: #3A174F;
    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: #3A174F;
    padding: 50px;
    border-radius: 10px;
    text-align: center;
}

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

.warning-box button:hover {
    opacity: 0.5;
}

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

.review {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    padding: 20px;
    border-left: 5px solid #E0006C;
    background: #3A174F;
    border-radius: 10px;
}

.review:hover {
   border-left: 5px solid #FE5ACB;
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.review-author {
    display: flex;
    align-items: center;
}

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

.review .author {
    font-family: 'League Spartan', sans-serif;
    margin: 0;
    font-weight: bold;
    text-align: left;
    color: #FFFFFF;
}

.review-rating {
    font-size: 18px;
    letter-spacing: 2px;
    color: #FE5ACB;
    white-space: nowrap;
}

.review-content {
    width: 100%;
    text-align: left;
}

.review-content p {
    margin: 0 0 15px 0;
}

.review-content p:last-child {
    margin-bottom: 0;
}

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

.comparison-rating {
    font-size: 18px;
    letter-spacing: 2px;
    color: #FE5ACB;
    white-space: nowrap;
}

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

.card-item.full-width {
    grid-column: 1 / -1;
}

.card-item.full-width img {
    width: 100%;
}

.card-item {
	position: relative;
    background: #3A174F;
    padding: 5px;
    border-radius: 10px;
    text-align: center;
}

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

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

.card-item small {
    position: absolute;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: rgba(43, 46, 51, 0.5);
    color: #FFFFFF;

    padding: 10px;

    font-weight: bold;
    text-align: center;
    box-sizing: border-box;
}

.card-item:hover small {
    color: #FE5ACB;
}

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

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

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

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

.comparison-item {
    padding: 5px;
    text-align: left;
    background-color: #260B39;
    border-radius: 5px;
}

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

.best-deal,
.comparison-grid > div:nth-child(4n) {
  border-left: 2px solid #E0006C;
  border-right: 2px solid #E0006C;
}

.availability-dot {
    position: relative;
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #30CE73;
    border-radius: 50%;
    margin-right: 7px;
    box-shadow: 0 0 8px #30CE73;
}

.availability-dot::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #30CE73;
    animation: availability-pulse 1.5s ease-out infinite;
}

@keyframes availability-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.8);
        opacity: 0;
    }
}