:root {
    --primary-color: #2196F3;      /* Main blue */
    --primary-light: #64B5F6;      /* Lighter blue for hover states */
    --primary-dark: #1976D2;       /* Darker blue for borders/backgrounds */
    --background-color: #1a1a1a;   /* Keep dark background */
    --card-background: #242424;    /* Keep dark cards */
    --text-color: #ffffff;
    --text-secondary: #b3b3b3;
    --shadow-color: rgba(0, 0, 0, 0.3);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

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

/* Header Styles */
.app-header {
    background-color: var(--card-background);
    padding: 20px;
    position: sticky;
    top: 0;
    z-index: 100;
    text-align: center;
}

.app-header h1 {
    color: var(--text-color);
    font-size: 1.5em;
    margin: 0;
}

/* Prompt Card Styles */
.profile-content {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
}

.prompt-card {
    background: var(--card-background);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow-color);
    transform: translateY(20px);
    opacity: 0;
    animation: slideIn 0.5s ease forwards;
}

@keyframes slideIn {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.prompt-photo {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.prompt-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.prompt-card:hover .prompt-photo img {
    transform: scale(1.05);
}

.prompt-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px;
    color: white;
    transform: translateY(0);
    opacity: 1;
    transition: none;
}

.prompt-card:hover .prompt-overlay {
    transform: translateY(0);
    opacity: 1;
}

.prompt-text h3 {
    font-size: 1.2em;
    margin-bottom: 8px;
    color: var(--primary-light);
}

.action-buttons {
    display: flex;
    justify-content: space-around;
    padding: 15px;
    gap: 20px;
}

.action-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background: white;
    box-shadow: 0 2px 6px var(--shadow-color);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn i {
    font-size: 24px;
}

.action-btn.reject i {
    color: #ff4b4b;
}

.action-btn.like i {
    color: var(--primary-light);
}

.action-btn:hover {
    transform: scale(1.1);
}

.action-btn.like:hover i {
    color: var(--primary-color);
}

/* Message textarea styles */
textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--primary-dark);
    border-radius: 8px;
    background: var(--background-color);
    color: var(--text-color);
    resize: vertical;
    font-family: inherit;
    font-size: 1em;
}

/* Reject dialog styles */
.reject-dialog {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.reject-content {
    background: var(--card-background);
    padding: 30px;
    border-radius: 20px;
    max-width: 90%;
    width: 400px;
    text-align: center;
}

.share-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.share-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    border: none;
    border-radius: 12px;
    background: var(--background-color);
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.2s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
    background: var(--primary-dark);
}

.share-btn i {
    font-size: 24px;
    margin-bottom: 5px;
}

.share-btn.messages { color: #3478F6; }
.share-btn.whatsapp { color: #25D366; }
.share-btn.telegram { color: #0088cc; }
.share-btn.copy { color: #808080; }

/* Match Dialog Styles */
.match-dialog {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.match-content {
    background: var(--card-background);
    padding: 30px;
    border-radius: 20px;
    max-width: 90%;
    width: 400px;
    max-height: 90vh;
    overflow-y: auto;
}

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

.match-header h2 {
    color: var(--primary-light);
    margin-bottom: 10px;
}

.form-group {
    margin: 25px 0;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    color: var(--text-color);
    font-weight: 500;
}

input[type="tel"],
input[type="text"]#userName {
    width: 100%;
    padding: 12px;
    background: var(--background-color);
    border: 2px solid var(--primary-dark);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 1em;
}

.date-options, .availability-picker {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.date-option, .time-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 10px;
    background: var(--card-background);
    border: 1px solid #404040;
    border-radius: 8px;
    color: var(--text-color);
    font-size: 0.9em;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.date-option:hover, .time-option:hover {
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.date-option.selected, .time-option.selected {
    background: var(--primary-dark);
    border-color: var(--primary-light);
    color: white;
}

.voice-controls {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.record-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--primary-dark);
    border: none;
    border-radius: 8px;
    color: var(--text-color);
    cursor: pointer;
    transition: background 0.2s ease;
}

.record-btn:hover {
    background: var(--primary-color);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: var(--primary-light);
}

/* Add these styles to your existing CSS file */

.profile-intro {
    padding: 20px;
}

.intro-card {
    background: var(--card-background);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px var(--shadow-color);
    animation: fadeIn 0.5s ease;
}

.intro-card h2 {
    color: var(--primary-light);
    margin-bottom: 10px;
    font-size: 1.5em;
}

.intro-text {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: var(--text-color);
}

.subtitle {
    color: var(--primary-light);
    font-style: italic;
}

.text-prompt {
    padding: 20px;
}

.prompt-content {
    padding: 20px;
}

.guess-input {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.guess-input input {
    flex: 1;
    padding: 10px;
    border: 2px solid var(--primary-dark);
    border-radius: 8px;
    background: var(--background-color);
    color: var(--text-color);
}

.guess-input button {
    padding: 10px 20px;
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: background 0.2s ease;
}

.guess-input button:hover {
    background: var(--primary-light);
}

.scale-container {
    margin-top: 20px;
}

.humor-slider {
    width: 100%;
    height: 10px;
    background: var(--background-color);
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
    margin: 15px 0;
}

.humor-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--primary-light);
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease;
    border: 2px solid var(--primary-color);
    margin-top: -5px;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.humor-slider::-webkit-slider-runnable-track {
    height: 10px;
    background: linear-gradient(to right, 
        var(--primary-dark) 0%,
        var(--primary-color) 50%,
        var(--primary-light) 100%
    );
    border-radius: 5px;
    border: none;
}

.scale-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    color: var(--text-secondary);
    font-size: 0.9em;
}

.scale-value {
    text-align: center;
    margin-top: 15px;
    font-size: 1.2em;
    color: var(--primary-light);
    min-height: 30px;
}

#hotpot-prompt {
    background: var(--card-background);
    overflow: hidden;
}

#hotpot-prompt .prompt-photo {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

#hotpot-prompt .prompt-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

#hotpot-prompt:hover .prompt-photo img {
    transform: scale(1.05);
}

#hotpot-prompt .prompt-content {
    padding: 20px;
}

.guess-result {
    margin-top: 15px;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-size: 1.1em;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.guess-result.show {
    opacity: 1;
    transform: translateY(0);
    background: var(--primary-dark);
    color: var(--text-color);
}

.guess-result i {
    margin-right: 5px;
}

.scale-result {
    margin-top: 15px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    overflow: hidden;
    max-height: 0;
    visibility: hidden;
}

.scale-result.show {
    opacity: 1;
    transform: translateY(0);
    max-height: 200px;
    visibility: visible;
    margin-bottom: 15px;
}

.scale-result .match-message {
    padding: 12px;
    border-radius: 8px;
    position: relative;
}

.scale-result .match-message.success {
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
    color: white;
}

.scale-result .match-message.gentle-reject {
    background: linear-gradient(45deg, #3a3a3a, #4a4a4a);
    color: white;
}

.scale-result .match-message i {
    margin-right: 8px;
}

.match-message {
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    font-size: 1.1em;
    margin-top: 15px;
    animation: pulseIn 0.5s ease;
}

.match-message.success {
    background: var(--primary-dark);
    color: var(--text-color);
    border: 2px solid var(--primary-light);
}

.match-message.gentle-reject {
    background: var(--card-background);
    color: var(--text-secondary);
    border: 2px solid var(--primary-dark);
}

.match-message i {
    margin-right: 8px;
    color: var(--primary-light);
}

.match-message button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 8px 16px;
    background: var(--primary-color);
    border: none;
    border-radius: 20px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
}

.match-message button:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

@keyframes pulseIn {
    0% {
        transform: scale(0.95);
        opacity: 0;
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Add these styles for the custom activity input */
.custom-activity-input {
    margin-top: 12px;
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.custom-activity-input.show {
    height: auto;
    opacity: 1;
    margin-top: 15px;
}

.custom-activity-input input {
    width: 100%;
    padding: 12px;
    border: 1px solid #404040;
    border-radius: 8px;
    background: var(--card-background);
    color: var(--text-color);
    font-family: inherit;
}

/* Update share button colors */
.share-btn.instagram { 
    color: #E1306C;
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.share-btn.instagram:hover {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    color: white;
}

/* Add these styles for the profile basics section */
.profile-basics {
    margin: 20px 15px;
    animation: slideIn 0.5s ease 0.3s; /* Added delay to sequence after photo */
    opacity: 0;
    animation-fill-mode: forwards;
}

.basic-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    background: var(--background-color);
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.info-row:hover {
    transform: translateX(5px);
}

.info-label i {
    color: var(--primary-light);
    font-size: 1.2em;
    width: 24px;
    text-align: center;
}

.info-value {
    color: var(--text-color);
    font-size: 0.95em;
}

.interests {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--primary-dark);
}

.interest-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--primary-dark);
    border-radius: 20px;
    font-size: 0.9em;
    color: var(--text-color);
    transition: all 0.2s ease;
}

.interest-tag:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.interest-tag i {
    color: var(--primary-light);
    font-size: 1em;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .basic-info {
        grid-template-columns: 1fr 1fr;
    }
    
    .interests {
        justify-content: center;
    }
}

/* Update the animation for smoother sequence */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Adjust spacing between cards */
.prompt-card + .profile-basics {
    margin-top: 0;
}

.profile-basics + .prompt-card {
    margin-top: 20px;
}

/* Add/Update styles for action buttons */
.action-btn.lets-do-it {
    width: auto;
    height: auto;
    padding: 12px 24px;
    border-radius: 25px;
    background: var(--primary-color);
    color: white;
    margin-top: 15px;
    font-size: 0.9em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.action-btn.lets-do-it:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.action-btn.lets-do-it i {
    font-size: 1.2em;
    color: white;
}

/* Update match message styling */
.match-message {
    text-align: center;
}

.match-message.success {
    padding: 20px;
    border-radius: 12px;
    margin-top: 15px;
}

/* Update scale result styling */
.scale-result .match-message button,
.guess-result .match-message button {
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    border: none;
    font-size: 1em;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.scale-result .match-message button:hover,
.guess-result .match-message button:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

/* Animation for intro card */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Make sure all interactive elements have hover states */
.intro-card:hover {
    transform: translateY(-2px);
    transition: transform 0.2s ease;
}

/* Ensure proper spacing between sections */
.profile-intro + .profile-content {
    margin-top: 0;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .intro-card {
        padding: 15px;
    }
    
    .intro-card h2 {
        font-size: 1.3em;
    }
}

.break-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.break-content {
    background-color: var(--card-background);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 90%;
    width: 400px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.5s ease;
}

.break-content h2 {
    color: var(--primary-color);
    font-size: 2em;
    margin-bottom: 20px;
}

.break-content p {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 1.1em;
    line-height: 1.6;
}

.break-content p:last-child {
    color: var(--text-secondary);
    font-size: 0.9em;
} 