:root {
    --primary-color: #00a8ff;
    --secondary-color: #0097e6;
    --accent-color: #00d2d3;
    --background-dark: #0a0f18;
    --background-light: #141e30;
    --text-color: #ffffff;
    --gradient-1: linear-gradient(45deg, #141e30, #243b55);
    --gradient-2: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    --gradient-hover: linear-gradient(45deg, #00a8ff, #00d2d3);
}

body.dark-theme {
    background: var(--gradient-2);
    color: var(--text-color);
    min-height: 100vh;
}

.navbar {
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-nav {
    gap: 10px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.95rem;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link i {
    font-size: 1rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff !important;
    transform: translateY(-2px);
}

.nav-link:hover i {
    transform: scale(1.1);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-status {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.2);
    border-radius: 20px;
    font-size: 0.85rem;
    color: #2ecc71;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #2ecc71;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.nav-social {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.nav-social:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

.nav-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn i {
    font-size: 1rem;
}

.btn-outline {
    color: var(--primary-color);
    border: 1px solid rgba(0, 168, 255, 0.3);
    background: transparent;
    text-decoration: none;
}

.btn-outline:hover {
    background: rgba(0, 168, 255, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    color: #fff;
    text-decoration: none;
}

.btn-primary:hover {
    background: #0090e6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 168, 255, 0.2);
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(13, 17, 23, 0.98);
        padding: 20px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        margin-top: 15px;
    }

    .navbar-nav {
        gap: 5px;
    }

    .nav-right {
        margin-top: 15px;
        flex-direction: column;
        gap: 15px;
    }

    .nav-buttons {
        width: 100%;
        justify-content: center;
    }

    .btn {
        flex: 1;
        justify-content: center;
    }
}

body {
    padding-top: 76px;
}

.hero-section {
    padding: 120px 0 80px;
    background: var(--background-dark);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(45deg, #c5c5c5, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hero-title .subtitle {
    font-size: 2.5rem;
    color: #fff;
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-buttons .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-buttons .btn-outline-secondary {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.hero-buttons .btn-outline-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    transform: scale(1.2);
    filter: drop-shadow(0 0 30px rgba(0, 168, 255, 0.3));
    animation: float 6s ease-in-out infinite;
}

/* Hero background effects */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 168, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 210, 211, 0.1) 0%, transparent 50%);
    z-index: 1;
}

/* Responsive styles */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-title .subtitle {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-image {
        margin-top: 3rem;
    }

    .hero-image img {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-title .subtitle {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        margin: 0.5rem 0;
    }
}

.product-card {
    background: rgba(20, 30, 48, 0.9);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.product-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(145deg, rgba(20, 30, 48, 0.9), rgba(32, 58, 67, 0.9));
    border: 1px solid rgba(0, 168, 255, 0.3);
    box-shadow: 0 15px 45px rgba(0, 168, 255, 0.2);
}

.btn-primary {
    background: var(--gradient-hover);
    border: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 168, 255, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--gradient-hover);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 168, 255, 0.3);
}

.section-padding {
    padding: 100px 0;
    position: relative;
}

.section-padding::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at right top, rgba(0, 168, 255, 0.1), transparent);
    pointer-events: none;
}

/* Footer Styles */
.footer {
    background: #0d1117;
    padding: 60px 0 30px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(0, 168, 255, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 50px;
    position: relative;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    margin-bottom: 20px;
    filter: brightness(1.1);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 168, 255, 0.15);
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-group h5 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-group li {
    margin-bottom: 12px;
}

.footer-group a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-group a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 30px;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.2);
    border-radius: 6px;
    color: #2ecc71;
    font-size: 0.85rem;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #2ecc71;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.payment-methods {
    display: flex;
    gap: 15px;
}

.payment-methods i {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.payment-methods i:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

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

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 991px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand {
        max-width: 100%;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer-nav {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-info {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-status {
        flex-direction: column;
        gap: 15px;
    }
}

/* Özel animasyonlar */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero-section img {
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 168, 255, 0.3));
}

/* Responsive tasarım için */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .product-card {
        margin: 15px;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(13, 18, 26, 0.98);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }

    .nav-right {
        margin-top: 1rem;
        justify-content: center;
    }
}

/* Features Section Styles */
.features-section {
    background: var(--background-dark);
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #c5c5c5, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(13, 18, 26, 0.95);
    border-radius: 12px;
    padding: 25px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(0, 168, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 168, 255, 0.2);
    box-shadow: 0 15px 45px rgba(0, 168, 255, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 18, 26, 0.95);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-icon svg {
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon svg {
    transform: scale(1.1);
}

.feature-card h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Her özellik kartı için özel hover efektleri */
.feature-card:nth-child(1):hover .feature-icon {
    background: rgba(255, 75, 75, 0.1);
}

.feature-card:nth-child(2):hover .feature-icon {
    background: rgba(0, 163, 255, 0.1);
}

.feature-card:nth-child(3):hover .feature-icon {
    background: rgba(255, 159, 10, 0.1);
}

.feature-card:nth-child(4):hover .feature-icon {
    background: rgba(48, 209, 88, 0.1);
}

/* Responsive styles */
@media (max-width: 991px) {
    .section-title {
        font-size: 2.5rem;
    }

    .feature-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon img {
        width: 30px;
        height: 30px;
    }
}

/* Pricing Section Styles */
.pricing-section {
    background: var(--background-dark);
    position: relative;
}

.feature-overview {
    margin-bottom: 60px;
}

.feature-overview-card {
    background: rgba(13, 18, 26, 0.95);
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-overview-card h4 {
    color: #fff;
    font-size: 1.1rem;
    margin: 15px 0 10px;
}

.feature-overview-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.feature-badge {
    background: rgba(0, 168, 255, 0.1);
    color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
}

/* Pricing Cards */
.pricing-card {
    background: rgba(13, 18, 26, 0.95);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}

.pricing-card.popular {
    border-color: var(--primary-color);
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.character-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.pricing-header h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    color: #fff;
}

.price .amount {
    font-size: 2.5rem;
    font-weight: 700;
}

.price .period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.pricing-features li {
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.pricing-features li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 168, 255, 0.1);
}

.pricing-card.popular:hover {
    transform: scale(1.02) translateY(-10px);
}

/* Responsive styles */
@media (max-width: 991px) {
    .pricing-card {
        margin-bottom: 30px;
    }

    .pricing-card.popular {
        transform: none;
    }

    .feature-overview-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .pricing-header h3 {
        font-size: 1.3rem;
    }

    .price .amount {
        font-size: 2rem;
    }

    .character-img {
        width: 120px;
        height: 120px;
    }
}

/* CS2 Product Section */
.cs2-product-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, #0d1117, #161b22);
    overflow: hidden;
    padding: 0;
}

.cs2-product-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('../images/cs2-character.jpg') no-repeat center right;
    background-size: cover;
    opacity: 0.6;
}

.product-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
}

.product-title {
    font-size: 4.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-subtitle {
    font-size: 1.25rem;
    color: #00a8ff;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.product-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.6;
}

.product-buttons {
    display: flex;
    gap: 1rem;
}

.product-buttons .btn {
    padding: 0.8rem 2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-buttons .btn-outline-light {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Responsive styles */
@media (max-width: 991px) {
    .cs2-product-section::before {
        width: 100%;
        opacity: 0.2;
    }

    .product-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .product-content {
        text-align: center;
        padding: 3rem 1rem;
    }

    .product-title {
        font-size: 2.8rem;
    }

    .product-description {
        margin: 0 auto 2rem;
    }

    .product-buttons {
        flex-direction: column;
    }

    .product-buttons .btn {
        width: 100%;
    }
}

/* Products Section Styles */
.products-section {
    background: linear-gradient(45deg, #0d1117, #161b22);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.background-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 168, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 75, 75, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.product-content {
    position: relative;
    z-index: 2;
    padding: 3rem 0;
}

.product-name {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #ccc);
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 168, 255, 0.1);
    border-radius: 10px;
    margin-right: 1rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.feature-text h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.feature-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.product-actions {
    display: flex;
    gap: 1rem;
}

.product-actions .btn {
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.product-actions .btn i {
    transition: transform 0.3s ease;
}

.product-actions .btn:hover i {
    transform: translateX(5px);
}

.product-image {
    position: relative;
    z-index: 2;
}

.image-container {
    position: relative;
    padding: 2rem;
}

.floating-image {
    width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(0, 168, 255, 0.3));
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 168, 255, 0.2), transparent 70%);
    pointer-events: none;
    animation: glow 4s ease-in-out infinite alternate;
}

@keyframes glow {
    0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(0.8);
    }

    100% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Responsive styles */
@media (max-width: 991px) {
    .product-name {
        font-size: 2rem;
    }

    .product-image {
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 4rem 0;
    }

    .product-content {
        text-align: center;
        padding: 0;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .feature-icon {
        margin: 0 0 1rem 0;
    }

    .product-actions {
        flex-direction: column;
    }

    .product-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ESP Overlay container */
.esp-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Modern ESP kutusu */
.esp-box {
    position: absolute;
    width: 180px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgb(0, 255, 0);
    /* Parlak yeşil */
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.5);
    z-index: 2;
    animation: espGlow 2s infinite;
}

/* Glow efekti */
.esp-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: transparent;
    box-shadow:
        0 0 30px rgba(0, 255, 0, 0.4),
        0 0 60px rgba(0, 255, 0, 0.2),
        inset 0 0 30px rgba(0, 255, 0, 0.3);
    z-index: -1;
}

@keyframes espGlow {
    0% {
        border-color: rgba(0, 255, 0, 0.8);
        box-shadow: 0 0 30px rgba(0, 255, 0, 0.5);
    }

    50% {
        border-color: rgba(0, 255, 0, 1);
        box-shadow: 0 0 50px rgba(0, 255, 0, 0.7);
    }

    100% {
        border-color: rgba(0, 255, 0, 0.8);
        box-shadow: 0 0 30px rgba(0, 255, 0, 0.5);
    }
}

/* ESP kutusu üzerindeki isim ve silah bilgileri */
.esp-name {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgb(0, 255, 0);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.7);
    white-space: nowrap;
    z-index: 3;
}

/* Can barı container */
.health-bar {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 6px;
    background: rgba(255, 0, 0, 0.3);
    border-radius: 3px;
    overflow: hidden;
    z-index: 3;
}

/* Can barı doluluk göstergesi */
.health-bar-fill {
    width: 75%;
    height: 100%;
    background: rgb(255, 0, 0);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
    border-radius: 3px;
}

/* Can miktarı yazısı */
.health-text {
    position: absolute;
    top: -35px;
    right: 0;
    color: rgb(255, 0, 0);
    font-size: 12px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
    z-index: 3;
}

/* Silah ikonu container */
.weapon-icon {
    position: absolute;
    bottom: -65px;
    /* Can barı için aşağı kaydırıldı */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgb(0, 255, 0);
    font-size: 14px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.7);
    z-index: 3;
}

/* Silah ikonu */
.weapon-icon i {
    font-size: 16px;
    filter: drop-shadow(0 0 5px rgba(0, 255, 0, 0.7));
}

.requirements-section {
    padding: 80px 0;
    background: linear-gradient(145deg, rgba(13, 18, 26, 0.98), rgba(20, 30, 48, 0.98));
    position: relative;
    overflow: hidden;
}

.requirements-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 168, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 168, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.requirements-card {
    background: rgba(13, 18, 26, 0.95);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.requirements-card .card-header {
    padding: 30px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 168, 255, 0.05);
}

.requirements-card .card-header i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--primary-color, #00a8ff), #00d2d3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 168, 255, 0.2));
}

.requirements-card .card-header h3 {
    color: #fff;
    font-size: 1.8rem;
    margin: 0;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.requirements-list {
    list-style: none;
    padding: 30px;
    margin: 0;
}

.requirements-list li {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.requirements-list li:hover {
    background: rgba(0, 168, 255, 0.05);
    transform: translateX(10px);
    padding-left: 10px;
    border-radius: 8px;
}

.requirements-list li:last-child {
    border-bottom: none;
}

.req-icon {
    width: 50px;
    color: var(--primary-color, #00a8ff);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.req-icon i {
    transition: transform 0.3s ease;
}

.requirements-list li:hover .req-icon i {
    transform: scale(1.2);
}

.req-label {
    width: 120px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.req-value {
    flex: 1;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 500;
}

.requirements-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 168, 255, 0.15);
    border-color: var(--primary-color, #00a8ff);
}

/* Responsive styles */
@media (max-width: 768px) {
    .requirements-card {
        margin-bottom: 30px;
    }

    .requirements-list li {
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }

    .requirements-list li:hover {
        transform: translateX(0);
        padding-left: 0;
    }

    .req-icon {
        width: auto;
        margin-bottom: 10px;
        font-size: 1.5rem;
    }

    .req-label {
        width: auto;
        margin-bottom: 5px;
    }

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

    .requirements-card .card-header h3 {
        font-size: 1.5rem;
    }
}

/* Animation for icons */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.requirements-card:hover .card-header i {
    animation: pulse 2s infinite;
}

/* Plans Hero Section */
.plans-hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(145deg, rgba(13, 18, 26, 0.98), rgba(20, 30, 48, 0.98));
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-bg-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 168, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 168, 255, 0.1) 0%, transparent 50%);
    filter: blur(60px);
    z-index: 0;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-right: 3rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(0, 168, 255, 0.1);
    border: 1px solid rgba(0, 168, 255, 0.3);
    border-radius: 30px;
    color: var(--primary-color, #00a8ff);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.hero-badge i {
    margin-right: 8px;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.hero-title .gradient-text {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(45deg, #fff, var(--primary-color, #00a8ff));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.hero-title .subtitle {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
}

.hero-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.feature-tag i {
    color: var(--primary-color, #00a8ff);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(0, 168, 255, 0.1);
    border-color: var(--primary-color, #00a8ff);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-value .counter {
    background: linear-gradient(45deg, #fff, var(--primary-color, #00a8ff));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.image-wrapper {
    position: relative;
    padding: 2rem;
}

.floating-image {
    width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(0, 168, 255, 0.3));
}

.status-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 16px;
    background: rgba(39, 174, 96, 0.2);
    border: 1px solid rgba(39, 174, 96, 0.3);
    border-radius: 20px;
    color: #2ecc71;
    font-weight: 600;
    font-size: 0.9rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .plans-hero-section {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-content {
        text-align: center;
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .hero-title .gradient-text {
        font-size: 3rem;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-stats {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: 1fr;
        max-width: 300px;
    }

    .hero-title .gradient-text {
        font-size: 2.5rem;
    }

    .hero-title .subtitle {
        font-size: 1.5rem;
    }
}

/* Terms Section */
.terms-section {
    padding: 60px 0 0;
    background: #0d1117;
    position: relative;
    margin-bottom: 0;
}

.terms-section h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.terms-section .text-primary {
    color: #00a8ff !important;
    font-size: 1rem;
}

.terms-box {
    background: rgba(22, 27, 34, 0.8);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.terms-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.terms-header i {
    font-size: 1.5rem;
    margin-right: 15px;
    color: #00a8ff;
}

.terms-header h4 {
    color: #fff;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
}

.terms-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-box li {
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
}

.terms-box li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 6px;
    height: 6px;
    background: #00a8ff;
    border-radius: 50%;
}

/* Responsive */
@media (max-width: 768px) {
    .terms-section {
        padding: 40px 0;
    }

    .terms-box {
        padding: 20px;
        margin-bottom: 20px;
    }

    .terms-header i {
        font-size: 1.2rem;
    }

    .terms-header h4 {
        font-size: 1.1rem;
    }

    .terms-box li {
        font-size: 0.9rem;
    }
}

/* Footer için yeni stil ekleyelim */
.footer {
    margin-top: 0;
    background: #0d1117;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* =========================================
   NEW STYLES FOR PRODUCTS & TABS
   ========================================= */

/* Product Carousel Styles */
.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 320px;
    /* Fixed width for slides to prevent huge cards */
    height: auto;
}

/* Product Card Styles */
.product-card {
    background: rgba(13, 18, 26, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-color, #00a8ff);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 60%;
    /* Aspect ratio */
    overflow: hidden;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

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

.product-title {
    font-size: 1.25rem;
    /* Fixed font size */
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.4;
}

.product-features {
    margin-bottom: 20px;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.product-footer {
    padding: 12px 45px;
    color: #fff;
    transition: all 0.3s ease;
}

.search-box input:focus {
    background: rgba(13, 18, 26, 1);
    border-color: var(--primary-color, #00a8ff);
    box-shadow: 0 0 0 3px rgba(0, 168, 255, 0.1);
    outline: none;
}

.search-box i.fa-search {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
}

.clear-search {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 5px;
}

.clear-search:hover {
    color: #fff;
}

/* System Requirements Fixes */
.system-requirements-section {
    position: relative;
    background: #0d1117;
    color: #fff;
}

.system-requirements-section .section-title {
    color: #fff;
    font-weight: 700;
}

.system-requirements-section .text-muted {
    color: rgba(116, 110, 110, 0.6) !important;
}

.requirement-item {
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.requirement-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.requirement-item .icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 168, 255, 0.1);
    border-radius: 12px;
}

.footer {
    margin-top: 0;
    background: #0d1117;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* =========================================
   NEW STYLES FOR PRODUCTS & TABS
   ========================================= */

/* Product Carousel Styles */
.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 320px;
    /* Fixed width for slides to prevent huge cards */
    height: auto;
}

/* Product Card Styles */
.product-card {
    background: rgba(13, 18, 26, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-color, #00a8ff);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 60%;
    /* Aspect ratio */
    overflow: hidden;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

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

.product-title {
    font-size: 1.25rem;
    /* Fixed font size */
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.4;
}

.product-features {
    margin-bottom: 20px;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.product-footer {
    padding: 12px 45px;
    color: #fff;
    transition: all 0.3s ease;
}

.search-box input:focus {
    background: rgba(13, 18, 26, 1);
    border-color: var(--primary-color, #00a8ff);
    box-shadow: 0 0 0 3px rgba(0, 168, 255, 0.1);
    outline: none;
}

.search-box i.fa-search {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
}

.clear-search {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 5px;
}

.clear-search:hover {
    color: #fff;
}

/* System Requirements Fixes */
.system-requirements-section {
    position: relative;
    background: #0d1117;
    color: #fff;
}

.system-requirements-section .section-title {
    color: #fff;
    font-weight: 700;
}

.system-requirements-section .text-muted {
    color: rgba(116, 110, 110, 0.6) !important;
}

.requirement-item {
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.requirement-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.requirement-item .icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 168, 255, 0.1);
    border-radius: 12px;
}

.requirement-item .icon-box i {
    color: var(--primary-color, #00a8ff);
    text-shadow: 0 0 10px rgba(0, 168, 255, 0.5);
}

.requirements-image i {
    filter: drop-shadow(0 0 30px rgba(0, 168, 255, 0.2));
}

/* Responsive Video Container */
.ratio {
    position: relative;
    width: 100%;
}

.ratio::before {
    display: block;
    padding-top: var(--bs-aspect-ratio);
    content: "";
}

.ratio-16x9 {
    --bs-aspect-ratio: 56.25%;
}

.ratio>* {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}