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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #000;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(249, 92, 88, 0.3);
    border-bottom: 1px solid #f95c58;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    color: #f95c58;
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.signup-btn {
    background: #f95c58;
    color: #000;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(249, 92, 88, 0.4);
}

/* Hero Section */
.hero {
    background: url('../img/banner.jpg') no-repeat center center;
    background-size: cover;
    padding: 12rem 0;
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.46) 50%, rgba(0,0,0,0.72) 100%);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.primary-btn {
    background: #f95c58;
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(249, 92, 88, 0.4);
}

.secondary-btn {
    background: transparent;
    color: #f95c58;
    border: 2px solid #f95c58;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.secondary-btn:hover {
    background: #f95c58;
    color: #000;
}

.stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.stat .label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Meaning Section */
.meaning {
    padding: 6rem 0;
    background: #000;
    border-top: 1px solid #f95c58;
}

.meaning h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #f95c58;
}

.meaning-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.meaning-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #ccc;
}

.meaning-text h3 {
    margin-bottom: 1rem;
    color: #f95c58;
}

.meaning-text ul {
    list-style: none;
    padding-left: 0;
}

.meaning-text li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.meaning-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f95c58;
    font-weight: bold;
}

.meaning-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Join Section */
.join {
    padding: 6rem 0;
    background: #1a1a1a;
    text-align: center;
}

.join h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #f95c58;
}

.join-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 3rem;
}

.join-subtitle a {
    color: #f95c58;
    text-decoration: none;
}

.join-subtitle a:hover {
    text-decoration: underline;
}

.join-btn {
    font-size: 1.1rem;
    padding: 1rem 3rem;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: #000;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #f95c58;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: #1a1a1a;
    border: 1px solid #f95c58;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(249, 92, 88, 0.3);
    border-color: #f95c58;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #f95c58;
}

.feature-card p {
    color: #ccc;
    font-size: 0.95rem;
}

/* App Section */
.app {
    padding: 6rem 0;
    background: #1a1a1a;
    color: #fff;
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.app-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.app-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.app-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.app-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.app-features li {
    padding: 0.5rem 0;
    font-size: 1rem;
}

.app-download {
    display: flex;
    gap: 1rem;
}

.download-btn {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-2px);
}

.download-btn.apple {
    background: #000;
    color: #fff;
}

.download-btn.google {
    background: #fff;
    color: #333;
}

/* Rules Section */
.rules {
    padding: 6rem 0;
    background: #000;
}

.rules h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #f95c58;
}

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

.rule-item {
    display: flex;
    gap: 2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #333;
}

.rule-number {
    font-size: 2rem;
    font-weight: 700;
    color: #f95c58;
    min-width: 50px;
}

.rule-text h4 {
    margin-bottom: 0.5rem;
    color: #f95c58;
}

.rule-text p {
    color: #ccc;
}

/* Feelings Section */
.feelings {
    padding: 6rem 0;
    background: #1a1a1a;
}

.feelings h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #f95c58;
}

.feelings-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.feelings-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #ccc;
}

.feelings-text h3 {
    margin-bottom: 1rem;
    color: #f95c58;
}

.feelings-text ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.feelings-text li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.feelings-text li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #f95c58;
    font-weight: bold;
}

.feelings-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Dictionary Section */
.dictionary {
    padding: 6rem 0;
    background: #000;
}

.dictionary h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #f95c58;
}

.dictionary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.dictionary-item {
    background: #1a1a1a;
    border: 1px solid #f95c58;
    padding: 1.5rem;
    border-radius: 10px;
    color: #fff;
    text-align: center;
    transition: all 0.3s ease;
}

.dictionary-item:hover {
    background: #f95c58;
    color: #000;
}

.dictionary-item .term {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.dictionary-item .definition {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Stories Section */
.stories {
    padding: 6rem 0;
    background: #1a1a1a;
}

.stories h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #f95c58;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.story-card {
    background: #000;
    border: 1px solid #f95c58;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(249, 92, 88, 0.1);
}

.story-content p {
    font-style: italic;
    color: #ccc;
    margin-bottom: 1.5rem;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f95c58;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #fff;
}

.author-location {
    font-size: 0.85rem;
    color: #ccc;
}

/* FAQs Section */
.faqs {
    padding: 6rem 0;
    background: #000;
    border-top: 1px solid #f95c58;
}

.faqs h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #f95c58;
}

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

.faq-item {
    border-bottom: 1px solid #333;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #f95c58;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #f95c58;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 0 1.5rem;
    color: #ccc;
    line-height: 1.6;
}

.faq-answer.active {
    max-height: 200px;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    text-align: center;
    color: #fff;
    border-top: 1px solid #f95c58;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-footer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.9rem;
}

/* Footer Section */
.footer {
    padding: 4rem 0;
    background: #000;
    color: #fff;
    border-top: 1px solid #f95c58;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #f95c58;
}

.footer-section ul {
    list-style: none;
    padding-left: 0;
}

.footer-section li {
    padding: 0.5rem 0;
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero {
        padding: 8rem 0;
        min-height: 500px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .meaning-content,
    .app-content,
    .feelings-content {
        grid-template-columns: 1fr;
    }
    
    .features-grid,
    .dictionary-grid,
    .stories-grid,
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .join-steps {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .app-download {
        flex-direction: column;
    }
}