/* Index Page Inline Styles - Optimized */

/* Countdown Section - Enhanced Design */
.countdown-section {
    padding: 4rem 0;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.countdown-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(14, 165, 233, 0.05));
    z-index: 1;
}

.countdown-container {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 4rem 3rem;
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.15),
        0 0 0 1px rgba(255, 255, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(37, 99, 235, 0.1);
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
}

.countdown-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(37, 99, 235, 0.05) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.countdown-title {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #2563eb, #0ea5e9, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.countdown-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
    border-radius: 2px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
}

.countdown-item {
    text-align: center;
    min-width: 120px;
    position: relative;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(14, 165, 233, 0.05));
    border-radius: 20px;
    border: 2px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
    animation: countdownFloat 3s ease-in-out infinite;
}

.countdown-item:nth-child(1) { animation-delay: 0s; }
.countdown-item:nth-child(3) { animation-delay: 0.5s; }
.countdown-item:nth-child(5) { animation-delay: 1s; }
.countdown-item:nth-child(7) { animation-delay: 1.5s; }

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

.countdown-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.2);
    border-color: rgba(37, 99, 235, 0.3);
}

.countdown-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #2563eb, #0ea5e9, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
    position: relative;
    animation: numberPulse 2s ease-in-out infinite;
}

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

.countdown-label {
    font-size: 1.1rem;
    color: #374151;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    position: relative;
}

.countdown-label::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
    border-radius: 1px;
}

.countdown-separator {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #2563eb, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: -1rem;
    animation: separatorBlink 1s ease-in-out infinite;
    position: relative;
}

@keyframes separatorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Responsive Countdown */
@media (max-width: 768px) {
    .countdown-container {
        padding: 3rem 2rem;
        margin: 0 1rem;
    }
    
    .countdown-title {
        font-size: 2rem;
    }
    
    .countdown-timer {
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 1rem;
    }
    
    .countdown-number {
        font-size: 2.5rem;
    }
    
    .countdown-label {
        font-size: 0.9rem;
    }
    
    .countdown-separator {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .countdown-container {
        padding: 2rem 1rem;
    }
    
    .countdown-timer {
        gap: 0.5rem;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 0.75rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 0.8rem;
    }
    
    .countdown-separator {
        font-size: 1.5rem;
    }
}

/* Hero Section */
.hero-section {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 0; /* Header ile arasındaki boşluğu normal hale getirdik */
}

.hero-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Hero Content Positioning */
.hero-content {
    text-align: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    z-index: 2;
}

.hero-tagline {
    margin-bottom: 1rem;
}

.hero-tagline span {
    background: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #000000;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.hero-title h1 {
    font-size: 4rem;
    font-weight: 900;
    margin: 1rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
}

.hero-description p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 1.5rem 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-features {
    margin: 2rem 0;
}

.hero-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
    gap: 1rem;
    background: white;
    padding: 1rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.hero-feature i {
    font-size: 1.5rem;
    color: #000000;
    min-width: 30px;
}

.hero-feature span {
    font-size: 1rem;
    line-height: 1.5;
    color: #000000;
}

.hero-cta p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 2rem 0;
    color: #000000;
    background: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, 0.1);
}



/* Responsive Hero */
@media (max-width: 768px) {
    .hero-title h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .hero-description p {
        font-size: 1rem;
    }
    
    .hero-feature {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .hero-feature span {
        font-size: 0.9rem;
    }
    
    .hero-cta p {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title h1 {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .hero-tagline span {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .hero-description p {
        font-size: 0.9rem;
    }
    
    .hero-feature {
        padding: 0.8rem 1.5rem;
    }
    
    .hero-feature span {
        font-size: 0.8rem;
    }
    
    .hero-cta p {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }
}

/* Ripple Effect */
.ripple {
    position: absolute !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.3) !important;
    transform: scale(0) !important;
    animation: ripple-animation 0.6s linear !important;
    pointer-events: none !important;
}

@keyframes ripple-animation {
    to {
        transform: scale(4) !important;
        opacity: 0 !important;
    }
}

/* Stats Number Gradient */
.stat-number {
    background: linear-gradient(90deg, rgba(37,21,221,1) 0%, rgba(21,116,162,1) 36%, rgba(101,123,214,1) 55%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Membership Modal Styles */
.membership-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.membership-modal.active {
    opacity: 1;
    visibility: visible;
    display: flex;
    pointer-events: auto;
}

.membership-modal .modal-content {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.membership-modal.active .modal-content {
    transform: scale(1);
}

.membership-modal .modal-header {
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
    color: white;
    padding: 30px;
    border-radius: 20px 20px 0 0;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: none;
    z-index: 10;
    margin-bottom: 0;
    top: auto;
    min-height: auto;
}

.membership-modal .modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: none;
    display: block;
    visibility: visible;
    opacity: 1;
    line-height: 1.3;
}

.membership-modal .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    z-index: 1000000;
}

.membership-modal .close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.membership-modal .modal-body {
    overflow: hidden;
    position: fixed;
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;
    height: 100vh;
    display: flex;
    visibility: visible;
    opacity: 1;
    justify-content: center;
    align-items: center;
}

.membership-modal:not(.active) .modal-body {
    display: none;
    visibility: hidden;
    pointer-events: none;
}

.membership-modal .modal-content {
    position: relative;
    z-index: 1000000;
    max-height: 90vh;
    overflow-y: auto;
    background: white;
    display: flex;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.platform-option {
    display: flex;
    align-items: center;
    padding: 20px;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    color: black;
    text-decoration: none;
    position: relative;
}

.platform-option:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: black;
    text-shadow: none;
}

.platform-option:hover .platform-title {
    color: black;
    text-shadow: none;
}

.platform-option:hover .platform-description {
    box-shadow: none;
    border: 1px solid #ccc;
}

.platform-icon {
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 2rem;
}

.platform-info {
    flex: 1;
}

.platform-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.platform-description {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.platform-arrow {
    color: #2563eb;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.platform-option:hover .platform-arrow {
    transform: translateX(5px);
}

.modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
    border-radius: 0 0 20px 20px;
}

/* Button styles moved to buttons.css for consistency */

.modal-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
}

.modal-info i {
    color: #2563eb;
}

/* Body scroll prevention when modal is open */
body.modal-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .membership-modal .modal-content {
        width: 95%;
        max-height: 95vh;
        margin: 10px;
    }

    .membership-modal .modal-header {
        padding: 20px;
    }

    .membership-modal .modal-title {
        font-size: 1.5rem;
        padding-right: 40px;
    }

    .modal-body {
        padding: 20px;
    }

    .platform-option {
        padding: 15px;
    }

    .platform-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-right: 15px;
    }

    .modal-footer {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }
}

@media (max-width: 576px) {
    .platform-option {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .platform-icon {
        margin-right: 0;
    }

    .platform-info {
        text-align: center;
    }

    .platform-arrow {
        display: none;
    }
} 

/* Hero Section Responsive Styles */

/* Desktop Styles */
.hero-tagline span {
    font-size: 1.1rem !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
    padding: 12px 20px !important;
    border-radius: 25px !important;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.15) !important;
    display: inline-block !important;
    border: 2px solid #2563eb !important;
    color: #2563eb !important;
    font-weight: 600 !important;
}

.hero-tagline span i {
    color: #2563eb !important;
    margin-right: 8px !important;
}

.hero-title h1 {
    color: #ffffff !important;
    background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%) !important;
    padding: 12px 30px !important;
    border-radius: 15px !important;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3) !important;
    display: inline-block !important;
    border: 3px solid #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2) !important;
    font-size: 4.5rem !important;
    font-weight: 700 !important;
}

/* Tablet Styles */
@media (max-width: 768px) {
    .hero-tagline span {
        font-size: 1rem !important;
        padding: 10px 16px !important;
        border-radius: 20px !important;
    }
    
    .hero-title h1 {
        font-size: 3.5rem !important;
        padding: 10px 24px !important;
        border-radius: 12px !important;
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    .hero-tagline span {
        font-size: 0.9rem !important;
        padding: 8px 14px !important;
        border-radius: 18px !important;
        line-height: 1.3 !important;
    }
    
    .hero-title h1 {
        font-size: 2.5rem !important;
        padding: 8px 20px !important;
        border-radius: 10px !important;
        line-height: 1.2 !important;
    }
}

/* Small Mobile Styles */
@media (max-width: 360px) {
    .hero-tagline span {
        font-size: 0.8rem !important;
        padding: 6px 12px !important;
        border-radius: 15px !important;
    }
    
    .hero-title h1 {
        font-size: 2rem !important;
        padding: 6px 16px !important;
        border-radius: 8px !important;
    }
}

/* Hero Content Responsive */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 1rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 0.5rem !important;
    }
    
    .hero-tagline {
        margin-bottom: 1.5rem !important;
    }
} 

/* Responsive Hero Features & Slogans Section */
@media (max-width: 768px) {
    .hero-features-slogans-section {
        padding: 2rem 1rem;
    }
    
    .hero-content-side-by-side {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-slogans-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-feature-card {
        padding: 1.5rem;
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .hero-feature-card p {
        font-size: 0.95rem;
    }
    
    .slogan-card {
        padding: 1.5rem !important;
        font-size: 1rem !important;
    }
    
    .slogan-card h3 {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 480px) {
    .hero-features-slogans-section {
        padding: 1.5rem 0.5rem;
    }
    
    .hero-feature-card {
        padding: 1.25rem;
        font-size: 0.9rem;
    }
    
    .hero-feature-card p {
        font-size: 0.9rem;
    }
    
    .slogan-card {
        padding: 1.25rem !important;
        font-size: 0.9rem !important;
    }
    
    .slogan-card h3 {
        font-size: 1rem !important;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
    }
    
    .feature-icon i {
        font-size: 1rem;
    }
    
    .slogan-icon {
        width: 35px !important;
        height: 35px !important;
    }
    
    .slogan-icon i {
        font-size: 1rem !important;
    }
}

/* Responsive Hero Title and Tagline */
@media (max-width: 768px) {
    .hero-tagline span {
        font-size: 1.1rem;
        padding: 0.75rem 1.5rem;
    }
    
    .hero-title h1 {
        font-size: 3.5rem;
        letter-spacing: 0.1em;
    }
}

@media (max-width: 480px) {
    .hero-tagline span {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }
    
    .hero-title h1 {
        font-size: 2.8rem;
        letter-spacing: 0.05em;
    }
}

@media (max-width: 360px) {
    .hero-tagline span {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-title h1 {
        font-size: 2.4rem;
    }
} 