/* ============================================================
   At Yarışı Mobil Uygulaması CSS - Turf Green & Dirt Brown & Gold
   ============================================================ */
:root {
    --bg-main: #0a0e0a;
    /* Çok Koyu Orman Yeşili/Siyahımsı */
    --bg-card: rgba(255, 255, 255, 0.04);
    --border-color: rgba(255, 255, 255, 0.08);
    --text-primary: #f4f6f5;
    --text-secondary: #a8b0a9;
    --brand-green: #2ecc71;
    /* Turf/Çim Yeşili */
    --brand-dirt: #d35400;
    /* Kum Pisti / Toprak */
    --brand-gold: #f1c40f;
    /* Kupa/Birincilik Sarısı */
    --gradient-primary: linear-gradient(135deg, #2ecc71, #f1c40f);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.5);
    --transition-fast: 0.3s ease;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* HERO SECTION */
.hr-hero {
    position: relative;
    padding: 180px 0 100px;
    text-align: center;
    overflow: hidden;
    background: radial-gradient(circle at center top, rgba(46, 204, 113, 0.1), transparent 60%), var(--bg-main);
}

.hr-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/grid-pattern.png') repeat;
    opacity: 0.03;
    z-index: 0;
}

.hr-hero .container {
    position: relative;
    z-index: 1;
    max-width: 950px;
    margin: 0 auto;
    padding: 0 20px;
}

.hr-launch-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(241, 196, 15, 0.1);
    border: 1px solid var(--brand-gold);
    color: var(--brand-gold);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hr-hero h1 {
    font-size: clamp(2.3rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hr-hero .hr-desc {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* SECTIONS */
.hr-section {
    padding: 90px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hr-section-title {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
    color: #fff;
    line-height: 1.3;
}

.hr-section-title span {
    color: var(--brand-green);
}

.hr-section-desc {
    text-align: center;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* GRID CARDS */
.hr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.hr-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-soft);
    text-align: left;
}

.hr-card:hover {
    transform: translateY(-8px);
    border-color: rgba(46, 204, 113, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.hr-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(46, 204, 113, 0.5));
}

.hr-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: #fff;
    font-weight: 700;
}

.hr-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* TIERS / PRICING */
.hr-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hr-price-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 50px 30px;
    text-align: center;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.hr-price-card:hover {
    border-color: var(--brand-green);
    transform: translateY(-5px);
}

.hr-price-card.premium {
    border-color: var(--brand-gold);
    background: linear-gradient(180deg, rgba(241, 196, 15, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    box-shadow: 0 10px 40px rgba(241, 196, 15, 0.15);
}

.hr-price-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--gradient-primary);
    color: #000;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 5px 40px;
    transform: rotate(45deg);
}

.hr-tier-name {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hr-tier-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    min-height: 45px;
}

.hr-price-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.hr-price-features li {
    color: #d0d5d1;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1.05rem;
}

.hr-price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--brand-green);
    font-weight: bold;
}

.hr-price-card.premium .hr-price-features li::before {
    color: var(--brand-gold);
}

/* DISCLAIMER */
.hr-disclaimer {
    border-left: 3px solid #666;
    background: rgba(255, 255, 255, 0.02);
    padding: 25px 30px;
    border-radius: 0 12px 12px 0;
    max-width: 900px;
    margin: 40px auto 0;
    font-size: 0.9rem;
    color: #888;
    line-height: 1.6;
    text-align: left;
}

.hr-disclaimer strong {
    color: #aaa;
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .hr-hero {
        padding: 140px 0 80px;
    }

    .hr-hero h1 {
        font-size: 2rem;
    }

    .hr-section {
        padding: 50px 20px;
    }

    .hr-section-title {
        font-size: 1.8rem;
    }
}