

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
}




.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-speed);
    font-size: 1rem;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-speed);
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--primary);
}

.btn-outline:hover {
    background-color: rgba(138, 43, 226, 0.1);
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.4);
}


.payment-option label {
    min-height: 100px !important;
    padding: 10px !important;
}

.payment-type label {
    min-height: 70px !important;
    padding: 10px !important;
}


#apply-coupon {
    transition: background-color 0.3s, transform 0.2s;
}

#apply-coupon:hover {
    transform: translateY(-2px);
}

#apply-coupon.remove-coupon:hover {
    background-color: #d32f2f !important;
}

.card-icons i,
.crypto-icons i {
    font-size: 1.2rem !important;
    margin: 2px !important;
}

.payment-option i,
.payment-type i {
    font-size: 1.2rem !important;
}


.auth-buttons {
    display: flex;
    gap: 15px;
}

.login-btn {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--primary);
}

.login-btn:hover {
    background-color: rgba(138, 43, 226, 0.1);
}

.purchase-btn {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
    cursor: pointer;
}

.purchase-btn:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.4);
}


main {
    padding-top: 80px;
    padding-bottom: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}


.product-hero {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px 0;
    margin-bottom: 60px;
}

.product-video {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.product-video iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
}

.product-intro {
    flex: 1;
}

.product-intro h1 {
    margin-top: 0;
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.product-intro p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.feature-section {
    padding: 60px 0;
    margin-bottom: 40px;
}

.feature-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.feature {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
}

.feature:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.feature-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

.feature-video {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.feature-video video {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 10px;
}

.plans-section {
    padding: 60px 0;
}

.plans-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.plans-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.plan-card {
    background: var(--dark-surface);
    border-radius: 15px;
    padding: 30px;
    width: 280px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.plan-duration {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.plan-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.plan-features li {
    padding: 10px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--dark-surface-2);
}

.plan-features li:before {
    content: "✓";
    color: var(--primary);
    margin-right: 10px;
}


.plan-features li.negative:before {
    content: "✕";
    color: var(--text-secondary);
}

.plan-card .btn {
    display: block;
    width: 100%;
    font-family: inherit;
    font-weight: 600;
}


footer {
    background-color: var(--dark-surface);
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
    padding: 0 15px;
}

.footer-column h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    padding-left: 0;
    display: inline-block;
}

.footer-column a:before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-column a:hover:before {
    width: 100%;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--dark-surface-2);
    color: var(--text-primary);
    font-size: 1.2rem;
    transition: all var(--transition-speed);
}

.social-icon:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid var(--dark-surface-2);
    color: var(--text-secondary);
    font-size: 0.9rem;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}


@media (max-width: 992px) {
    .product-hero,
    .feature {
        flex-direction: column;
        gap: 30px;
    }

    .feature:nth-child(even) {
        flex-direction: column;
    }

    .header-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        margin-bottom: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
}


.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow-y: auto;
    padding-top: 60px;
    align-items: flex-start;
    justify-content: center;
}


.modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--dark-surface, #1e1e2e);
    margin: 5vh auto;
    max-width: 500px;
    width: 90%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--dark-surface-2, #2d2d3d);
}

.modal-header h2 {
    margin: 0;
    color: var(--text-primary, #ffffff);
}

.close-modal {
    font-size: 28px;
    color: var(--text-secondary, #b3b3b3);
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal:hover {
    color: var(--primary, #8a2be2);
}

.modal-body {
    padding: 20px;
}


.payment-modal .form-group {
    margin-bottom: 20px;
}

.payment-modal .form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-secondary, #b3b3b3);
}

.payment-modal .form-group input[type="text"],
.payment-modal .form-group input[type="email"],
.payment-modal .form-group input[type="password"],
.payment-modal .form-group select {
    width: 100%;
    box-sizing: border-box;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid var(--dark-surface-2, #2d2d3d);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-primary, #ffffff);
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-group.half {
    flex: 1;
}

.guest-checkout-option {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--dark-surface-2, #2d2d3d);
}

.guest-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.guest-checkbox input[type="checkbox"] {
    margin: 0;
    height: 18px;
    width: 18px;
    opacity: 0;
    position: absolute;
    cursor: pointer;
}

.guest-checkbox label {
    margin-bottom: 0;
    cursor: pointer;
    padding-left: 28px;
    position: relative;
    display: inline-block;
    line-height: 20px;
}

.guest-checkbox label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 2px solid var(--dark-surface-2, #2d2d3d);
    border-radius: 3px;
    background-color: rgba(255, 255, 255, 0.05);
    box-sizing: border-box;
}

.guest-checkbox input[type="checkbox"]:checked+label::before {
    background-color: var(--primary, #8a2be2);
    border-color: var(--primary, #8a2be2);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white' width='18px' height='18px'%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 14px;
}

.payment-options h3,
.order-summary h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--text-primary, #ffffff);
    font-size: 1.2rem;
}

.payment-method-selection {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.payment-option {
    flex: 1;
    min-width: 120px;
}

.payment-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px;
    background-color: var(--dark-surface-2, #2d2d3d);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    min-height: 140px;
}

.card-icons,
.crypto-icons {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
}

.card-icons i,
.crypto-icons i {
    font-size: 1.2rem !important;
    margin: 2px !important;
}

.payment-option input[type="radio"]:checked+label .card-icons i,
.payment-option input[type="radio"]:checked+label .crypto-icons i {
    color: var(--primary, #8a2be2);
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-option input[type="radio"]:checked+label {
    background-color: rgba(138, 43, 226, 0.2);
    border: 1px solid var(--primary, #8a2be2);
}

.payment-option i {
    font-size: 1.2rem !important;
}


select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: rgba(255, 255, 255, 0.05) !important;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 10px top 50%;
    background-size: 20px;
    padding-right: 30px;
    color: var(--text-primary, #ffffff);
    border: 1px solid var(--dark-surface-2, #2d2d3d);
}

select option {
    background-color: var(--dark-surface, #1e1e2e);
    color: var(--text-primary, #ffffff);
    padding: 12px;
}


@keyframes selectPulse {
    0% { box-shadow: 0 0 0 0 rgba(138, 43, 226, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(138, 43, 226, 0); }
    100% { box-shadow: 0 0 0 0 rgba(138, 43, 226, 0); }
}

.crypto-select:focus {
    animation: selectPulse 1.5s infinite;
}


#crypto-type.crypto-select {
    background-color: rgba(30, 30, 46, 0.8) !important;
    border-color: var(--primary, #8a2be2);
}

.payment-note {
    margin-bottom: 15px;
    color: var(--text-secondary, #b3b3b3);
    line-height: 1.5;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.payment-icons i {
    font-size: 32px;
    color: var(--text-secondary, #b3b3b3);
    transition: color 0.3s ease;
}

.payment-icons i:hover {
    color: var(--text-primary, #ffffff);
}

.crypto-address {
    text-align: center;
    margin-top: 15px;
}

.crypto-address-display {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: 6px;
    font-family: monospace;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 10px 0;
    word-break: break-all;
}

.copy-address {
    background: none;
    border: none;
    color: var(--primary, #8a2be2);
    cursor: pointer;
    font-size: 1rem;
}

.qr-code {
    display: flex;
    justify-content: center;
    margin: 15px 0;
}

.qr-code img {
    max-width: 150px;
    border: 5px solid white;
    border-radius: 4px;
}

.order-summary {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--dark-surface-2, #2d2d3d);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: var(--text-secondary, #b3b3b3);
}

.summary-row.total {
    font-weight: bold;
    color: var(--text-primary, #ffffff);
    font-size: 1.2rem;
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid var(--dark-surface-2, #2d2d3d);
}

.btn-full {
    display: block;
    width: 100%;
    margin-top: 25px;
    padding: 15px;
    font-size: 1.1rem;
}

.payment-note {
    color: var(--text-secondary, #b3b3b3);
    font-style: italic;
    margin: 20px 0;
    text-align: center;
    padding: 15px;
    background-color: rgba(138, 43, 226, 0.1);
    border-radius: 6px;
}

.payment-type input[type="radio"] {
    display: none;
}

.payment-type input[type="radio"]:checked+label {
    background-color: rgba(138, 43, 226, 0.2);
    border: 1px solid var(--primary, #8a2be2);
}

.payment-type label {
    border: 1px solid transparent;
}

.payment-type i {
    font-size: 1.5rem;
    color: var(--primary, #8a2be2);
}


.plan-loading {
    text-align: center;
    padding: 40px 0;
}

.loading-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid rgba(138, 43, 226, 0.3);
    border-top-color: #8a2be2;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-text {
    margin-top: 15px;
    color: var(--text-secondary, #b3b3b3);
}


.captcha-container {
    display: none;
    text-align: center;
}


.terms-checkbox {
    margin-bottom: 10px;
}


.guest-email-hidden {
    display: none;
}


.payment-type-container {
    margin-bottom: 20px;
}

.payment-type-options {
    display: flex;
    gap: 15px;
}

.payment-type {
    flex: 1;
}

.payment-type-flex {
    display: flex;
    width: 100%;
}

.payment-type input[type="radio"] {
    display: none;
}

.payment-type-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px;
    background-color: var(--dark-surface-2, #2d2d3d);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
    gap: 8px;
}

.payment-type input[type="radio"]:checked + .payment-type-block {
    background-color: rgba(138, 43, 226, 0.2);
    border: 1px solid var(--primary, #8a2be2);
}

.payment-type-label {
    font-weight: 500;
    text-align: center;
}


.coupon-container {
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;
}

.coupon-flex {
    flex: 1;
    width: 100%;
}

#coupon-code {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-primary, #ffffff);
  border: 1px solid var(--dark-surface-2, #2d2d3d);
  padding: 12px;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.coupon-button {
  min-width: 80px;
  white-space: nowrap;
  color: white; 
}


.crypto-select {
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: rgba(255, 255, 255, 0.05) !important;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%238a2be2' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px top 50%;
  background-size: 20px;
  padding: 12px 15px;
  padding-right: 40px;
  border-radius: 6px;
  border: 1px solid var(--dark-surface-2, #2d2d3d);
  color: var(--text-primary, #ffffff);
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.crypto-select:hover, 
.crypto-select:focus {
  border-color: var(--primary, #8a2be2);
  background-color: rgba(138, 43, 226, 0.1) !important;
  box-shadow: 0 4px 12px rgba(138, 43, 226, 0.2);
  transform: translateY(-2px);
  outline: none;
}

.crypto-select option {
  background-color: var(--dark-surface, #1e1e2e);
  color: var(--text-primary, #ffffff);
  padding: 12px;
}


.youtube-container {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background-color: #000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 16/9; 
}

.youtube-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.4);
}

.youtube-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.youtube-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: filter 0.3s ease;
    display: block; 
}

.youtube-thumbnail:hover img {
    filter: brightness(0.7);
}

.youtube-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease;
    z-index: 1;
}

.youtube-thumbnail:hover .youtube-play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.youtube-play-button-bg {
    fill: #ff0000;
    fill-opacity: 0.8;
    transition: fill-opacity 0.3s ease;
}

.youtube-play-button-arrow {
    fill: #ffffff;
}

.youtube-thumbnail:hover .youtube-play-button-bg {
    fill-opacity: 1;
}

.youtube-iframe-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 2; 
}

.youtube-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block; 
}


.youtube-loaded .youtube-iframe-container {
    display: block;
}


.video-loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--primary, #8a2be2);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 3;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.feature-video {
    position: relative;
}

.feature-video .video-loading-spinner {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.feature-video.video-loaded .video-loading-spinner {
    opacity: 0;
    pointer-events: none;
}


.youtube-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.youtube-loading.active {
    opacity: 1;
    pointer-events: auto;
}

.youtube-loading .loading-text {
    margin-top: 60px;
    color: var(--text-primary);
    font-size: 14px;
}


.coming-soon-badge {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary, #8a2be2);
    color: white;
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.payment-option label {
    position: relative;
}


#paypal-option label i.fab.fa-paypal,
#paypal-option label i.fab.fa-cc-paypal {
    color: var(--text-primary, #ffffff);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

#paypal-option label i.fab.fa-cc-paypal {
    font-size: 1.5rem;
}


.btn-coming-soon {
    display: none !important;
}


.feature-cards-section {
    padding: 80px 0;
    background-color: rgba(20, 20, 20, 0.6);
    border-radius: var(--border-radius);
    margin: 40px auto;
    max-width: var(--container-width);
}

.feature-cards-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--text-primary);    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 30px;
}

.feature-card {
    background: rgba(30, 30, 30, 0.6);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(138, 43, 226, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    min-height: 250px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.2);
    border-color: rgba(138, 43, 226, 0.4);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary);
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(138, 43, 226, 0.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}


#globalNotification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 4px;
    z-index: 10000;
    transform: translateY(-100px);
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 80%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

#globalNotification.show {
    transform: translateY(0);
    opacity: 1;
}

#globalNotification.success {
    background-color: rgba(40, 167, 69, 0.95);
    color: #fff;
}

#globalNotification.error {
    background-color: rgba(220, 53, 69, 0.95);
    color: #fff;
}

@media (max-width: 768px) {
    #globalNotification {
        max-width: 90%;
        right: 5%;
        left: 5%;
        text-align: center;
    }
}
