/* Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Root Variables */
:root {
    --primary-dark: #0F1B1A;
    --secondary-dark: #1A2E2C;
    --accent-green: #2D5A54;
    --highlight-gold: #FFD700;
    --accent-teal: #4ECDC4;
    --text-white: #FFFFFF;
    --text-light: #B8D4D1;
    --card-bg: #2A3F3D;
    --border-color: #3A4F4D;
    --gradient-primary: linear-gradient(135deg, #0F1B1A 0%, #1A2E2C 100%);
    --gradient-accent: linear-gradient(135deg, #4ECDC4 0%, #2D5A54 100%);
    --shadow-primary: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-card: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Icon Styles */
i.fas, i.fab {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

/* Ensure Font Awesome icons are visible */
.fas, .fab {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands";
    font-weight: 900;
}

.fab {
    font-weight: 400;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--gradient-primary);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    background: var(--primary-dark);
    padding: 0.8rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    min-height: 70px;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-white);
    text-decoration: none;
}

/* Header Styles */
.header {
    background: var(--primary-dark);
    padding: 0.8rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    min-height: 70px;
}

.navbar-brand.logo {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar-brand.logo:hover {
    color: var(--accent-teal);
    transform: scale(1.05);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 1.2rem;
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
    transition: all 0.3s ease;
}

.logo-icon:hover {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.5);
}

.navbar-nav .nav-link {
    color: var(--text-white);
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-teal);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-teal);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Offcanvas Mobile Menu */
.offcanvas.mobile-menu-sidebar {
    background: var(--primary-dark);
    width: 350px;
    border-left: 1px solid var(--border-color);
}

.offcanvas-header.mobile-menu-header {
    border-bottom: 1px solid var(--border-color);
    background: var(--secondary-dark);
    padding: 1.5rem;
}

.mobile-logo {
    display: flex;
    align-items: center;
    color: var(--text-white);
    font-size: 1.3rem;
    font-weight: 600;
}

.mobile-logo-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient-accent);
    border-radius: 10px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text-white);
    box-shadow: 0 3px 12px rgba(78, 205, 196, 0.3);
    transition: all 0.3s ease;
}

.mobile-menu-close {
    background: var(--card-bg);
    border: none;
    color: var(--text-white);
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close i {
    font-size: 1rem;
    color: var(--text-white);
}

.mobile-menu-close:hover {
    background: var(--accent-green);
}

.offcanvas-body.mobile-menu-content {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.mobile-nav {
    padding: 1rem 0;
    flex: 1;
}

.navbar-mobile {
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-mobile li {
    margin: 0;
}

.navbar-mobile a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    padding: 1rem 1.5rem;
    display: block;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0.5rem 1rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
}

.navbar-mobile a i {
    font-size: 1rem;
    color: var(--accent-teal);
    margin-right: 0.5rem;
}

.navbar-mobile a:hover {
    background: var(--accent-green);
    color: var(--text-white);
    border-color: var(--accent-teal);
}

.mobile-contact-section {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    flex-shrink: 0;
}

.mobile-contact-section h4 {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-icons-mobile {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-icons-mobile .social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons-mobile .social-icon.whatsapp {
    background: #25D366;
    color: white;
}

.social-icons-mobile .social-icon.telegram {
    background: #0088cc;
    color: white;
}

.social-icons-mobile .social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
}

.social-icons-mobile .social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.mobile-buttons {
    padding: 0 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-mobile {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-mobile i {
    font-size: 1rem;
    margin-right: 0.5rem;
}

.btn-mobile.btn-sorgula {
    background: var(--gradient-accent);
    color: var(--text-white);
}

.btn-mobile.btn-sorgula:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: var(--text-white);
}

.btn-mobile.btn-panel {
    background: var(--highlight-gold);
    color: var(--primary-dark);
}

.btn-mobile.btn-panel:hover {
    background: #FFED4E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: var(--primary-dark);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.social-icons {
    display: flex;
    gap: 0.4rem;
}

.social-icon {
    width: 28px;
    height: 28px;
    background: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.social-icon:hover {
    background: var(--accent-teal);
    transform: translateY(-2px);
}

.header-buttons {
    display: flex;
    gap: 0.5rem;
}

.btn-header {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    white-space: nowrap;
}

.btn-sorgula {
    background: var(--card-bg);
    color: var(--text-white);
    border: 1px solid var(--border-color);
}

.btn-sorgula:hover {
    background: var(--accent-green);
    color: var(--text-white);
}

.btn-panel {
    background: var(--highlight-gold);
    color: var(--primary-dark);
}

.btn-panel:hover {
    background: #FFED4E;
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 80px 0 60px;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hero-grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="%234ECDC4" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-grid)"/></svg>');
    animation: heroGridMove 20s linear infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.1) 0%, transparent 70%);
    animation: heroPulse 8s ease-in-out infinite;
}

@keyframes heroGridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

@keyframes heroPulse {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.3; }
    50% { transform: scale(1.1) rotate(180deg); opacity: 0.1; }
}

.hero .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-subtitle {
    color: var(--accent-teal);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    text-shadow: 0 4px 20px rgba(78, 205, 196, 0.3);
}

.hero-title .highlight {
    color: var(--highlight-gold);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--text-white);
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
    font-size: 1.1rem;
}

.btn-primary i {
    font-size: 1rem;
    color: var(--text-white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary);
    color: var(--text-white);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    padding: 1.2rem 2.5rem;
    border: 2px solid var(--border-color);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-secondary i {
    font-size: 1rem;
    color: var(--text-white);
}

.btn-secondary:hover {
    background: var(--accent-green);
    border-color: var(--accent-teal);
    color: var(--text-white);
    transform: translateY(-3px);
}

/* Casino Software Section */
.casino-software-section {
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.casino-software-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="casino-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%234ECDC4" stroke-width="0.2" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23casino-grid)"/></svg>');
    opacity: 0.3;
}

.discount-badge {
    background: var(--gradient-accent);
    color: var(--text-white);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.casino-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
    position: relative;
}

.casino-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.casino-subtitle {
    color: var(--text-light);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0;
}

/* Server Status Card */
.server-status-card {
    background: var(--card-bg);
    border-radius: 25px;
    padding: 2.5rem;
    position: relative;
    border: 2px solid var(--border-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.server-status-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-teal);
}

.server-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.server-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.server-logo {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-white);
}

.server-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
}

.server-status-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-green);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--text-white);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.server-content {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.server-icon {
    font-size: 4rem;
    color: var(--accent-teal);
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.server-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.server-desc {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.server-details {
    margin-bottom: 2.5rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
}

.detail-value {
    font-size: 1.2rem;
    font-weight: 700;
}

.detail-value.active {
    color: var(--accent-green);
}

.detail-value.users {
    color: var(--highlight-gold);
}

.btn-server-purchase {
    background: var(--highlight-gold);
    color: var(--primary-dark);
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    margin-top: auto;
}

.btn-server-purchase:hover {
    background: #FFED4E;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.btn-server-purchase i {
    font-size: 1rem;
    color: var(--primary-dark);
}

.packages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="packages-grid" width="15" height="15" patternUnits="userSpaceOnUse"><path d="M 15 0 L 0 0 0 15" fill="none" stroke="%233A4F4D" stroke-width="0.3" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23packages-grid)"/></svg>');
    opacity: 0.1;
}

.packages-subtitle {
    color: var(--accent-teal);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.packages-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0;
    position: relative;
}

.packages-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

/* Package Cards */
.package-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 20px 20px 0 0;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-teal);
}

.package-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-green);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.package-image {
    text-align: center;
    margin: 2rem 0 1.5rem;
    position: relative;
}

.package-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.package-content {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-usage {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.package-name {
    color: var(--text-white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.package-pricing {
    margin-bottom: 1.5rem;
}

.original-price {
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 1.1rem;
    margin-right: 0.5rem;
}

.discount-price {
    color: var(--highlight-gold);
    font-size: 2rem;
    font-weight: 800;
}

.package-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.stars {
    display: flex;
    gap: 0.2rem;
}

.stars i {
    color: var(--highlight-gold);
    font-size: 1.1rem;
}

.rating-text {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-purchase {
    background: var(--highlight-gold);
    color: var(--primary-dark);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-purchase:hover {
    background: #FFED4E;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.btn-purchase i {
    font-size: 1rem;
    color: var(--primary-dark);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

/* Section title çizgisi kaldırıldı */

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.section-title i {
    font-size: 2rem;
    color: var(--accent-teal);
    margin-right: 0.5rem;
}

/* Section title çizgisi kaldırıldı */

.server-status {
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--card-bg);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    border: 1px solid var(--border-color);
}

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

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.software-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.software-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.software-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

.software-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-primary);
    border-color: var(--accent-teal);
}

.software-showcase {
    position: relative;
    z-index: 10;
}

/* Vertical Software Cards */
.software-cards-vertical {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: stretch;
}

.software-card-vertical {
    background: rgba(42, 63, 61, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 200px;
    width: 120px;
}

.software-card-vertical:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-teal);
}

.software-icon-vertical {
    width: 80px;
    height: 120px;
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.software-icon-img-vertical {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
    border-radius: 15px;
}

.software-card-vertical:hover .software-icon-img-vertical {
    transform: scale(1.05);
}

.software-name-vertical {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
    line-height: 1.2;
}

.software-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.software-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-grid" width="30" height="30" patternUnits="userSpaceOnUse"><path d="M 30 0 L 0 0 0 30" fill="none" stroke="%234ECDC4" stroke-width="0.1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-grid)"/></svg>');
    opacity: 0.2;
}

/* Contact Section */
.contact-section {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.contact-header {
    margin-bottom: 3rem;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(78, 205, 196, 0.5);
    position: relative;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.contact-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
    margin: 0;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(42, 63, 61, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 20px 20px 0 0;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-teal);
}

.card-title {
    color: var(--text-white);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-icon.whatsapp {
    background: #25D366;
    color: white;
}

.contact-icon.telegram {
    background: #0088cc;
    color: white;
}

.contact-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
}

.contact-text {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 500;
}

.working-hours {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.hours-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.02);
}

.days {
    color: var(--text-white);
    font-weight: 500;
}

.time {
    color: var(--highlight-gold);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Footer Brand Section */
.footer-brand-section {
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--border-color);
    padding-top: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-white);
}

.footer-brand-text h3 {
    color: var(--text-white);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-brand-text p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.footer-social .social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social .social-icon.whatsapp {
    background: #25D366;
    color: white;
}

.footer-social .social-icon.telegram {
    background: #0088cc;
    color: white;
}

.footer-social .social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
}

.footer-social .social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Software Selection Section */
.software-selection-section {
    padding: 6rem 0 4rem;
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.software-selection-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="software-grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="%234ECDC4" stroke-width="0.1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23software-grid)"/></svg>');
    opacity: 0.3;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(78, 205, 196, 0.5);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
    margin: 0;
}

.software-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.software-selection-card {
    background: rgba(42, 63, 61, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.software-selection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 20px 20px 0 0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.software-selection-card:hover::before {
    transform: scaleX(1);
}

.software-selection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-teal);
}

.software-selection-card.active {
    border-color: var(--accent-teal);
    background: rgba(78, 205, 196, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(78, 205, 196, 0.2);
}

.software-selection-card.active::before {
    transform: scaleX(1);
}

.software-icon {
    margin: 0 auto 1.5rem;
    text-align: center;
}

.software-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-teal);
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

.software-selection-card:hover .software-image {
    transform: scale(1.1);
    border-color: var(--text-white);
}

.software-info {
    margin-bottom: 1rem;
}

.software-name {
    color: var(--text-white);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.software-type {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

.selection-indicator {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 30px;
    height: 30px;
    background: var(--accent-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.software-selection-card.active .selection-indicator {
    opacity: 1;
    transform: scale(1);
}

.selection-indicator i {
    color: var(--text-white);
    font-size: 0.8rem;
}

/* Packages Section for Software Page */
.packages-section {
    padding: 4rem 0 6rem;
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.packages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="packages-grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="%234ECDC4" stroke-width="0.1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23packages-grid)"/></svg>');
    opacity: 0.2;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Updates Modal */
.updates-modal {
    background: var(--primary-dark);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.updates-header {
    background: transparent;
    border-bottom: 1px solid var(--border-color);
    padding: 2rem 2rem 1rem;
    position: relative;
}

.updates-title-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.updates-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-white);
}

.updates-title-text h2 {
    color: var(--text-white);
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.updates-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0.5rem 0 0 0;
}

.updates-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.updates-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.updates-body {
    padding: 1rem 2rem 2rem;
    max-height: 70vh;
    overflow-y: auto;
}

.updates-body::-webkit-scrollbar {
    width: 8px;
}

.updates-body::-webkit-scrollbar-track {
    background: var(--primary-dark);
    border-radius: 4px;
}

.updates-body::-webkit-scrollbar-thumb {
    background: var(--gradient-accent);
    border-radius: 4px;
}

.updates-body::-webkit-scrollbar-thumb:hover {
    background: var(--accent-teal);
}

.updates-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.update-card {
    background: rgba(42, 63, 61, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.update-card:hover {
    border-color: var(--accent-teal);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.update-card.latest {
    border-color: var(--accent-teal);
    background: rgba(78, 205, 196, 0.1);
}

.latest-badge {
    position: absolute;
    top: -8px;
    right: 1rem;
    background: var(--highlight-gold);
    color: var(--primary-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.update-content {
    position: relative;
}

.update-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.version-badge {
    background: var(--accent-teal);
    color: var(--text-white);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.update-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-teal);
    font-size: 0.9rem;
    font-weight: 500;
}

.update-status i {
    font-size: 0.8rem;
}

.update-title {
    color: var(--text-white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.update-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.update-changes {
    list-style: none;
    padding: 0;
    margin: 0;
}

.update-changes li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.update-changes li i {
    color: var(--accent-teal);
    font-size: 0.8rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Modal Backdrop */
.modal-backdrop {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

/* Order Inquiry Section */
.order-inquiry-section {
    padding: 6rem 0;
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.order-inquiry-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="inquiry-grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="%234ECDC4" stroke-width="0.1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23inquiry-grid)"/></svg>');
    opacity: 0.2;
}

.order-inquiry-card {
    background: rgba(42, 63, 61, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    padding: 3rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.order-inquiry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 25px 25px 0 0;
}

.inquiry-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.inquiry-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--text-white);
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.3);
}

.inquiry-title {
    color: var(--text-white);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(78, 205, 196, 0.5);
}

.inquiry-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin: 0;
}

.inquiry-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: block;
}

.input-group {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 1.1rem;
    z-index: 3;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 1rem 1rem 1rem 3rem;
    color: var(--text-white);
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-teal);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(78, 205, 196, 0.2);
}

.form-control::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.form-help {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    opacity: 0.8;
}

.btn-inquiry {
    background: var(--gradient-accent);
    border: none;
    border-radius: 15px;
    padding: 1rem 2rem;
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    box-shadow: 0 10px 25px rgba(78, 205, 196, 0.3);
}

.btn-inquiry:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(78, 205, 196, 0.4);
}

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

.info-card {
    background: rgba(42, 63, 61, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.info-title {
    color: var(--text-white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.info-list li i {
    color: var(--accent-teal);
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.support-title {
    color: var(--text-white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.support-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.support-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 140px;
    justify-content: center;
}

.support-btn.whatsapp {
    background: #25D366;
    color: white;
}

.support-btn.telegram {
    background: #0088cc;
    color: white;
}

.support-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
}

.support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: white;
}

/* Order Result Modal */
.order-result-modal {
    background: var(--primary-dark);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.order-result-modal .modal-header {
    background: transparent;
    border-bottom: 1px solid var(--border-color);
    padding: 2rem 2rem 1rem;
    position: relative;
}

.result-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--text-white);
    margin: 0 auto;
}

.order-result-modal .btn-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    color: var(--text-white);
    font-size: 1rem;
}

.order-result-modal .modal-body {
    padding: 1rem 2rem 2rem;
}

.result-title {
    color: var(--text-white);
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
}

.order-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--border-color);
}

.info-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.info-label {
    color: var(--text-light);
    font-weight: 500;
}

.info-value {
    color: var(--text-white);
    font-weight: 600;
}

.status-active {
    color: var(--accent-teal) !important;
    background: rgba(78, 205, 196, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

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

.result-message p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

.order-result-modal .modal-footer {
    background: transparent;
    border-top: 1px solid var(--border-color);
    padding: 1rem 2rem;
}

.btn-close-modal {
    background: var(--accent-teal);
    border: none;
    border-radius: 10px;
    padding: 0.8rem 2rem;
    color: var(--text-white);
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-close-modal:hover {
    background: var(--accent-teal);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .software-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 70px 0 50px;
        min-height: 80vh;
        display: flex;
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .software-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom .row {
        text-align: center;
    }
    
    .footer-bottom .col-md-6:last-child {
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 60px 0 40px;
        min-height: 70vh;
        display: flex;
        align-items: center;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .software-card {
        padding: 1.2rem;
    }
    
    .software-cards-vertical {
        gap: 1.2rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .software-card-vertical {
        width: 110px;
        padding: 1.2rem 1rem;
        min-height: 170px;
    }
    
    .software-icon-vertical {
        width: 70px;
        height: 100px;
        margin-bottom: 0.8rem;
    }
    
    .software-name {
        font-size: 1rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .feature-card h4 {
        font-size: 1rem;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-section p {
        font-size: 0.95rem;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
        margin-right: 10px;
    }
    
    .btn-header {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .social-icon {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .testimonial-card {
        padding: 1.2rem;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .mobile-menu-sidebar {
        width: 100%;
        right: -100%;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Features Section */
.features-section {
    background: var(--secondary-dark);
}

.feature-card {
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    border-color: var(--accent-teal);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    color: var(--text-white);
}

.feature-card h4 {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--primary-dark);
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    border-color: var(--accent-teal);
}

.testimonial-content p {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author strong {
    color: var(--accent-teal);
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%233A4F4D" stroke-width="0.5" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-grid)"/></svg>');
    opacity: 0.1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    color: var(--text-white);
    font-weight: 700;
    font-size: 2.5rem;
}

.cta-section p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-green);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-teal);
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: var(--shadow-primary);
    animation: slideInRight 0.3s ease-out;
}

.notification-content {
    display: flex;
    align-items: center;
    padding: 1rem;
    gap: 0.5rem;
}

.notification-success {
    background: #4CAF50;
    color: white;
}

.notification-error {
    background: #f44336;
    color: white;
}

.notification-info {
    background: var(--accent-teal);
    color: white;
}

.notification-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: auto;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Loading Animation kaldırıldı */

/* Lazy Loading */
img.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

img.lazy.loaded {
    opacity: 1;
}


/* Form Validation */
.is-invalid {
    border-color: #f44336 !important;
    box-shadow: 0 0 0 0.2rem rgba(244, 67, 54, 0.25) !important;
}

/* Counter Animation */
.counter {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-teal);
}

/* Parallax Effect - REMOVED (causing bugs) */
/* .hero {
    will-change: transform;
} */

/* Packages Section Responsive */
@media (max-width: 768px) {
    .packages-title {
        font-size: 2.2rem;
    }
    
    .package-card {
        padding: 1.5rem;
    }
    
    .package-image img {
        max-width: 300px;
    }
    
    .package-name {
        font-size: 1.3rem;
    }
    
    .discount-price {
        font-size: 1.6rem;
    }
    
    .btn-purchase {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .package-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    background: var(--secondary-dark);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="testimonials-grid" width="25" height="25" patternUnits="userSpaceOnUse"><path d="M 25 0 L 0 0 0 25" fill="none" stroke="%234ECDC4" stroke-width="0.1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23testimonials-grid)"/></svg>');
    opacity: 0.2;
}

.testimonials-subtitle {
    color: var(--accent-teal);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonials-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0;
    position: relative;
}

.testimonials-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.testimonials-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(78, 205, 196, 0.1);
    border: 2px solid var(--accent-teal);
    color: var(--accent-teal);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--accent-teal);
    color: var(--text-white);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: -80px;
}

.next-btn {
    right: -80px;
}

.testimonial-card {
    background: rgba(42, 63, 61, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
    position: absolute;
    width: 100%;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

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

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-white);
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent-teal);
    position: absolute;
    top: -20px;
    left: -20px;
    font-family: serif;
}

.testimonial-text::after {
    content: '"';
    font-size: 4rem;
    color: var(--accent-teal);
    position: absolute;
    bottom: -40px;
    right: -20px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    flex-shrink: 0;
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.author-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stars {
    display: flex;
    gap: 0.2rem;
}

.stars i {
    color: var(--highlight-gold);
    font-size: 1rem;
}

.verified-badge {
    background: var(--accent-green);
    color: var(--text-white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}


.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 2rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--highlight-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 0 2px 2px 0;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-teal);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-white);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.feature-desc {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Casino Section Responsive */
@media (max-width: 768px) {
    .casino-title {
        font-size: 2.5rem;
    }
    
    .casino-subtitle {
        font-size: 1.1rem;
    }
    
    .server-status-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .server-title {
        font-size: 1.8rem;
    }
    
    .server-icon {
        font-size: 3rem;
    }
    
    .feature-item {
        padding: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
    
    .feature-desc {
        font-size: 0.9rem;
    }
    
    /* Testimonials Responsive */
    .testimonials-title {
        font-size: 2.2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonial-text::before,
    .testimonial-text::after {
        font-size: 3rem;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .author-name {
        font-size: 1.1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .prev-btn {
        left: -60px;
    }
    
    .next-btn {
        right: -60px;
    }
    
    .testimonials-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .footer-logo {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .footer-brand-text h3 {
        font-size: 1.5rem;
    }
    
    .footer-social .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    /* Footer Contact Responsive */
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .contact-item {
        padding: 0.6rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .contact-text {
        font-size: 0.9rem;
    }
    
    .hours-item {
        padding: 0.8rem;
    }
    
    .days {
        font-size: 0.9rem;
    }
    
    .time {
        font-size: 1rem;
    }
    
    .footer-logo {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .footer-brand-text h3 {
        font-size: 1.5rem;
    }
    
    /* Software Selection Responsive */
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .software-selection-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
    }
    
    .software-selection-card {
        padding: 1.5rem;
    }
    
    .software-icon {
        margin: 0 auto 1rem;
        text-align: center;
    }
    
    .software-image {
        width: 60px;
        height: 60px;
        display: block;
        margin: 0 auto;
    }
    
    .software-cards-vertical {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
        justify-items: center;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .software-card-vertical {
        width: 85px;
        padding: 0.8rem 0.5rem;
        min-height: 140px;
    }
    
    .software-icon-vertical {
        width: 55px;
        height: 70px;
        margin-bottom: 0.5rem;
    }
    
    .software-name-vertical {
        font-size: 0.8rem;
        line-height: 1.1;
    }
    
    .software-name {
        font-size: 1.2rem;
    }
    
    .software-type {
        font-size: 0.9rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 350px;
    }
    
    /* Updates Modal Responsive */
    .updates-modal {
        margin: 1rem;
        max-width: calc(100vw - 2rem);
    }
    
    .updates-header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .updates-title-section {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .updates-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .updates-title-text h2 {
        font-size: 1.5rem;
    }
    
    .updates-subtitle {
        font-size: 0.9rem;
    }
    
    .updates-close {
        top: 1rem;
        right: 1rem;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .updates-body {
        padding: 1rem;
        max-height: 60vh;
    }
    
    .update-card {
        padding: 1rem;
    }
    
    .update-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .update-status {
        align-self: flex-end;
    }
    
    .update-title {
        font-size: 1rem;
    }
    
    .update-changes li {
        font-size: 0.8rem;
    }
    
    /* Order Inquiry Responsive */
    .order-inquiry-section {
        padding: 4rem 0;
        min-height: auto;
    }
    
    .order-inquiry-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
        margin-top: 3rem;
    }
    
    .inquiry-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .inquiry-title {
        font-size: 2rem;
    }
    
    .inquiry-subtitle {
        font-size: 1rem;
    }
    
    .inquiry-form {
        max-width: 100%;
    }
    
    .form-control {
        padding: 0.8rem 0.8rem 0.8rem 2.5rem;
        font-size: 0.9rem;
    }
    
    .btn-inquiry {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .info-title {
        font-size: 1.3rem;
    }
    
    .info-list li {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .support-links {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .support-btn {
        min-width: auto;
        width: 100%;
        justify-content: center;
    }
    
    /* Order Result Modal Responsive */
    .order-result-modal .modal-header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .result-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .order-result-modal .btn-close {
        top: 1rem;
        right: 1rem;
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .order-result-modal .modal-body {
        padding: 1rem;
    }
    
    .result-title {
        font-size: 1.3rem;
    }
    
    .order-info {
        padding: 1rem;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
        padding-bottom: 0.6rem;
    }
    
    .order-result-modal .modal-footer {
        padding: 1rem;
    }
}

/* Panel Login Section */
.panel-login-section {
    padding: 6rem 0;
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.panel-login-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="panel-grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="%234ECDC4" stroke-width="0.1" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23panel-grid)"/></svg>');
    opacity: 0.3;
}

.panel-login-card {
    background: rgba(42, 63, 61, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    padding: 3rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.panel-login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 25px 25px 0 0;
}

.panel-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.back-button {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background: var(--accent-teal);
    border: none;
    border-radius: 10px;
    color: var(--text-white);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-button:hover {
    background: var(--text-white);
    color: var(--accent-teal);
    transform: scale(1.1);
}

.panel-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--text-white);
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.3);
}

.panel-title {
    color: var(--text-white);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(78, 205, 196, 0.5);
}

.panel-title .brand-name {
    color: var(--accent-teal);
}

.panel-title .brand-suffix {
    color: var(--highlight-gold);
}

.panel-subtitle {
    color: var(--highlight-gold);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.panel-description {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

.software-selection {
    margin-bottom: 2rem;
}

.software-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.software-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-teal);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.software-card:last-child {
    margin-bottom: 0;
}



.software-info {
    flex: 1;
}

.software-title {
    color: var(--accent-teal);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.software-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.software-arrow {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-left: 1rem;
}

.software-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    gap: 1rem;
}

.software-btn-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-white);
}

.software-btn-text {
    color: var(--text-white);
    font-size: 1.2rem;
    font-weight: 600;
}

.login-form {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: block;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 1rem;
    color: var(--text-white);
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    padding-right: 3rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-teal);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(78, 205, 196, 0.2);
}

.form-control::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.toggle-password {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.toggle-password:hover {
    color: var(--accent-teal);
}

.btn-login {
    background: var(--gradient-accent);
    border: none;
    border-radius: 15px;
    padding: 1rem 2rem;
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    box-shadow: 0 10px 25px rgba(78, 205, 196, 0.3);
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(78, 205, 196, 0.4);
}

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

.support-section,
.panel-info {
    text-align: center;
    margin-bottom: 1.5rem;
}

.support-question {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.support-link {
    color: var(--accent-teal);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.support-link:hover {
    color: var(--highlight-gold);
    text-decoration: underline;
}

.version-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.version-label {
    color: var(--accent-teal);
    font-size: 0.9rem;
}

.version-info i {
    color: var(--highlight-gold);
    font-size: 0.9rem;
}

.version-text {
    color: var(--highlight-gold);
    font-size: 0.9rem;
    font-weight: 600;
}

.panel-footer {
    text-align: center;
    color: var(--text-light);
    font-size: 0.8rem;
}

.datetime-info {
    margin-bottom: 0.5rem;
}

.panel-version {
    opacity: 0.7;
}

/* Panel Login Responsive */
@media (max-width: 768px) {
    .panel-login-section {
        padding: 4rem 0;
        min-height: auto;
    }
    
    .panel-login-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .panel-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .panel-title {
        font-size: 2rem;
    }
    
    .panel-subtitle {
        font-size: 1rem;
    }
    
    .panel-description {
        font-size: 0.9rem;
    }
    
    .software-card {
        padding: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .software-title {
        font-size: 1rem;
    }
    
    .software-desc {
        font-size: 0.8rem;
    }
    
    .software-button {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .software-btn-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .software-btn-text {
        font-size: 1rem;
    }
    
    .form-control {
        padding: 0.8rem;
        padding-right: 2.5rem;
        font-size: 0.9rem;
    }
    
    .btn-login {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .version-info {
        flex-direction: column;
        gap: 0.3rem;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border: none;
    border-radius: 50%;
    color: var(--text-white);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.5);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top i {
    display: block;
    line-height: 1;
}

/* Mobile Back to Top Button */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Purchase Modal Styles */
.purchase-modal {
    background: var(--bg-dark);
    border: 1px solid var(--accent-teal);
    border-radius: 15px;
    color: var(--text-white);
}

/* Modal backdrop opacity */
.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.95) !important;
}

.modal-backdrop.show {
    opacity: 0.95 !important;
}

/* Modal kapatıldığında backdrop'ı tamamen kaldır */
.modal-backdrop.fade {
    opacity: 0 !important;
}

.modal-backdrop.fade.show {
    opacity: 0.95 !important;
}

/* Modal kapatıldıktan sonra backdrop'ı temizle */
body.modal-open {
    overflow: hidden;
}

body:not(.modal-open) .modal-backdrop {
    display: none !important;
}

/* Modal kapatıldıktan sonra scroll'u geri getir */
body.modal-closed {
    overflow: auto !important;
    padding-right: 0 !important;
}

.purchase-header {
    background: var(--gradient-accent);
    border-bottom: 1px solid var(--accent-teal);
    border-radius: 15px 15px 0 0;
    padding: 1.5rem;
}

.purchase-title {
    color: var(--text-white);
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.purchase-title i {
    font-size: 1.2rem;
}

.purchase-body {
    padding: 2rem;
    background: var(--bg-dark);
}

.product-info-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 10px;
    margin-bottom: 2rem;
    border: 1px solid rgba(78, 205, 196, 0.2);
}

.product-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.product-details {
    flex: 1;
}

.product-details h4 {
    color: var(--text-white);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.product-details p {
    color: var(--accent-teal);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

.product-pricing {
    text-align: right;
    flex-shrink: 0;
}

.product-pricing .original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.product-pricing .discount-price {
    color: var(--accent-yellow);
    font-size: 1.4rem;
    font-weight: 700;
}

.form-section {
    margin-bottom: 2rem;
}

.form-title {
    color: var(--text-white);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    color: var(--text-white);
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.form-control, .form-select {
    background: rgba(78, 205, 196, 0.1);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 8px;
    color: var(--text-white);
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    background: rgba(78, 205, 196, 0.15);
    border-color: var(--accent-teal);
    box-shadow: 0 0 0 0.2rem rgba(78, 205, 196, 0.25);
    color: var(--text-white);
}

.form-control::placeholder {
    color: #999;
}

.price-summary {
    background: rgba(78, 205, 196, 0.1);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
}

.price-title {
    color: var(--text-white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(78, 205, 196, 0.1);
}

.price-item:last-child {
    border-bottom: none;
}

.price-item.total {
    border-top: 2px solid var(--accent-teal);
    margin-top: 0.5rem;
    padding-top: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.price-label {
    color: var(--text-white);
}

.price-value {
    color: var(--accent-yellow);
    font-weight: 600;
}

.purchase-footer {
    background: var(--bg-dark);
    border-top: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 0 0 15px 15px;
    padding: 1.5rem;
}

.btn-purchase {
    background: var(--gradient-accent);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-purchase:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.4);
}

/* Mobile Purchase Modal */
@media (max-width: 768px) {
    .purchase-body {
        padding: 1.5rem;
    }
    
    .product-info-section {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .product-pricing {
        text-align: center;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .price-summary {
        padding: 1rem;
    }
}

/* Payment Info Page Styles */
.payment-info-section {
    background: var(--bg-dark);
    min-height: 100vh;
    padding: 2rem 0;
}

.payment-info-card {
    background: var(--bg-dark);
    border: 1px solid var(--accent-teal);
    border-radius: 15px;
    padding: 2rem;
    color: var(--text-white);
}

.payment-header {
    text-align: center;
    margin-bottom: 2rem;
}

.payment-title {
    color: var(--text-white);
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.order-summary-card, .payment-details-card, .next-steps-card {
    background: rgba(78, 205, 196, 0.1);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.card-title {
    color: var(--accent-teal);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.order-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(78, 205, 196, 0.1);
}

.order-item:last-child {
    border-bottom: none;
}

.order-item.total {
    border-top: 2px solid var(--accent-teal);
    margin-top: 0.5rem;
    padding-top: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.order-label {
    color: var(--text-white);
}

.order-value {
    color: var(--accent-yellow);
    font-weight: 600;
}

.order-value.original-price {
    text-decoration: line-through;
    color: #999;
}

.order-value.total-price {
    color: var(--accent-yellow);
    font-size: 1.2rem;
}

.payment-method-section {
    margin-bottom: 1.5rem;
}

.section-title {
    color: var(--text-white);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.payment-methods {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.payment-method-card {
    flex: 1;
    min-width: 200px;
    background: rgba(78, 205, 196, 0.1);
    border: 2px solid rgba(78, 205, 196, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.payment-method-card:hover {
    border-color: var(--accent-teal);
    background: rgba(78, 205, 196, 0.15);
}

.payment-method-card.selected {
    border-color: var(--accent-teal);
    background: rgba(78, 205, 196, 0.2);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-white);
}

.method-info {
    flex: 1;
}

.method-info h4 {
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.3rem 0;
}

.method-info p {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
}

.method-radio {
    position: relative;
}

.method-radio input[type="radio"] {
    opacity: 0;
    position: absolute;
}

.method-radio label {
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-teal);
    border-radius: 50%;
    display: block;
    cursor: pointer;
    position: relative;
}

.method-radio input[type="radio"]:checked + label::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--accent-teal);
    border-radius: 50%;
}

.payment-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(78, 205, 196, 0.2);
}

.info-label {
    color: var(--text-white);
    font-weight: 600;
    min-width: 150px;
}

.info-value {
    color: var(--accent-yellow);
    font-weight: 600;
    flex: 1;
    word-break: break-all;
}

.reference-number {
    color: var(--accent-teal) !important;
    font-size: 1.1rem;
    font-weight: 700;
}

.copy-btn {
    background: var(--gradient-accent);
    border: none;
    border-radius: 6px;
    color: var(--text-white);
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(78, 205, 196, 0.4);
}

.payment-warning {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.payment-warning i {
    color: #ffc107;
    font-size: 1.2rem;
}

.payment-warning p {
    color: #ffc107;
    margin: 0;
    font-weight: 500;
}

.crypto-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.crypto-method {
    background: rgba(78, 205, 196, 0.1);
    border: 2px solid rgba(78, 205, 196, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.crypto-method:hover {
    border-color: var(--accent-teal);
    background: rgba(78, 205, 196, 0.15);
}

.crypto-method.selected {
    border-color: var(--accent-teal);
    background: rgba(78, 205, 196, 0.2);
}

.crypto-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-white);
}

.crypto-info {
    flex: 1;
}

.crypto-info h4 {
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.3rem 0;
}

.crypto-address {
    color: var(--accent-yellow);
    font-family: monospace;
    font-size: 0.9rem;
    word-break: break-all;
    margin: 0;
}

.crypto-amount {
    background: rgba(78, 205, 196, 0.1);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.amount-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.amount-label {
    color: var(--text-white);
    font-weight: 600;
}

.amount-value {
    color: var(--accent-yellow);
    font-size: 1.2rem;
    font-weight: 700;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(78, 205, 196, 0.2);
}

.step-number {
    width: 30px;
    height: 30px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-text {
    color: var(--text-white);
    font-weight: 500;
}

.payment-action {
    text-align: center;
    margin-top: 2rem;
}

.btn-payment-done {
    background: var(--gradient-accent);
    border: none;
    border-radius: 10px;
    color: var(--text-white);
    font-size: 1.2rem;
    font-weight: 700;
    padding: 1rem 3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-payment-done:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
}

/* Mobile Payment Info */
@media (max-width: 768px) {
    .payment-info-card {
        padding: 1.5rem;
    }
    
    .payment-methods {
        flex-direction: column;
    }
    
    .payment-method-card {
        min-width: auto;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .info-label {
        min-width: auto;
    }
    
    .crypto-method {
        flex-direction: column;
        text-align: center;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}
