/* landing.css */

/* ------------------- Global Styles ------------------- */

/* Reset CSS for consistent styling across elements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom CSS variables for consistent theming */
:root {
    --primary-bg: #001f3f;
    --secondary-bg: #ffffff;
    --border-color: #e1e8ed;
    --primary-blue: #1DA1F2;
    --red-accent: #ff4136;
    --gray-light: #666666;
    --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 2px 4px rgba(0, 0, 0, 0.15);
    --padding-small: 12px;
    --margin-small: 10px;
    --border-radius: 12px;
    --font-default: 'Helvetica Neue', Arial, sans-serif;
    --font-size-base: 14px;
}

/* Base body styles */
body {
    font-family: var(--font-default);
    font-size: var(--font-size-base);
    background-color: var(--primary-bg);
    color: #ffffff;
}

/* ------------------- Landing Page Styles ------------------- */

/* Container for the entire landing page content */
.landing-full-container {
    min-height: calc(100vh - 60px);
    background-color: var(--primary-bg);
    padding: 20px 0;
}

/* Fixed top navigation bar for landing page */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: var(--primary-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding-small);
    z-index: 1000;
    box-shadow: var(--shadow-light);
}

/* Branding section of the landing nav */
.landing-nav-brand {
    flex: 1;
}

/* Container for navigation buttons */
.landing-nav-buttons {
    display: flex;
    gap: 20px;
}

/* Logo in the landing nav */
.landing-nav-logo {
    max-width: 200px;
    height: auto;
}

/* Zigzag layout for landing page sections */
.landing-zigzag {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-top: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Landing section cards - clean white design */
.landing-section {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 60px 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin: 0 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* Feature highlights for CTA sections */
.landing-cta-features {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #1DA1F2, #0d8bd9);
    color: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(29, 161, 242, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 161, 242, 0.4);
}

.feature-item i {
    font-size: 16px;
    color: #ffffff;
}

.feature-item span {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* New Sports Highlights Design */
.sports-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 25px 0;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    border-left: 4px solid var(--red-accent);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.highlight-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--red-accent), #d9362e);
    border-radius: 12px;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 20px;
    color: white;
}

.highlight-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.highlight-text strong {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-bg);
    line-height: 1.2;
}

.highlight-text span {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.4;
}

.landing-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Left-aligned section layout */
.landing-section.left {
    flex-direction: row;
}

/* Right-aligned section layout */
.landing-section.right {
    flex-direction: row-reverse;
}

/* Text content within sections */
.landing-text {
    flex: 1;
    text-align: left;
    padding: 0 20px;
}

/* Image container within sections */
.landing-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Image within landing sections */
.landing-section-image {
    max-width: 420px;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.landing-section-image:hover {
    transform: scale(1.05);
}

/* Section title styles */
.landing-section-title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--red-accent);
    line-height: 1.2;
}

/* Section description styles */
.landing-section-description {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.7;
    color: #333;
    margin-bottom: 30px;
}

/* Mid-page call-to-action section - sleek design */
.landing-mid-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--red-accent) 0%, #d9362e 100%);
    color: white;
    border-radius: 20px;
    margin: 40px 20px;
    box-shadow: 0 15px 50px rgba(255,65,54,0.3);
    position: relative;
    overflow: hidden;
}

.landing-mid-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.landing-mid-cta .landing-cta-title {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: bold;
    margin-bottom: 15px;
    color: white;
    position: relative;
    z-index: 1;
}

.landing-mid-cta .landing-cta-description {
    font-size: clamp(18px, 2.5vw, 20px);
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
    position: relative;
    z-index: 1;
}

/* Smash odds section - special styling */
.smash-odds {
    background: linear-gradient(135deg, #ff4136, #e74c3c);
    color: white;
}

/* Sports Social Media CTA */
.sports-social {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    position: relative;
    overflow: hidden;
}

.sports-social::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.sports-features {
    display: flex;
    gap: 15px;
    margin: 25px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.sport-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sport-feature:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.sport-feature i {
    font-size: 18px;
    color: #ffffff;
}

.sport-feature span {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Call-to-action section */
.landing-cta {
    text-align: center;
    padding: 60px 40px;
    background: white;
    color: var(--primary-bg);
    border-radius: 20px;
    margin: 40px 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* CTA title styles */
.landing-cta-title {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--primary-bg);
}

/* CTA description styles */
.landing-cta-description {
    font-size: clamp(18px, 2.5vw, 20px);
    margin-bottom: 30px;
    color: #666;
    line-height: 1.6;
}

/* Container for CTA buttons */
.landing-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Pricing section - clean modern design */
.pricing {
    text-align: center;
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    margin: 0 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.pricing .landing-section-title {
    margin-bottom: 40px;
    color: var(--primary-bg);
}

/* Simplified pricing layout */
.pricing-simple {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

/* Single simplified pricing item */
.pricing-item-simple {
    text-align: center;
    padding: 50px 40px;
    background: linear-gradient(135deg, var(--primary-bg) 0%, #003366 100%);
    border-radius: 20px;
    color: white;
    box-shadow: 0 15px 50px rgba(0,31,63,0.3);
    max-width: 500px;
    width: 100%;
    border: 3px solid var(--red-accent);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-item-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.pricing-item-simple:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,31,63,0.4);
    border-color: #4CAF50;
}

/* Heading within simplified pricing item */
.pricing-item-simple h3 {
    font-size: 2em;
    margin-bottom: 1.5rem;
    color: white;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Simplified price display */
.price-display-simple {
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.price-amount-simple {
    font-size: 5em;
    font-weight: bold;
    line-height: 1;
    color: #4CAF50;
    display: block;
    margin-bottom: 10px;
}

.price-subtitle-simple {
    font-size: 1.5em;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

/* Simplified pricing item list styles */
.pricing-item-simple ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    position: relative;
    z-index: 1;
}

.pricing-item-simple ul li {
    padding: 15px 0;
    display: flex;
    align-items: center;
    color: white;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    font-size: 1.1em;
}

.pricing-item-simple ul li:last-child {
    border-bottom: none;
}

.pricing-item-simple ul li i {
    color: #4CAF50;
    margin-right: 15px;
    font-size: 1.3em;
    min-width: 25px;
}

/* Button within pricing section */
.pricing .landing-button {
    margin-top: 40px;
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.1em;
    font-weight: 600;
}

/* Footer styles */
.landing-footer {
    background-color: var(--primary-bg);
    color: #ffffff;
    text-align: center;
    padding: var(--padding-small);
    font-size: 14px;
    margin-top: 40px;
}

/* Utility class for centering text */
.center {
    text-align: center;
}

/* Animation for landing sections */
.landing-section {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

/* Staggered animation delays for sections */
.landing-section:nth-child(1) { animation-delay: 0.2s; }
.landing-section:nth-child(2) { animation-delay: 0.4s; }
.landing-section:nth-child(3) { animation-delay: 0.6s; }
.landing-section:nth-child(4) { animation-delay: 0.8s; }
.landing-section:nth-child(5) { animation-delay: 1.0s; }
.landing-section:nth-child(6) { animation-delay: 1.2s; }
.landing-section:nth-child(7) { animation-delay: 1.4s; }

/* Keyframes for fade-in animation */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ------------------- Auth Page Styles ------------------- */

/* Styles for authentication container (login/signup) */
.auth-container {
    max-width: 400px;
    margin: 50px auto;
    padding: var(--padding-small);
    text-align: center;
    background: var(--secondary-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    color: var(--primary-bg);
}

/* Heading within auth container */
.auth-container h1 {
    margin-bottom: 20px;
    font-size: 2em;
}

/* Subtitle within auth container */
.auth-subtitle {
    font-size: 1em;
    margin-bottom: 20px;
    color: #666666;
}

/* Logo within auth container */
.auth-logo {
    margin-bottom: 20px;
}

/* Logo image styles */
.auth-logo-img {
    max-width: 200px;
    height: auto;
}

/* Form styles for auth pages */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Form group styles (merged from form.css) */
.form-group {
    margin-bottom: 15px;
    text-align: left;
}

/* Label styles within form groups */
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: var(--primary-bg);
}

/* Input and textarea styles within form groups */
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: var(--font-size-base);
}

/* Textarea-specific styles */
.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

/* Focus state for form inputs */
/*
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red-accent);
    box-shadow: 0 0 5px rgba(255, 65, 54, 0.3);
}
*/

/* Error message styles */
.error {
    color: var(--red-accent);
    font-size: 0.9em;
    margin-top: 5px;
    display: block;
}

/* Links within auth container */
.auth-links {
    margin-top: 20px;
    font-size: 0.9em;
}

/* Styles for auth links */
.auth-link {
    color: #333333;
    text-decoration: underline;
    font-weight: 500;
}

/* Hover state for auth links */
.auth-link:hover {
    color: var(--red-accent);
    text-decoration: underline;
}

/* Forgot Password Section Styles */
.forgot-password-section {
    text-align: right;
    margin-bottom: 20px;
}

.forgot-password-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--red-accent);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.forgot-password-link:hover {
    color: #d9362e;
    text-decoration: underline;
}

.forgot-password-link i {
    font-size: 12px;
}

/* Social login buttons */
.social-login {
    display: flex;
    flex-direction: column;
    gap: var(--margin-small);
    margin-bottom: 20px;
}

.social-login .landing-button--secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--secondary-bg);
    color: var(--primary-bg);
    border: 1px solid var(--border-color);
}

.social-login .landing-button--secondary:hover {
    box-shadow: var(--shadow-hover);
}

/* Divider for social login */
.auth-divider {
    text-align: center;
    margin: 15px 0;
    color: var(--gray-light);
}

/* Base styles for landing page buttons */
.landing-button {
    width: auto;
    padding: var(--padding-small) 20px;
    border: none;
    border-radius: var(--border-radius);
    color: white;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    text-decoration: none;
    display: inline-block;
}

/* Primary button variant */
.landing-button--primary {
    background-color: #d9362e;
    color: #ffffff;
}

/* Hover state for primary button */
.landing-button--primary:hover {
    background-color: #d9362e;
    transform: translateY(-2px);
}

/* Disabled state for buttons */
.landing-button--primary:disabled {
    background-color: #b3322b;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Secondary button variant */
.landing-button--secondary {
    background-color: var(--primary-bg);
    color: white;
    border: 2px solid var(--primary-bg);
}

/* Hover state for secondary button */
.landing-button--secondary:hover {
    background-color: var(--red-accent);
    border-color: var(--red-accent);
    transform: translateY(-2px);
}

/* Image preview styles */
.preview-image {
    display: block;
    margin-top: 10px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-light);
}

/* File input styles */
.form-group input[type="file"] {
    padding: 8px;
    border: none;
}

/* ------------------- Profile Edit Styles ------------------- */

/* Profile edit modal overlay */
.profile-edit-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1003;
    justify-content: center;
    align-items: center;
}

/* Profile edit modal content */
.profile-edit-modal-content {
    background-color: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 30px;
    width: 900px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    position: relative;
    color: var(--primary-bg);
}

/* Close button for profile edit modal */
.profile-edit-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    color: var(--gray-light);
    cursor: pointer;
    border: none;
    background: none;
}

/* Hover state for close button */
.profile-edit-modal-close:hover {
    color: var(--red-accent);
}

/* Note text within profile edit modal */
.profile-edit-note {
    color: var(--gray-light);
    font-size: 12px;
    margin-top: 10px;
}

/* Links within profile edit note */
.profile-edit-note a {
    color: var(--primary-blue);
    text-decoration: none;
}

/* Hover state for profile edit note links */
.profile-edit-note a:hover {
    text-decoration: underline;
}

/* Form groups within profile edit modal */
.profile-edit-modal-content .form-group {
    margin-bottom: 20px;
}

/* Password reset section within modal */
.profile-edit-modal-content .password-reset-section {
    margin-top: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 1px solid #dee2e6;
}

.profile-edit-modal-content .password-reset-header h3 {
    color: var(--primary-bg);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.profile-edit-modal-content .password-reset-header p {
    color: var(--gray-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

/* Labels within profile edit modal form */
.profile-edit-modal-content label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-bg);
    font-size: 0.95rem;
}

/* Input fields within profile edit modal */
.profile-edit-modal-content input,
.profile-edit-modal-content textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    background: white;
    color: var(--primary-bg);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.profile-edit-modal-content input:focus,
.profile-edit-modal-content textarea:focus {
    outline: none;
    border-color: var(--red-accent);
    box-shadow: 0 0 0 3px rgba(255, 65, 54, 0.1);
}

.profile-edit-modal-content textarea {
    min-height: 100px;
    resize: vertical;
}

/* Profile edit and submit buttons */
.profile-edit-btn, .post-submit {
    background-color: var(--red-accent);
    border: none;
    border-radius: 8px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

/* Hover state for profile edit and submit buttons */
.profile-edit-btn:hover, .post-submit:hover {
    background-color: #d9362e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 65, 54, 0.3);
}

/* Disabled state for profile edit and submit buttons */
.profile-edit-btn:disabled, .post-submit:disabled {
    background-color: #b3322b;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Actions container for profile edit modal */
.profile-edit-modal-content .profile-edit-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 10px;
}

/* Banner section in profile edit modal */
.profile-edit-modal-content .profile-edit-banner {
    position: relative;
    width: 100%;
    height: 180px;
    margin-bottom: 25px;
    border-radius: 12px;
    overflow: hidden;
}

/* Banner image in profile edit modal */
.profile-edit-modal-content .profile-edit-banner img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
}

/* Avatar section in profile edit modal */
.profile-edit-modal-content .profile-edit-avatar {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 25px;
}

/* Avatar image in profile edit modal */
.profile-edit-modal-content .profile-edit-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 5px solid var(--secondary-bg);
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Form container in profile edit modal */
.edit-profile-form {
    margin-top: 25px;
}

/* Edit profile header styling */
.edit-profile-header {
    margin-bottom: 25px;
    text-align: center;
}

.profile-edit-modal-content h2 {
    color: var(--primary-bg);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

/* Action buttons in profile edit modal */
.profile-edit-modal-content .profile-edit-action-btn {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--gray-light);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

/* Hover state for action buttons */
.profile-edit-modal-content .profile-edit-action-btn:hover {
    border-color: var(--red-accent);
    color: var(--red-accent);
}

/* ------------------- Signup Page Styles ------------------- */

/* Signup container */
.signup-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
}

/* Signup card */
.signup-card {
    background: var(--secondary-bg);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 500px;
    color: var(--primary-bg);
}

/* Signup header */
.signup-header {
    text-align: center;
    margin-bottom: 30px;
}

/* Signup logo */
.signup-logo {
    margin-bottom: 20px;
}

.signup-logo img {
    max-width: 200px;
    height: auto;
}

/* Signup step indicator */
/* Removed - using unified step indicator CSS below */

/* Signup title and subtitle */
.signup-title {
    font-size: 2em;
    margin-bottom: 10px;
    color: var(--primary-bg);
}

.signup-subtitle {
    color: var(--gray-light);
    margin-bottom: 30px;
}

/* Social login buttons */
.social-login {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.social-login a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--primary-bg);
    background: var(--secondary-bg);
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-login a:hover {
    background: var(--border-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.social-login a i {
    font-size: 18px;
}

/* Auth divider */
.auth-divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
    color: var(--gray-light);
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
}

.auth-divider span {
    background: var(--secondary-bg);
    padding: 0 15px;
    font-size: 14px;
}

/* Signup form */
.signup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.signup-form-group {
    text-align: left;
}

.signup-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-bg);
    font-size: 14px;
}

.signup-form input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 16px;
    background: var(--secondary-bg);
    color: var(--primary-bg);
    transition: border-color 0.3s ease;
}

.signup-form input:focus {
    outline: none;
    border-color: var(--red-accent);
    box-shadow: 0 0 0 3px rgba(255, 65, 54, 0.1);
}

.signup-error {
    color: var(--red-accent);
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

/* Signup submit button */
.signup-submit-btn {
    background: var(--red-accent);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.signup-submit-btn:hover {
    background: #d9362e;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 65, 54, 0.3);
}

.signup-submit-btn:disabled {
    background: var(--gray-light);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Signup links */
.signup-links {
    text-align: center;
    margin-top: 20px;
}

.signup-links p {
    margin: 10px 0;
    color: var(--gray-light);
    font-size: 14px;
}

.signup-links a {
    color: var(--red-accent);
    text-decoration: none;
    font-weight: 500;
}

.signup-links a:hover {
    text-decoration: underline;
}

/* Responsive Design - Moved to responsive.css */

/* Profile Setup Styles */
.profile-setup-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
}

.profile-setup-card {
    background: var(--secondary-bg);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 100%;
    max-width: 500px;
    color: var(--primary-bg);
}

.profile-setup-header {
    text-align: center;
    margin-bottom: 30px;
}

.profile-setup-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.profile-setup-title {
    font-size: 2em;
    margin-bottom: 10px;
    color: var(--primary-bg);
}

.profile-setup-subtitle {
    color: var(--gray-light);
    margin-bottom: 30px;
}

.profile-setup-step-indicator {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    position: relative;
}

.profile-setup-step-indicator::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

.profile-setup-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    background: var(--secondary-bg);
    padding: 0 10px;
}

.profile-setup-step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--border-color);
    color: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.profile-setup-step.completed .profile-setup-step-number {
    background: var(--red-accent);
    color: white;
}

.profile-setup-step.active .profile-setup-step-number {
    background: var(--red-accent);
    color: white;
}

.profile-setup-step span {
    font-size: 12px;
    color: var(--gray-light);
    font-weight: 500;
}

.profile-setup-step.completed span,
.profile-setup-step.active span {
    color: var(--red-accent);
}

.profile-setup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.profile-setup-form-group {
    text-align: left;
}

.profile-setup-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-bg);
    font-size: 14px;
}

.profile-setup-form input[type="file"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 16px;
    background: var(--secondary-bg);
    color: var(--primary-bg);
    transition: border-color 0.3s ease;
}

.profile-setup-form input[type="file"]:focus {
    outline: none;
    border-color: var(--red-accent);
    box-shadow: 0 0 0 3px rgba(255, 65, 54, 0.1);
}

.profile-setup-error {
    color: var(--red-accent);
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

.profile-setup-preview {
    display: block;
    margin-top: 10px;
    max-width: 100px;
    max-height: 100px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    object-fit: cover;
}

.profile-setup-banner-preview {
    display: block;
    margin-top: 10px;
    max-width: 100%;
    max-height: 150px;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    object-fit: cover;
}

.profile-setup-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

/* Profile setup button icon spacing */
.profile-setup-buttons .landing-button i {
    margin-right: 8px;
}

/* Responsive design for profile setup */
/* Responsive Design - Moved to responsive.css */

/* Step indicator styles for 2-step flow */
.signup-step-indicator,
.profile-setup-step-indicator {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    position: relative;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.signup-step-indicator::before,
.profile-setup-step-indicator::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

.signup-step,
.profile-setup-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    background: var(--secondary-bg);
    padding: 0 10px;
}

.signup-step-number,
.profile-setup-step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--border-color);
    color: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.signup-step.completed .signup-step-number,
.profile-setup-step.completed .profile-setup-step-number {
    background: var(--red-accent);
    color: white;
}

.signup-step.active .signup-step-number,
.profile-setup-step.active .profile-setup-step-number {
    background: var(--red-accent);
    color: white;
}

.signup-step span,
.profile-setup-step span {
    font-size: 12px;
    color: var(--gray-light);
    font-weight: 500;
}

.signup-step.completed span,
.signup-step.active span,
.profile-setup-step.completed span,
.profile-setup-step.active span {
    color: var(--red-accent);
}



