:root {
    --primary-color: #007bff;
    --primary-hover: #0056b3;
    --secondary-color: #00c2ff;
    --dark: #0a0a0a;
    --border-color: rgba(0, 123, 255, 0.2);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark);
}

/* Navbar Styles */
.navbar {
    background-color: rgba(0, 0, 0, 0.97);
    padding: 1.2rem 0;
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.1);
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 8px rgba(0, 123, 255, 0.3));
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    padding: 0.7rem 1.2rem !important;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0.9;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 30px;
}

.nav-link:hover {
    color: #fff !important;
    transform: translateY(-1px);
    opacity: 1;
}

.dropdown-menu {
    background-color: rgba(0, 0, 0, 0.97);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.8rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    margin-top: 10px;
}

.dropdown-item {
    color: #fff;
    padding: 0.7rem 1.2rem;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.dropdown-item i {
    margin-right: 8px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    font-size: 0.9em;
}

.dropdown-item:hover {
    background: linear-gradient(45deg, rgba(0, 123, 255, 0.08), rgba(0, 194, 255, 0.08));
    color: #fff;
    opacity: 1;
}

.dropdown-item:hover i {
    transform: translateX(3px);
    color: var(--secondary-color);
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 0.7rem 1.8rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover:before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

/* Mobil Menü Stilleri */
@media (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.98);
        padding: 1rem;
        border-radius: 0 0 12px 12px;
        margin: 0 1rem;
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .nav-item {
        margin: 0.5rem 0;
    }
    
    .nav-link:hover {
        background: linear-gradient(45deg, rgba(0, 123, 255, 0.08), rgba(0, 194, 255, 0.08));
        border-radius: 6px;
        transform: none;
    }
    
    .nav-link:after {
        display: none;
    }
    
    .dropdown-menu {
        background-color: rgba(0, 123, 255, 0.05);
        border: none;
        box-shadow: none;
        padding: 0;
        margin-top: 5px;
    }
    
    .d-flex {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .btn-primary {
        width: 100%;
    }
}

/* Animasyonlar */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu.show {
    animation: fadeIn 0.3s ease forwards;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 800px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 76px;
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.hero-content {
    max-width: 700px;
    padding: 2rem;
    position: relative;
    z-index: 3;
    opacity: 0;
    animation: slideUp 1s ease forwards;
}

.hero-title {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Hero Animasyonu */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-section {
        height: 100vh;
        min-height: 500px;
        max-height: 700px;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: calc(2rem + 2vw);
        margin-bottom: 1rem;
    }

    .hero-text {
        font-size: calc(0.9rem + 0.5vw);
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 450px;
        max-height: 600px;
    }

    .hero-content {
        padding: 1.5rem 1rem;
    }

    .hero-title {
        font-size: calc(1.8rem + 1vw);
    }

    .hero-text {
        font-size: calc(0.85rem + 0.3vw);
        line-height: 1.5;
    }
}

/* Mobil menü için overlay */
.navbar-collapse.show {
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer Styles */
.footer {
    background-color: rgba(0, 0, 0, 0.97);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.footer h5 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.1rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

@media (max-width: 991px) {
    .footer {
        padding: 3rem 0 1.5rem;
        text-align: center;
    }
    
    .footer h5 {
        margin-top: 2rem;
    }
    
    .footer-contact li {
        justify-content: center;
    }
}

/* Ürünler Bölümü */
.products-section {
    padding: 4rem 0;
}

.products-section .product-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 123, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    height: 100%;
}

.products-section .product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 123, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 123, 255, 0.1);
}

.product-icon {
    margin-bottom: 1.5rem;
}

.product-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.product-title {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.product-price {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.product-specs {
    margin-bottom: 2rem;
}

.spec-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 0.8rem;
    border-radius: 8px;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #fff;
}

.spec-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.spec-item i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.1rem;
}

.product-card .btn-primary {
    margin-top: auto;
}

@media (max-width: 991px) {
    .products-section .product-card {
        margin-bottom: 2rem;
    }
}

/* Modal Stilleri */
.modal-content {
    background: rgba(10, 10, 10, 0.98);
    border: 1px solid rgba(0, 123, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
}

.modal-header .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.modal-body {
    padding: 2rem;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}

/* Ürün Detayları */
.product-details .card {
    background: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.spec {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spec i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 1.2rem;
}

.price-tag {
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin: 1.5rem 0;
    text-shadow: 0 2px 10px rgba(0, 123, 255, 0.2);
}

.price-tag .period {
    font-size: 1.1rem;
    opacity: 0.8;
    font-weight: 500;
}

/* Form Elemanları */
.form-control, .form-select {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: #fff;
    padding: 1rem 1.2rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
    cursor: pointer;
}

.form-select option {
    background: rgba(10, 10, 10, 0.98);
    color: #fff;
    padding: 10px;
}

/* Başarılı Modal */
.success-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1.5rem;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Ödeme Detayları */
.payment-details .card {
    background: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
}

.payment-details h6 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Sayfalama */
.pagination {
    margin-top: 3rem;
}

.page-link {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    color: #fff;
    margin: 0 5px;
    border-radius: 8px;
    padding: 0.8rem 1.2rem;
    transition: all 0.3s ease;
}

.page-link:hover,
.page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* Ödeme Detayları Stilleri */
.payment-info {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.2rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.payment-info:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 123, 255, 0.2);
}

.payment-info strong {
    color: #fff;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.payment-info .text-primary {
    color: var(--primary-color) !important;
    font-family: monospace;
    font-size: 1.1rem;
    word-break: break-all;
}

/* Form Elemanları İyileştirmeleri */
.form-select {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.form-select:focus {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-select option {
    background-color: rgba(10, 10, 10, 0.98);
    color: #fff;
    padding: 10px;
}

.form-select optgroup {
    background-color: rgba(0, 0, 0, 0.95);
    color: var(--primary-color);
    font-weight: 600;
}

/* Modal İyileştirmeleri */
.modal-lg {
    max-width: 800px;
}

.modal-content {
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.modal-body {
    padding: 2rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 1.5rem 0;
}

@media (min-width: 768px) {
    .specs-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.btn-copy {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.3rem 0.6rem;
    transition: all 0.3s ease;
}

.btn-copy:hover {
    background: rgba(0, 123, 255, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-copy i {
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .products-section .col-md-4 {
        padding: 1rem;
    }
}

/* Özellikler Bölümü */
.features-section {
    padding: 6rem 0;
    background: linear-gradient(0deg, var(--dark) 0%, rgba(10, 10, 10, 0.98) 100%);
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.features-strip {
    position: relative;
    margin: 4rem 0;
    text-align: center;
}

.features-strip img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 123, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(0, 123, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.8rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card h4 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .features-strip {
        margin: 3rem 0;
    }
    
    .feature-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
}

/* İşlemci Seçenekleri Bölümü */
.processors-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, var(--dark) 100%);
}

.processor-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 123, 255, 0.1);
    border-radius: 25px;
    padding: 3rem;
    margin: 1rem 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.processor-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 123, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 123, 255, 0.1);
}

.processor-img {
    max-width: 100%;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 10px 20px rgba(0, 123, 255, 0.2));
    transition: all 0.4s ease;
}

.processor-card:hover .processor-img {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 30px rgba(0, 123, 255, 0.3));
}

.processor-info h3 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.processor-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .processor-card {
        padding: 2rem;
        margin: 1rem 0;
    }
    
    .processor-info h3 {
        font-size: 1.8rem;
    }
    
    .processor-info p {
        font-size: 1rem;
    }
}

/* S.S.S. Bölümü */
.faq-section {
    padding: 6rem 0;
    background: linear-gradient(0deg, rgba(10, 10, 10, 0.98) 0%, var(--dark) 100%);
}

.faq-item {
    margin-bottom: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 123, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
}

.faq-button {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem;
    color: #fff;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-button:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-button span {
    font-size: 1.1rem;
    font-weight: 500;
}

.faq-button i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-button:not(.collapsed) i {
    transform: rotate(180deg);
}

.faq-content {
    padding: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.01);
}

@media (max-width: 768px) {
    .faq-button span {
        font-size: 1rem;
    }
    
    .faq-content {
        font-size: 1rem;
        padding: 1.2rem;
    }
}

/* Yukarı Çık Butonu */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

@media (max-width: 768px) {
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Minecraft Ürün Kartları */
.products-section .product-card {
    padding: 2.5rem;
    min-height: auto;
    margin-bottom: 2rem;
}

.products-section .product-specs {
    margin: 1.5rem 0;
    gap: 1rem;
}

.products-section .spec-item {
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.products-section .spec-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.products-section .product-icon i {
    font-size: 2.5rem;
}

/* Minecraft Modal */
.modal .minecraft-version {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal .minecraft-version:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Hosting Kartları */
.hosting-card {
    border: 1px solid rgba(0, 123, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.hosting-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 123, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 123, 255, 0.1);
}

.hosting-card .product-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.hosting-card .product-specs {
    margin: 1.5rem 0;
}

.hosting-card .spec-item {
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.hosting-card .spec-item i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 0.9rem;
} 
