body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    background-color: #ffffff
}

main {
    margin: 0;
    padding: 0;
}

header {
    text-align: center;
    margin-bottom: 2rem;
}

.game-container {
    max-width: 600px;
    margin: 2rem auto;
}

.word-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.word-image {
    width: 100%;
    max-height: 800px;
    object-fit: cover;
    border-radius: 4px;
}

.controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1rem 0;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.message {
    text-align: center;
    margin-top: 1rem;
    min-height: 24px;
}

/* Navigation */
.navbar {
    background-color: #ffffff;
    padding: 1rem;
    margin: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    color: #586e73;
    text-decoration: none;
    font-size: 2rem;
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links a {
    color: #445a5f;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.nav-links a:hover {
    background-color: #e8f0f5;
}

.user-name {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #445a5f;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.user-name:hover {
    background-color: #e8f0f5;
    text-decoration: none;
    color: #2c3e50;
}

.user-name i {
    font-size: 1rem;
}

/* App Selection Grid */
.app-selection {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.app-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, box-shadow 0.3s;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.app-card h2 {
    margin: 0 0 1rem 0;
    color: #2c3e50;
}

.app-card p {
    margin: 0;
    color: #666;
}

.feedback {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 4px;
    background-color: #f8f9fa;
    display: none;
}

.feedback.active {
    display: block;
}

.feedback h3 {
    margin: 0 0 1rem 0;
    color: #2c3e50;
}

.feedback-content {
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.recording {
    background-color: #dc3545 !important;
}

/* Add to your existing CSS */

.auth-container {
    max-width: 400px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.auth-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.form-group input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-actions {
    margin-top: 1.5rem;
}

.auth-links {
    margin-top: 1rem;
    text-align: center;
}

.auth-links a {
    color: #3498db;
    text-decoration: none;
}

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

.alert {
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.alert-error {
    background-color: #fee2e2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.alert-success {
    background-color: #dcfce7;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.btn i {
    margin-right: 0.5rem;
}

.btn.recording i {
    color: #ffffff;
}

/* Landing Page Styles */
.hero-section {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.features-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
    padding: 2rem;
}

.feature-card.reverse {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.feature-content {
    flex: 1;
}

.feature-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.feature-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #586e73;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .feature-card {
        flex-direction: column;
        gap: 2rem;
    }
    
    .feature-card.reverse {
        flex-direction: column;
    }
} 

/* Page Styles */
.page-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.content-section {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.content-section h1 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.resource-section,
.about-section {
    margin-bottom: 2rem;
}

.resource-section h2,
.about-section h2 {
    color: #3498db;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.resource-section ul,
.about-section ul {
    list-style-type: none;
    padding-left: 0;
}

.resource-section li,
.about-section li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.resource-section a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.resource-section a:hover {
    text-decoration: underline;
}

.about-section p {
    line-height: 1.6;
    color: #586e73;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .page-container {
        padding: 0 1rem;
    }
    
    .content-section {
        padding: 1.5rem;
    }
    
    .content-section h1 {
        font-size: 2rem;
    }
} 

/* Apps Grid Styles */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.app-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    min-height: 200px;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.app-card h2 {
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.app-card p {
    color: #586e73;
    margin-bottom: 1rem;
    line-height: 1.5;
    flex-grow: 1;
}

.app-card .btn {
    margin-top: auto;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.app-card .btn i {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .apps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .app-card {
        min-height: 180px;
    }
} 

/* Sentence Completion Styles */
.sentence-container {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.current-sentence {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #2c3e50;
    margin: 0;
    text-align: center;
} 

/* Step By Step Styles */
.steps-container {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.activity-title {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.25rem;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.step-item {
    background: white;
    padding: 1rem;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
    cursor: move;
    user-select: none;
    transition: background-color 0.2s, transform 0.2s;
}

.step-item:hover {
    background-color: #f1f5f9;
    transform: translateX(4px);
}

.sortable-ghost {
    opacity: 0.5;
    background-color: #e2e8f0;
} 