.status-text .online {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.status-text .online::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
    animation: statusPulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
}

@keyframes statusPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
}

/* Free Trial Button Styles */
.free-trial-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3) !important;
}

.free-trial-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4) !important;
    transform: translateY(-3px);
}

.free-trial-btn i {
    margin-left: 8px;
}

/* Error Message Styles */
.error-message {
    background: #fee;
    border: 1px solid #fcc;
    color: #c33;
    padding: 12px;
    border-radius: 8px;
    margin: 15px 0;
    font-size: 14px;
    text-align: center;
}

/* Success Message Styles */
.success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 12px;
    border-radius: 8px;
    margin: 15px 0;
    font-size: 14px;
    text-align: center;
    animation: slideInDown 0.3s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Form Group Enhancements */
.form-group small {
    display: block;
    margin-top: 5px;
}

/* Verification Code Input */
#verificationCode {
    font-family: 'Courier New', monospace;
    font-weight: bold;
}

/* Modal Steps Animation */
#freeTrialStep1, #freeTrialStep2, #freeTrialStep3 {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Success Screen Styles */
#freeTrialStep3 .fa-check-circle {
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Video Modal Styles - Glass Morphism Enhanced */
.video-modal-content {
    max-width: 900px;
    background: rgba(26, 26, 46, 0.95) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border: 1px solid rgba(45, 150, 135, 0.3) !important;
    box-shadow: 
        0 25px 80px rgba(45, 150, 135, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.video-modal-content h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.video-modal-content h2 i {
    background: linear-gradient(135deg, #2d9687 0%, #3db89e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 32px;
    filter: drop-shadow(0 2px 8px rgba(45, 150, 135, 0.4));
}

.video-container {
    margin: 20px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(45, 150, 135, 0.2);
    border: 1px solid rgba(45, 150, 135, 0.2);
}

.video-container iframe {
    border-radius: 16px;
}

/* YouTube Redirect Popup Styles - Glass Morphism */
.youtube-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10001;
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: fadeIn 0.3s ease-out;
}

.youtube-popup.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.youtube-popup-content {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: popupSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.youtube-popup-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        transparent 100%);
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.youtube-popup-icon {
    font-size: 72px;
    background: linear-gradient(135deg, #2d9687 0%, #3db89e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 12px rgba(45, 150, 135, 0.4));
    animation: iconFloat 2s ease-in-out infinite;
}

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

.youtube-popup-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.youtube-popup-message {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    line-height: 1.6;
}

.youtube-popup-buttons {
    display: flex;
    gap: 12px;
    flex-direction: column;
}

.youtube-popup-btn {
    padding: 16px 28px;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.youtube-popup-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.youtube-popup-btn:active::before {
    width: 300px;
    height: 300px;
}

.youtube-popup-btn i {
    font-size: 18px;
    position: relative;
    z-index: 1;
}

.youtube-popup-btn span {
    position: relative;
    z-index: 1;
}

.youtube-popup-btn-primary {
    background: linear-gradient(135deg, #2d9687 0%, #3db89e 100%);
    color: #fff;
    box-shadow: 
        0 8px 24px rgba(45, 150, 135, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.youtube-popup-btn-primary:hover {
    background: linear-gradient(135deg, #37a592 0%, #4ac9ad 100%);
    box-shadow: 
        0 12px 32px rgba(45, 150, 135, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.youtube-popup-btn-primary:active {
    transform: translateY(0);
}

.youtube-popup-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.youtube-popup-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.youtube-popup-btn-secondary:active {
    transform: translateY(0);
}

/* Android Performans Optimizasyonları */
@media only screen and (max-width: 768px) {
    /* GPU hızlandırma için transform kullan - ancak preloader hariç */
    body > *:not(#preloader) {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    /* Animasyonları optimize et - modal display'i koruyarak */
    .video-container,
    iframe {
        will-change: auto;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    
    /* Gölgeleri basitleştir */
    .video-container {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    
    /* Video container mobil optimizasyonu */
    .video-modal-content {
        max-width: 95%;
        margin: 10px auto;
        padding: 30px 20px !important;
        border-radius: 20px !important;
    }
    
    .video-modal-content h2 {
        font-size: 22px !important;
        margin-bottom: 20px !important;
    }
    
    .video-modal-content h2 i {
        font-size: 26px !important;
    }
    
    .video-container {
        border-radius: 12px !important;
        margin: 15px 0 !important;
    }
    
    /* Scroll performansını artır */
    body {
        -webkit-overflow-scrolling: touch;
        overflow-scrolling: touch;
    }
    
    .youtube-popup-content {
        max-width: 92%;
        padding: 32px 24px;
        border-radius: 20px;
    }
    
    .youtube-popup-icon {
        font-size: 64px;
        margin-bottom: 20px;
    }
    
    .youtube-popup-title {
        font-size: 21px;
        margin-bottom: 10px;
    }
    
    .youtube-popup-message {
        font-size: 14px;
        margin-bottom: 28px;
    }
    
    .youtube-popup-btn {
        padding: 15px 24px;
        font-size: 15px;
    }
    
    .youtube-popup-btn i {
        font-size: 16px;
    }
}
}

/* Tüm animasyonları devre dışı bırakma seçeneği (düşük performanslı cihazlar için) */
@media (prefers-reduced-motion: reduce) {
    *:not(#preloader):not(#preloader *) {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ÖDEME YÖNTEMİ BORDER-RADIUS DÜZELTMESİ - AGRESİF */
.payment-method-card,
.payment-method-card:hover,
.payment-method-card:active,
.payment-method-card:focus {
    border-radius: 16px !important;
    overflow: visible !important;
    -webkit-border-radius: 16px !important;
    -moz-border-radius: 16px !important;
}

.payment-method-option input:checked + .payment-method-card,
.payment-method-option input:checked + .payment-method-card:hover,
.payment-method-option input:checked + .payment-method-card:active {
    border-radius: 16px !important;
    overflow: visible !important;
    -webkit-border-radius: 16px !important;
    -moz-border-radius: 16px !important;
}

.modal-content .payment-method-card {
    overflow: visible !important;
    border-radius: 16px !important;
    -webkit-border-radius: 16px !important;
    -moz-border-radius: 16px !important;
}

.modal-content .payment-method-option input:checked + .payment-method-card {
    overflow: visible !important;
    border-radius: 16px !important;
    -webkit-border-radius: 16px !important;
    -moz-border-radius: 16px !important;
}

@media (max-width: 768px) {
    .payment-method-card,
    .payment-method-option input:checked + .payment-method-card,
    .modal-content .payment-method-card,
    .modal-content .payment-method-option input:checked + .payment-method-card {
        border-radius: 16px !important;
        overflow: visible !important;
        -webkit-border-radius: 16px !important;
        -moz-border-radius: 16px !important;
    }
    
    .modal-content .payment-method-card,
    .modal-content .payment-method-card *,
    .modal-content .payment-method-option,
    .modal-content .payment-method-option * {
        overflow-x: visible !important;
        overflow-y: visible !important;
        overflow: visible !important;
    }
}

@media (hover: none) and (pointer: coarse) {
    .payment-method-card,
    .payment-method-card:active,
    .payment-method-option input:checked + .payment-method-card,
    .payment-method-option input:checked + .payment-method-card:active {
        border-radius: 16px !important;
        overflow: visible !important;
        -webkit-border-radius: 16px !important;
        -moz-border-radius: 16px !important;
    }
}

@media (max-width: 480px) {
    .payment-method-card,
    .payment-method-option input:checked + .payment-method-card,
    .modal-content .payment-method-card {
        border-radius: 16px !important;
        overflow: visible !important;
        -webkit-border-radius: 16px !important;
        -moz-border-radius: 16px !important;
    }
}

.payment-method-card {
    padding: 14px 10px !important;
    min-height: 90px !important;
    gap: 6px !important;
    border-radius: 20px !important;
}

.payment-method-card i {
    font-size: 24px !important;
}

.payment-method-card span {
    font-size: 12px !important;
}

.payment-method-card small {
    font-size: 10px !important;
}

@media (max-width: 768px) {
    .payment-method-card {
        padding: 12px 8px !important;
        min-height: 75px !important;
        border-radius: 18px !important;
    }
    
    .payment-method-card i {
        font-size: 22px !important;
    }
}

.payment-methods-select {
    gap: 10px !important;
}

/* Hero Buttons Container */
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: stretch;
}

.hero-buttons > * {
    flex: 0 1 auto;
    min-width: 200px;
}

/* Primary CTA Button Override - Match other buttons */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 35px;
    background: rgba(26, 77, 71, 0.15) !important;
    border: 2px solid rgba(26, 77, 71, 0.5) !important;
    color: var(--light) !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(26, 77, 71, 0.2) !important;
    cursor: pointer;
    font-size: 16px;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(26, 77, 71, 0.4) !important;
    background: rgba(26, 77, 71, 0.25) !important;
    border-color: rgba(26, 77, 71, 0.7) !important;
}

/* Secondary CTA Button Style */
.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 35px;
    background: rgba(14, 42, 39, 0.15);
    border: 2px solid rgba(14, 42, 39, 0.5);
    color: var(--light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(14, 42, 39, 0.2);
    cursor: pointer;
    font-size: 16px;
}

.cta-btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(14, 42, 39, 0.4);
    background: rgba(14, 42, 39, 0.25);
    border-color: rgba(14, 42, 39, 0.7);
}


/* License Badge Styles */
.license-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    padding: 15px 0;
    border-top: 1px solid rgba(14, 42, 39, 0.2);
}

.license-link {
    display: inline-block;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.license-link:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.license-img {
    max-width: 100px;
    height: auto;
    display: block;
    filter: brightness(0.95);
    transition: filter 0.3s ease;
}

.license-link:hover .license-img {
    filter: brightness(1.1);
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .license-badge {
        margin-top: 15px;
        padding: 12px 0;
    }
    
    .license-img {
        max-width: 80px;
    }
}