/* Urban Tales Website Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: #1A1A1A;
    color: #FFFFFF;
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    text-align: center;
    padding: 40px 20px;
}

.back-link {
    display: inline-block;
    color: #FF6B35;
    text-decoration: none;
    margin-bottom: 20px;
    font-size: 14px;
    transition: color 0.2s;
}

.back-link:hover {
    color: #ff8555;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.logo-icon {
    font-size: 48px;
}

.logo h1 {
    font-size: 36px;
    font-weight: 700;
    color: #FF6B35;
}

/* Main Content */
main {
    flex: 1;
}

.hero {
    text-align: center;
    margin-bottom: 40px;
}

.banner-image {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin-bottom: 24px;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.2);
}

.tagline {
    font-size: 20px;
    color: #CCCCCC;
    margin-bottom: 32px;
}

/* App Badges Section */
.app-badges-section {
    text-align: center;
    margin-bottom: 48px;
}

.coming-soon-label {
    font-size: 14px;
    font-weight: 600;
    color: #FF6B35;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.app-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.app-badge img {
    height: 48px;
    transition: transform 0.2s;
}

.app-badge:hover:not(.disabled) img {
    transform: scale(1.05);
}

.app-badge.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(30%);
}

/* Beta Testers Section */
.beta-testers-section {
    margin-top: 24px;
}

.beta-card {
    background: linear-gradient(135deg, #2A2A2A 0%, #1f1f1f 100%);
    border: 1px solid #FF6B35;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.beta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6B35, #ff8555, #FF6B35);
}

.beta-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
}

.beta-card h2 {
    color: #FF6B35;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.beta-card p {
    color: #CCCCCC;
    font-size: 16px;
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto 16px;
}

.beta-cta {
    color: #FFFFFF !important;
    font-weight: 500;
}

.beta-email {
    color: #FF6B35;
    font-weight: 600;
    text-decoration: none;
    padding: 4px 8px;
    background: rgba(255, 107, 53, 0.15);
    border-radius: 6px;
    transition: all 0.2s;
}

.beta-email:hover {
    background: rgba(255, 107, 53, 0.3);
    color: #ff8555;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid #333;
    margin-top: 40px;
}

.footer-links {
    margin-bottom: 16px;
}

.footer-links a {
    color: #FF6B35;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #ff8555;
    text-decoration: underline;
}

.divider {
    color: #666;
    margin: 0 12px;
}

.copyright {
    color: #666;
    font-size: 12px;
}

/* Content Pages */
.page main.content {
    background: #2A2A2A;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 20px;
}

.content h2 {
    color: #FF6B35;
    font-size: 28px;
    margin-bottom: 8px;
}

.content h3 {
    color: #FFFFFF;
    font-size: 18px;
    margin-top: 28px;
    margin-bottom: 12px;
}

.content p {
    color: #CCCCCC;
    margin-bottom: 16px;
}

.content ul {
    color: #CCCCCC;
    margin-left: 24px;
    margin-bottom: 16px;
}

.content li {
    margin-bottom: 8px;
}

.content strong {
    color: #FFFFFF;
}

.content a {
    color: #FF6B35;
}

.last-updated {
    color: #888;
    font-size: 12px;
    margin-bottom: 24px;
}

.subtitle {
    color: #888;
    margin-bottom: 32px;
}

/* Contact Form */
.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #FFFFFF;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #444;
    border-radius: 12px;
    background: #1A1A1A;
    color: #FFFFFF;
    font-size: 16px;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6B35;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #FF6B35;
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.submit-btn:hover:not(:disabled) {
    background: #ff8555;
}

.submit-btn:active:not(:disabled) {
    transform: scale(0.98);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Success/Error Messages */
.success-message,
.error-message {
    text-align: center;
    padding: 32px;
}

.success-icon,
.error-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
}

.success-message h3 {
    color: #4CAF50;
    margin-bottom: 8px;
}

.error-message h3 {
    color: #f44336;
    margin-bottom: 8px;
}

.back-home-btn {
    display: inline-block;
    margin-top: 24px;
    padding: 12px 24px;
    background: #FF6B35;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s;
}

.back-home-btn:hover {
    background: #ff8555;
}

/* Delete Account Warning */
.delete-warning {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    padding: 16px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid #FF6B35;
    border-radius: 12px;
    align-items: flex-start;
}

.delete-warning .warning-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.delete-warning p {
    color: #FFAA88;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Invite Page */
.invite-hero {
    text-align: center;
    margin-bottom: 32px;
}

.invite-icon {
    font-size: 64px;
    display: block;
    margin-bottom: 16px;
}

.invite-hero h2 {
    color: #FF6B35;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.invite-subtitle {
    color: #CCCCCC;
    font-size: 18px;
}

.promo-section {
    background: linear-gradient(135deg, #2A2A2A 0%, #1f1f1f 100%);
    border: 2px solid #FF6B35;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    margin-bottom: 32px;
}

.promo-label {
    color: #888;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.promo-code-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

#promo-code {
    font-size: 36px;
    font-weight: 800;
    color: #FF6B35;
    letter-spacing: 4px;
    font-family: 'Courier New', monospace;
}

.copy-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid #FF6B35;
    border-radius: 10px;
    color: #FF6B35;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.copy-btn:hover {
    background: rgba(255, 107, 53, 0.3);
}

.copy-btn.copied {
    background: rgba(76, 175, 80, 0.2);
    border-color: #4CAF50;
    color: #4CAF50;
}

.copy-icon {
    font-size: 16px;
}

.promo-hint {
    color: #CCCCCC;
    font-size: 14px;
    margin-top: 16px;
}

.download-section {
    text-align: center;
    margin-bottom: 40px;
}

.download-btn {
    display: inline-block;
    transition: transform 0.2s;
}

.download-btn:hover {
    transform: scale(1.05);
}

.download-btn img {
    height: 60px;
}

.download-hint {
    color: #888;
    font-size: 14px;
    margin-top: 12px;
}

.steps-section {
    background: #2A2A2A;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
}

.steps-section h3 {
    color: #FFFFFF;
    font-size: 20px;
    text-align: center;
    margin-bottom: 24px;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step {
    display: flex;
    align-items: center;
    gap: 16px;
}

.step-number {
    width: 32px;
    height: 32px;
    background: #FF6B35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #FFFFFF;
    flex-shrink: 0;
}

.step-text {
    color: #CCCCCC;
    font-size: 16px;
}

.step-text strong {
    color: #FF6B35;
}

.qr-section {
    text-align: center;
    padding: 24px;
    background: #2A2A2A;
    border-radius: 16px;
}

.qr-label {
    color: #888;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

#qr-code {
    display: inline-block;
    padding: 16px;
    background: #1A1A1A;
    border-radius: 12px;
}

#qr-code img {
    display: block;
}

.qr-hint {
    color: #666;
    font-size: 12px;
    margin-top: 12px;
}

/* Responsive */
@media (max-width: 600px) {
    .logo-icon {
        font-size: 36px;
    }
    
    .logo h1 {
        font-size: 28px;
    }
    
    .page main.content {
        padding: 24px 20px;
    }
    
    .content h2 {
        font-size: 24px;
    }
    
    .app-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .beta-card {
        padding: 32px 20px;
    }
    
    .beta-card h2 {
        font-size: 20px;
    }
    
    .beta-card p {
        font-size: 15px;
    }
    
    .beta-icon {
        font-size: 40px;
    }
    
    /* Invite page mobile */
    .invite-icon {
        font-size: 48px;
    }
    
    .invite-hero h2 {
        font-size: 26px;
    }
    
    .invite-subtitle {
        font-size: 16px;
    }
    
    #promo-code {
        font-size: 28px;
        letter-spacing: 2px;
    }
    
    .promo-section {
        padding: 24px 16px;
    }
    
    .promo-code-box {
        flex-direction: column;
        gap: 12px;
    }
    
    .steps-section {
        padding: 24px 20px;
    }
}