/* Zodicor Astrology Website - No Status Bar Version 2.0.0 */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    overflow-y: auto;
}

/* App Container */
.app {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: visible;
}


/* Main Content */
.main-content {
    flex: 1;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 80px; /* Space for bottom nav */
}

/* Container */
.container {
    padding: 20px;
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 430px;
    background: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    z-index: 100;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #999;
    padding: 5px 15px;
    transition: color 0.3s;
}

.nav-item.active {
    color: #667eea;
}

.nav-icon {
    font-size: 24px;
    margin-bottom: 3px;
}

.nav-label {
    font-size: 11px;
    font-weight: 500;
}

/* Welcome Section */
.welcome-section {
    text-align: center;
    color: white;
    margin-bottom: 30px;
}

.greeting {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 5px;
}

.date {
    opacity: 0.8;
    font-size: 14px;
}

/* Zodiac Cards */
.zodiac-card {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.zodiac-card.featured {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.zodiac-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.zodiac-emoji {
    font-size: 32px;
}

.zodiac-emoji.large {
    font-size: 48px;
}

.zodiac-emoji.hero {
    font-size: 72px;
}

.zodiac-info h2 {
    font-size: 20px;
    margin-bottom: 3px;
}

.zodiac-info p {
    color: #666;
    font-size: 14px;
}

.card-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #667eea;
    font-weight: 500;
}

.arrow {
    font-size: 20px;
}

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.action-card {
    background: white;
    padding: 20px 10px;
    text-align: center;
    text-decoration: none;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.action-card:active {
    transform: scale(0.98);
}

.action-icon {
    font-size: 28px;
    display: block;
    margin-bottom: 8px;
}

/* Selection Prompt */
.selection-prompt {
    text-align: center;
    color: white;
    margin-bottom: 30px;
}

.selection-prompt h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.selection-prompt p {
    opacity: 0.8;
}

/* Zodiac Grid */
.zodiac-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.zodiac-select-card {
    background: white;
    padding: 20px 10px;
    text-align: center;
    text-decoration: none;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.2s;
}

.zodiac-select-card:active {
    transform: scale(0.98);
    background: #f0f0f0;
}

.zodiac-select-card h3 {
    font-size: 14px;
    margin: 8px 0 5px;
}

.zodiac-select-card p {
    font-size: 11px;
    color: #666;
}

/* Trending Section */
.trending-section {
    margin-top: 40px;
}

.section-title {
    color: white;
    font-size: 20px;
    margin-bottom: 20px;
}

.trending-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.trending-card {
    background: white;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.trending-emoji {
    font-size: 32px;
}

.trending-content h3 {
    font-size: 16px;
    margin-bottom: 3px;
}

.trending-content p {
    font-size: 13px;
    color: #666;
}

/* Zodiac Page Header */
.zodiac-page-header {
    text-align: center;
    color: white;
    margin-bottom: 30px;
}

.zodiac-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.zodiac-title h1 {
    font-size: 28px;
}

.zodiac-dates {
    opacity: 0.8;
    font-size: 14px;
}

.zodiac-dates.large {
    font-size: 16px;
}

.date-label {
    font-size: 14px;
    opacity: 0.8;
}

/* Quick Stats */
.quick-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}

.stat-item {
    background: white;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.stat-label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 16px;
    font-weight: 600;
    color: #667eea;
}

/* Horoscope Sections */
.horoscope-section {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.horoscope-section h2 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.horoscope-section p {
    line-height: 1.8;
    color: #555;
}

/* Category Cards */
.category-cards {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

.category-card {
    background: white;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.category-icon {
    font-size: 24px;
}

.category-header h3 {
    font-size: 16px;
    margin: 0;
}

.category-card p {
    color: #555;
    line-height: 1.6;
}

/* Time Navigation */
.time-navigation {
    margin-top: 30px;
}

.time-navigation h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 15px;
}

.time-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.time-link {
    background: white;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.time-link:active {
    transform: scale(0.98);
}

.time-icon {
    font-size: 24px;
}

/* More Readings */
.more-readings {
    margin-top: 40px;
}

.more-readings h2 {
    color: white;
    font-size: 20px;
    margin-bottom: 20px;
}

.reading-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.reading-link {
    background: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.reading-link:active {
    transform: scale(0.98);
}

.reading-link span:first-child {
    font-size: 24px;
}

/* Personality Section */
.personality-section {
    margin-bottom: 30px;
}

.personality-section h2 {
    color: white;
    font-size: 20px;
    margin-bottom: 20px;
}

.traits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.trait-card {
    background: white;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.trait-card h3 {
    font-size: 16px;
    margin-bottom: 15px;
}

.trait-card ul {
    list-style: none;
}

.trait-card li {
    padding: 5px 0;
    color: #555;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 430px) {
    .app {
        max-width: 100%;
    }
    
    .bottom-nav {
        max-width: 100%;
    }
}

/* Remove all border-radius for sharp corners */
* {
    border-radius: 0 !important;
}