
:root {
    
    --neon-blue: #00F0FF;
    --deep-space: #13141C;
    --cyber-purple: #9D00FF;
    
    
    --neon-pink: #FF00E4;
    --midnight-blue: #0F1023;
    --electric-yellow: #F9FF00;
    
    
    --dark-void: #080A12;
    --charcoal-gray: #1E2130;
    --tech-black: #0E0E12;
    
    
    --digital-green: #00FF8C;
    --hacker-red: #FF003C;
    --circuit-gold: #FFB800;
    
    
    --light-gray: #E0E0E0;
    --medium-gray: #9B9B9B;
    --dark-gray: #464646;
    
    
    --font-primary: 'Barlow', sans-serif;
    --font-secondary: 'PT Serif', serif;
    
    
    --uk-primary-color: var(--neon-blue);
    --uk-secondary-color: var(--deep-space);
}


html, body {
    font-family: var(--font-primary);
    background-color: var(--dark-void);
    color: var(--light-gray);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: #fff;
}

a {
    color: var(--neon-blue);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--cyber-purple);
    text-decoration: none;
}

.uk-section-muted {
  background-color: inherit;
}

.uk-text-lead {
  color: var(--light-gray);
}


.uk-button {
    font-family: var(--font-primary);
    font-weight: 500;
    text-transform: none;
    border-radius: 4px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.uk-button-primary {
    background: linear-gradient(135deg, var(--neon-blue), var(--cyber-purple));
    color: #fff;
    border: none;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

.uk-button-primary:hover {
    background: linear-gradient(135deg, var(--cyber-purple), var(--neon-blue));
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.7);
    transform: translateY(-2px);
}

.uk-button-default {
    background-color: transparent;
    color: var(--light-gray);
    border: 2px solid var(--neon-blue);
}

.uk-button-default:hover {
    background-color: rgba(0, 240, 255, 0.1);
    color: var(--neon-blue);
    border-color: var(--neon-blue);
}

.uk-button-danger {
    background-color: var(--hacker-red);
    color: white;
    border: none;
}

.uk-button-danger:hover {
    background-color: #e0002d;
    color: white;
}


header {
    position: relative;
    background-color: var(--tech-black);
}

.uk-navbar-container {
    background-color: rgba(14, 14, 18, 0.9) !important;
    padding: 10px 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    z-index: 100;
}

.uk-navbar-left .uk-logo {
    padding: 5px 0;
}

.uk-navbar-nav > li > a {
    font-family: var(--font-primary);
    color: var(--light-gray);
    font-weight: 500;
    font-size: 16px;
    min-height: 60px;
    text-transform: none;
    position: relative;
}

.uk-navbar-nav > li > a::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--neon-blue);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.uk-navbar-nav > li:hover > a,
.uk-navbar-nav > li.uk-active > a {
    color: var(--neon-blue);
}

.uk-navbar-nav > li:hover > a::after,
.uk-navbar-nav > li.uk-active > a::after {
    width: 60%;
}

.uk-navbar-toggle {
    color: var(--light-gray);
}

.uk-navbar-toggle:hover {
    color: var(--neon-blue);
}

.uk-offcanvas-bar {
    background-color: var(--tech-black);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.uk-nav-default > li > a {
    color: var(--light-gray);
    font-family: var(--font-primary);
    font-size: 16px;
    padding: 10px 0;
}

.uk-nav-default > li > a:hover,
.uk-nav-default > li.uk-active > a {
    color: var(--neon-blue);
}


.hero-section {
    padding: 100px 0 150px;
    background: linear-gradient(to bottom, var(--tech-black), var(--deep-space));
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 240, 255, 0.1), transparent 60%);
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, var(--dark-void), transparent);
    z-index: 1;
}

.hero-section .uk-grid {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.hero-section h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--neon-blue), var(--cyber-purple));
}

.hero-section h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--light-gray);
    margin-bottom: 20px;
}

.hero-section p {
    color: var(--medium-gray);
    margin-bottom: 30px;
}

.hero-image {
    max-width: 100%;
    transform: perspective(1000px) rotateY(-15deg);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
    border-radius: 10px;
    transition: all 0.5s ease;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 0 0 50px rgba(157, 0, 255, 0.6);
}

.hero-shape-bottom {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    z-index: 3;
}


.page-title-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, var(--tech-black), var(--deep-space));
    position: relative;
    text-align: center;
}

.page-title-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 240, 255, 0.1), transparent 70%);
    z-index: 0;
}

.page-title-section h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.page-title-section h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--neon-blue), var(--cyber-purple));
}

.page-title-section p {
    color: var(--medium-gray);
    position: relative;
    z-index: 1;
}


.uk-section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--neon-blue), var(--cyber-purple));
}

.uk-text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.uk-section-secondary {
    background-color: var(--deep-space);
    position: relative;
    overflow: hidden;
}

.uk-section-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom left, rgba(157, 0, 255, 0.1), transparent 60%);
    z-index: 0;
}

.uk-section-secondary .uk-container {
    position: relative;
    z-index: 1;
}


.feature-slider {
    position: relative;
    overflow: hidden;
}

.feature-card {
    background: rgba(30, 33, 48, 0.7);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 10px;
    padding: 30px;
    margin: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 240, 255, 0.3);
    border-color: var(--neon-blue);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--neon-blue);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--medium-gray);
}

.carousel-cell {
    width: 33%;
    padding: 10px;
}


.about-section {
    position: relative;
}

.about-image-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.about-image-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    background: linear-gradient(45deg, var(--neon-blue), var(--cyber-purple), var(--neon-pink), var(--neon-blue));
    background-size: 400% 400%;
    animation: gradient-border 10s ease infinite;
    z-index: -1;
    border-radius: 15px;
}

@keyframes gradient-border {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


.product-card {
    background: rgba(30, 33, 48, 0.7);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card.featured {
    border-color: var(--cyber-purple);
    box-shadow: 0 0 20px rgba(157, 0, 255, 0.3);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--neon-pink), var(--cyber-purple));
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
}

.product-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.product-info p {
    color: var(--medium-gray);
    margin-bottom: 15px;
    flex-grow: 1;
}

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--neon-blue);
    margin-bottom: 20px;
}

.product-features {
    margin-bottom: 20px;
    list-style-type: none;
    padding-left: 0;
}

.product-features li {
    margin-bottom: 8px;
    color: var(--light-gray);
}

.product-features li i {
    color: var(--digital-green);
    margin-right: 8px;
}


.security-card {
    background: rgba(14, 14, 18, 0.7);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.security-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-blue);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 240, 255, 0.2);
}

.security-icon {
    font-size: 2rem;
    color: var(--neon-blue);
    margin-bottom: 15px;
}

.security-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.security-card p {
    color: var(--medium-gray);
}


.contact-form-section {
    position: relative;
    overflow: hidden;
}

.contact-info {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item i {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 240, 255, 0.1);
    border-radius: 50%;
    margin-right: 15px;
    color: var(--neon-blue);
}

.contact-item span {
    color: var(--light-gray);
}

.uk-form-label {
    color: var(--light-gray);
    font-weight: 500;
    margin-bottom: 5px;
}

.uk-input,
.uk-textarea,
.uk-select {
    background-color: rgba(14, 14, 18, 0.7);
    color: var(--light-gray);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.uk-input:focus,
.uk-textarea:focus,
.uk-select:focus {
    background-color: rgba(19, 20, 28, 0.9);
    color: white;
    border-color: var(--neon-blue);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.uk-checkbox,
.uk-radio {
    border: 1px solid rgba(0, 240, 255, 0.3);
    background-color: rgba(14, 14, 18, 0.7);
}

.uk-checkbox:checked,
.uk-radio:checked {
    background-color: var(--neon-blue);
}


footer {
    background-color: var(--tech-black);
    border-top: 1px solid rgba(0, 240, 255, 0.1);
}

footer h4 {
    color: var(--neon-blue);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

footer h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--neon-blue);
}

footer p {
    color: var(--medium-gray);
}

footer .uk-list-divider > li {
    border-color: rgba(0, 240, 255, 0.1);
}

footer address p {
    margin-bottom: 10px;
}

footer address i {
    color: var(--neon-blue);
    margin-right: 10px;
    width: 15px;
    text-align: center;
}


.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(14, 14, 18, 0.95);
    padding: 20px 0;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 240, 255, 0.2);
    display: none;
}

.cookie-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--neon-blue);
}

.cookie-text p {
    color: var(--light-gray);
    margin: 0;
}

.cookie-buttons {
    margin-left: 20px;
    display: flex;
    gap: 10px;
}


.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.cookie-settings-container {
    background-color: var(--deep-space);
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.cookie-settings-header {
    padding: 20px;
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-settings-header h3 {
    margin: 0;
    color: var(--neon-blue);
}

.close-button {
    background: none;
    border: none;
    color: var(--light-gray);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-button:hover {
    color: var(--neon-blue);
}

.cookie-settings-body {
    padding: 20px;
}

.cookie-category {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.category-header h4 {
    margin: 0;
    color: white;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--dark-gray);
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--neon-blue);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.cookie-settings-footer {
    padding: 20px;
    border-top: 1px solid rgba(0, 240, 255, 0.1);
    text-align: center;
}


.legal-content {
    background-color: rgba(14, 14, 18, 0.7);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(0, 240, 255, 0.1);
}

.legal-content h2 {
    font-size: 2.2rem;
    margin-bottom: 5px;
    color: var(--neon-blue);
}

.legal-content h3 {
    font-size: 1.6rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: white;
}

.legal-content h4 {
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--neon-blue);
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.legal-content ul, 
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--neon-blue);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: var(--cyber-purple);
}

.uk-text-muted {
    color: var(--medium-gray);
}


.cart-table {
    background-color: rgba(14, 14, 18, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(0, 240, 255, 0.1);
}

.cart-table th {
    color: var(--neon-blue);
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
}

.cart-table td {
    color: var(--light-gray);
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}

.cart-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.cart-product-name {
    font-weight: 500;
    color: white;
}

.cart-product-price {
    color: var(--light-gray);
}

.cart-quantity {
    display: flex;
    align-items: center;
}

.quantity-btn {
    background: none;
    border: none;
    color: var(--light-gray);
    font-size: 16px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    transition: color 0.3s ease;
}

.quantity-btn:hover {
    color: var(--neon-blue);
}

.quantity-input {
    width: 40px;
    height: 30px;
    text-align: center;
    background-color: rgba(30, 33, 48, 0.7);
    border: 1px solid rgba(0, 240, 255, 0.2);
    color: white;
    border-radius: 4px;
    margin: 0 5px;
}

.remove-item {
    background: none;
    border: none;
    color: var(--hacker-red);
    cursor: pointer;
    transition: color 0.3s ease;
}

.remove-item:hover {
    color: #ff5c7a;
}

.cart-actions {
    margin-top: 20px;
}

.cart-summary {
    background-color: rgba(14, 14, 18, 0.7);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 10px;
}

.cart-summary h3 {
    color: var(--neon-blue);
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: var(--light-gray);
}

.summary-row.total {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 240, 255, 0.2);
    font-weight: bold;
    font-size: 1.2rem;
    color: white;
}

.empty-cart-icon {
    font-size: 4rem;
    color: var(--medium-gray);
    margin-bottom: 20px;
    opacity: 0.5;
}


.specs-table {
    background-color: rgba(14, 14, 18, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(0, 240, 255, 0.1);
}

.specs-table th {
    color: var(--neon-blue);
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
    text-align: left;
}

.specs-table td {
    color: var(--light-gray);
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}


.security-layer {
    position: relative;
    padding: 30px;
    background-color: rgba(14, 14, 18, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(0, 240, 255, 0.1);
    margin-bottom: 30px;
}

.layer-badge {
    display: inline-block;
    padding: 5px 10px;
    background: linear-gradient(135deg, var(--neon-blue), var(--cyber-purple));
    color: white;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}


.expert-image {
    border-radius: 10px;
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.expert-card {
    background-color: rgba(14, 14, 18, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(0, 240, 255, 0.1);
    padding: 30px;
    height: 100%;
}

.expert-title {
    color: var(--neon-blue);
    font-style: italic;
    margin-bottom: 20px;
}

.expert-quote {
    position: relative;
    padding: 20px;
    background-color: rgba(30, 33, 48, 0.7);
    border-radius: 10px;
    margin-bottom: 20px;
}

.expert-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 10px;
    font-size: 60px;
    color: var(--neon-blue);
    opacity: 0.3;
}

.expert-card blockquote {
    border-left: 3px solid var(--neon-blue);
    padding-left: 15px;
    font-style: italic;
    margin: 20px 0;
}


.threat-card {
    background-color: rgba(14, 14, 18, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(0, 240, 255, 0.1);
    padding: 30px;
    height: 100%;
}

.threat-icon {
    font-size: 2rem;
    color: var(--neon-blue);
    margin-bottom: 15px;
    text-align: center;
}

.threat-card h3 {
    text-align: center;
    margin-bottom: 20px;
    color: white;
}

.threat-card h4 {
    margin-top: 20px;
    color: var(--neon-blue);
}


.tips-card {
    background-color: rgba(14, 14, 18, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(0, 240, 255, 0.1);
    padding: 30px;
    height: 100%;
}

.tips-card h3 {
    color: var(--neon-blue);
    margin-bottom: 20px;
}


.version-card {
    background-color: rgba(14, 14, 18, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(0, 240, 255, 0.1);
    padding: 30px;
    margin-bottom: 20px;
}

.version-card.latest-version {
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.version-info {
    text-align: center;
    padding-right: 20px;
    border-right: 1px solid rgba(0, 240, 255, 0.1);
}

.version-date {
    color: var(--medium-gray);
    margin-bottom: 15px;
}

.version-badge {
    display: inline-block;
    padding: 3px 10px;
    background: linear-gradient(135deg, var(--neon-blue), var(--cyber-purple));
    color: white;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 15px;
}

.version-compatibility span {
    display: block;
    margin-bottom: 5px;
    color: var(--light-gray);
}

.version-compatibility span i {
    color: var(--digital-green);
    margin-right: 5px;
}

.version-details {
    padding-left: 20px;
}

.version-description {
    margin-bottom: 20px;
}


.blog-card {
    background-color: rgba(14, 14, 18, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(0, 240, 255, 0.1);
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(0, 240, 255, 0.2);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 20px;
}

.blog-date {
    color: var(--neon-blue);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.blog-content h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-content h3 {
    color: var(--neon-blue);
}

.blog-content p {
    color: var(--medium-gray);
    margin-bottom: 15px;
}


.uk-accordion-title {
    background-color: rgba(14, 14, 18, 0.7);
    color: white;
    padding: 15px;
    border-radius: 6px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 240, 255, 0.1);
}

.uk-accordion-title:hover,
.uk-accordion-title:focus {
    color: var(--neon-blue);
    background-color: rgba(19, 20, 28, 0.9);
}

.uk-accordion-content {
    padding: 20px;
    color: var(--light-gray);
}


.cta-section {
    position: relative;
}

.cta-container {
    padding: 50px;
    border-radius: 10px;
    background: linear-gradient(to right, rgba(13, 16, 35, 0.9), rgba(19, 20, 28, 0.9));
    border: 1px solid rgba(0, 240, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 240, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom right, rgba(157, 0, 255, 0.1), transparent 70%);
    z-index: 0;
}

.cta-container h2,
.cta-container p,
.cta-container .uk-button {
    position: relative;
    z-index: 1;
}


.contact-info-card {
    background-color: rgba(14, 14, 18, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(0, 240, 255, 0.1);
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(0, 240, 255, 0.2);
}

.contact-icon {
    font-size: 2rem;
    color: var(--neon-blue);
    margin-bottom: 20px;
}

.contact-info-card h3 {
    margin-bottom: 15px;
}

.contact-info-card p {
    color: var(--light-gray);
}

.contact-info-card p.uk-text-small {
    color: var(--medium-gray);
    margin-top: 15px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.business-hours {
    background-color: rgba(30, 33, 48, 0.7);
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.day {
    font-weight: 500;
    color: white;
}

.time {
    color: var(--light-gray);
}


.compliance-card {
    background-color: rgba(14, 14, 18, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(0, 240, 255, 0.1);
    padding: 30px;
    height: 100%;
}

.compliance-icon {
    font-size: 2rem;
    color: var(--neon-blue);
    margin-bottom: 20px;
    text-align: center;
}

.compliance-card h3 {
    color: white;
    margin-bottom: 15px;
    text-align: center;
}

.documentation-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.documentation-list li {
    display: inline-block;
    background-color: rgba(30, 33, 48, 0.7);
    padding: 8px 15px;
    margin: 5px;
    border-radius: 4px;
    border: 1px solid rgba(0, 240, 255, 0.1);
}


.checkout-section {
    background-color: rgba(14, 14, 18, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(0, 240, 255, 0.1);
    padding: 30px;
    margin-bottom: 30px;
}

.checkout-section h2 {
    color: var(--neon-blue);
    margin-bottom: 25px;
    font-size: 1.6rem;
}

.shipping-option {
    display: flex;
    align-items: center;
    background-color: rgba(30, 33, 48, 0.7);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 240, 255, 0.1);
}

.shipping-option:hover {
    background-color: rgba(40, 43, 58, 0.7);
}

.shipping-option-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-left: 15px;
}

.shipping-details {
    display: flex;
    flex-direction: column;
}

.shipping-name {
    font-weight: 500;
    color: white;
}

.shipping-time {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.shipping-price {
    font-weight: 500;
    color: var(--neon-blue);
}

.payment-notice {
    background-color: rgba(0, 255, 140, 0.1);
    border-left: 3px solid var(--digital-green);
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 0 8px 8px 0;
}

.payment-notice p {
    color: var(--light-gray);
    margin: 0;
}

.payment-notice i {
    color: var(--digital-green);
    margin-right: 10px;
}

.payment-option {
    display: flex;
    align-items: center;
    background-color: rgba(30, 33, 48, 0.7);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 240, 255, 0.1);
}

.payment-option:hover {
    background-color: rgba(40, 43, 58, 0.7);
}

.payment-option-content {
    display: flex;
    align-items: center;
    margin-left: 15px;
}

.payment-icon {
    font-size: 1.5rem;
    color: var(--neon-blue);
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.payment-details {
    display: flex;
    flex-direction: column;
}

.payment-name {
    font-weight: 500;
    color: white;
}

.payment-description {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.order-summary {
    background-color: rgba(14, 14, 18, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(0, 240, 255, 0.1);
    padding: 25px;
}

.order-summary h2 {
    color: var(--neon-blue);
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.summary-item {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}

.summary-item-image {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 15px;
}

.summary-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.summary-item-details {
    flex: 1;
}

.summary-item-name {
    font-weight: 500;
    color: white;
    margin-bottom: 5px;
}

.summary-item-price {
    display: flex;
    justify-content: space-between;
    color: var(--light-gray);
}

.summary-divider {
    height: 1px;
    background-color: rgba(0, 240, 255, 0.1);
    margin: 15px 0;
}

.security-notice {
    margin-top: 30px;
    background-color: rgba(14, 14, 18, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(0, 240, 255, 0.1);
    padding: 25px;
    text-align: center;
}

.notice-icon {
    font-size: 2rem;
    color: var(--neon-blue);
    margin-bottom: 15px;
}

.security-notice h3 {
    color: white;
    margin-bottom: 15px;
}

.security-notice p {
    color: var(--medium-gray);
    margin-bottom: 10px;
}


.thank-you-section {
    padding: 80px 0;
}

.thank-you-icon {
    font-size: 5rem;
    color: var(--digital-green);
    margin-bottom: 30px;
}

.order-details {
    max-width: 600px;
    margin: 0 auto;
}

.order-detail-card {
    background-color: rgba(14, 14, 18, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(0, 240, 255, 0.1);
    padding: 20px;
    text-align: center;
    height: 100%;
}

.order-detail-card h3 {
    color: var(--neon-blue);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.order-detail-card p {
    color: white;
    font-size: 1.1rem;
    margin: 0;
}

.what-happens-next {
    margin-top: 50px;
}

.next-step-card {
    background-color: rgba(14, 14, 18, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(0, 240, 255, 0.1);
    padding: 25px;
    text-align: center;
    height: 100%;
}

.step-icon {
    font-size: 2rem;
    color: var(--neon-blue);
    margin-bottom: 15px;
}

.next-step-card h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.next-step-card p {
    color: var(--medium-gray);
}


.guarantee-card {
    background-color: rgba(14, 14, 18, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(0, 240, 255, 0.1);
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guarantee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(0, 240, 255, 0.2);
}

.guarantee-icon {
    font-size: 2.5rem;
    color: var(--neon-blue);
    margin-bottom: 20px;
}

.guarantee-card h3 {
    color: white;
    margin-bottom: 15px;
}

.guarantee-card p {
    color: var(--medium-gray);
    margin-bottom: 10px;
}


.iti {
    width: 100%;
}

.iti__flag {
    background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .iti__flag {
        background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@19.5.1/build/img/flags@2x.png");
    }
}


@media (max-width: 959px) {
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .hero-section h2 {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .carousel-cell {
        width: 50%;
    }
    
    .hero-image {
        margin-top: 30px;
    }
    
    .version-info {
        border-right: none;
        border-bottom: 1px solid rgba(0, 240, 255, 0.1);
        padding-right: 0;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    
    .version-details {
        padding-left: 0;
    }
    
    .cookie-container {
        flex-direction: column;
    }
    
    .cookie-buttons {
        margin-left: 0;
        margin-top: 15px;
    }
}

@media (max-width: 639px) {
    .hero-section {
        padding: 80px 0 120px;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .hero-section h2 {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .carousel-cell {
        width: 100%;
    }
    
    .uk-button-large {
        padding: 0 15px;
        line-height: 38px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
    
    .shipping-option-content,
    .payment-option-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .shipping-price {
        margin-top: 10px;
    }
}