/* ============================================
   ASLAN BORSA - Telegram Renkli Landing Page
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at 50% 0%, rgba(42, 171, 238, 0.1), rgba(0, 0, 0, 0) 24%),
        radial-gradient(circle at 100% 0%, rgba(29, 78, 122, 0.14), rgba(0, 0, 0, 0) 22%),
        linear-gradient(#0e1621 0%, #17212b 100%);
    background-attachment: fixed;
    color: #e1e8ef;
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
}

/* --- Page Wrapper (Centers everything) --- */
.page-wrapper {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* --- Container --- */
.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Shared Card/Frame Styling --- */
.hero-section,
.sticky-cta-section,
.second-cta-section,
.features-section,
.audience-section,
.disclaimer-section {
    background: linear-gradient(rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    border: 0.8px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    box-shadow: rgba(0, 0, 0, 0.34) 0px 18px 44px 0px;
    width: 100%;
}

.hero-section {
    border-radius: 28px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    z-index: 1;
    padding: 40px 0 30px;
    text-align: center;
}

/* Logo */
.logo-wrapper {
    margin-bottom: 20px;
}

.logo-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(42, 171, 238, 0.4);
    box-shadow: 0 0 30px rgba(42, 171, 238, 0.2);
}

/* Badge */
.badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 50px;
    background: rgba(42, 171, 238, 0.15);
    border: 1px solid rgba(42, 171, 238, 0.35);
    color: #5bb8f5;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 10px;
}

/* Member Count */
.member-count {
    font-size: 14px;
    color: rgba(225, 232, 239, 0.6);
    margin-bottom: 16px;
}

/* Hero Title */
.hero-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

/* Hero Description */
.hero-desc {
    font-size: 15px;
    color: rgba(225, 232, 239, 0.7);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* --- Mini Feature Cards --- */
.mini-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.mini-card {
    background: rgba(42, 171, 238, 0.06);
    border: 1px solid rgba(42, 171, 238, 0.15);
    border-radius: 14px;
    padding: 16px;
    text-align: left;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.mini-card:hover {
    border-color: rgba(42, 171, 238, 0.35);
    background: rgba(42, 171, 238, 0.1);
}

.mini-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.mini-card p {
    font-size: 13px;
    color: rgba(225, 232, 239, 0.6);
    line-height: 1.5;
}

/* ============================================
   STICKY CTA SECTION
   ============================================ */
.sticky-cta-section {
    position: relative;
    z-index: 10;
    padding: 20px 0 10px;
    text-align: center;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 560px;
    padding: 16px 32px;
    border-radius: 14px;
    background: linear-gradient(135deg, #2aabee 0%, #229ed9 50%, #1a8ac6 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.3px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    box-shadow: 0 4px 20px rgba(42, 171, 238, 0.35), 0 0 40px rgba(42, 171, 238, 0.1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(42, 171, 238, 0.5), 0 0 60px rgba(42, 171, 238, 0.15);
    filter: brightness(1.08);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 12px rgba(42, 171, 238, 0.3);
}

.telegram-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* CTA Note */
.cta-note {
    font-size: 12px;
    color: rgba(225, 232, 239, 0.45);
    margin-top: 10px;
}

/* ============================================
   SECOND CTA SECTION
   ============================================ */
.second-cta-section {
    position: relative;
    z-index: 1;
    padding: 20px 0 30px;
    text-align: center;
}

.free-entry-box {
    background: rgba(42, 171, 238, 0.06);
    border: 1px solid rgba(42, 171, 238, 0.15);
    border-radius: 14px;
    padding: 16px 20px;
    text-align: left;
    margin-bottom: 20px;
}

.free-entry-box h3 {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.free-entry-box p {
    font-size: 13px;
    color: rgba(225, 232, 239, 0.6);
}

.cta-button-alt {
    background: linear-gradient(135deg, #2aabee 0%, #1e96d1 50%, #1882b9 100%);
}

.cta-sub-note {
    font-size: 12px;
    color: rgba(225, 232, 239, 0.5);
    margin-top: 12px;
    line-height: 1.5;
}

.cta-bold-note {
    font-size: 13px;
    color: #5bb8f5;
    margin-top: 8px;
    font-weight: 600;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    position: relative;
    z-index: 1;
    padding: 30px 0;
}

.features-section .container {
    padding: 30px 24px;
}

.section-title {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: -0.2px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.feature-card {
    background: rgba(42, 171, 238, 0.06);
    border: 1px solid rgba(42, 171, 238, 0.12);
    border-radius: 14px;
    padding: 18px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.feature-card:hover {
    border-color: rgba(42, 171, 238, 0.3);
    background: rgba(42, 171, 238, 0.1);
}

.feature-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 13px;
    color: rgba(225, 232, 239, 0.6);
    line-height: 1.5;
}

/* ============================================
   AUDIENCE SECTION
   ============================================ */
.audience-section {
    position: relative;
    z-index: 1;
    padding: 30px 0;
}

.audience-section .container {
    padding: 30px 24px;
}

.audience-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.audience-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(225, 232, 239, 0.85);
    line-height: 1.5;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 6px;
    background: linear-gradient(135deg, #2aabee, #229ed9);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    margin-top: 1px;
}

/* ============================================
   DISCLAIMER SECTION
   ============================================ */
.disclaimer-section {
    position: relative;
    z-index: 1;
    padding: 20px 0 10px;
}

.disclaimer-section .container {
    padding: 16px 20px;
}

.disclaimer-text {
    font-size: 12px;
    color: rgba(225, 232, 239, 0.4);
    text-align: center;
    line-height: 1.5;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    position: relative;
    z-index: 1;
    padding: 20px 0 30px;
    text-align: center;
}

.footer-text {
    font-size: 12px;
    color: rgba(225, 232, 239, 0.35);
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 680px) {
    body {
        padding: 12px;
    }

    .hero-title {
        font-size: 24px;
    }

    .cta-button {
        font-size: 15px;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 8px;
    }

    .hero-title {
        font-size: 22px;
    }

    .mini-cards {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta-button {
        font-size: 14px;
        padding: 14px 16px;
    }

    .features-section .container,
    .audience-section .container {
        padding: 24px 16px;
    }

    .hero-section {
        border-radius: 20px;
    }

    .hero-section,
    .sticky-cta-section,
    .second-cta-section,
    .features-section,
    .audience-section,
    .disclaimer-section {
        border-radius: 18px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section {
    animation: fadeInUp 0.6s ease-out;
}

.sticky-cta-section {
    animation: fadeInUp 0.6s ease-out 0.2s;
    animation-fill-mode: both;
}

.second-cta-section {
    animation: fadeInUp 0.6s ease-out 0.3s;
    animation-fill-mode: both;
}

.features-section {
    animation: fadeInUp 0.6s ease-out 0.4s;
    animation-fill-mode: both;
}

.audience-section {
    animation: fadeInUp 0.6s ease-out 0.5s;
    animation-fill-mode: both;
}

/* Pulse animation for CTA */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(42, 171, 238, 0.35), 0 0 40px rgba(42, 171, 238, 0.1);
    }
    50% {
        box-shadow: 0 4px 28px rgba(42, 171, 238, 0.5), 0 0 60px rgba(42, 171, 238, 0.15);
    }
}

.cta-button {
    animation: pulse-glow 3s ease-in-out infinite;
}

.cta-button:hover {
    animation: none;
}
