/* Raani Games App - Modern, Clean, Mobile-First Styles */
:root {
    --primary: #e63946;
    --secondary: #1d3557;
    --accent: #f1faee;
    --text: #222;
    --bg: #fff;
    --shadow: 0 2px 8px rgba(0,0,0,0.07);
}
* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: 'Segoe UI', 'Montserrat', Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.main-header {
    background: var(--secondary);
    color: #fff;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}
.logo, .footer-logo {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
}
.logo span, .footer-logo span {
    color: var(--primary);
}
nav {
    display: flex;
    align-items: center;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}
.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: var(--primary);
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    margin-left: auto;
}
.hamburger span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}
.hero-section {
    background: linear-gradient(120deg, var(--secondary) 60%, var(--primary) 100%);
    color: #fff;
    padding: 4rem 0 2rem 0;
}
.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}
.hero-text {
    flex: 1 1 320px;
}
.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.hero-text span {
    color: var(--primary);
}
.hero-image {
    flex: 1 1 320px;
    text-align: center;
}
.hero-image img {
    max-width: 320px;
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
}
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    border: none;
    background: var(--primary);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: background 0.2s;
    text-decoration: none;
}
.btn.primary:hover, .btn.download-btn:hover {
    background: #b71c2a;
}
.features-section {
    background: var(--accent);
    padding: 3rem 0;
}
.features-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}
.feature-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    padding: 2rem 1.5rem;
    text-align: center;
}
.feature-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}
.download-section {
    background: #fff;
    padding: 3rem 0 2rem 0;
    text-align: center;
}
.download-btn {
    background: var(--secondary);
    color: #fff;
    font-size: 1.2rem;
    margin-top: 1rem;
}
.download-note {
    color: #888;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}
.testimonials-section {
    background: var(--accent);
    padding: 3rem 0;
}
.testimonials-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}
.testimonial-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    padding: 1.5rem 1.2rem;
    text-align: center;
    font-style: italic;
}
.testimonial-card span {
    display: block;
    margin-top: 1rem;
    color: var(--primary);
    font-weight: 600;
    font-style: normal;
}
.contact-section {
    background: #fff;
    padding: 3rem 0 2rem 0;
}
.contact-content {
    max-width: 500px;
    margin: 0 auto;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1.5rem;
}
.input-group input, .input-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #ccc;
    border-radius: 0.7rem;
    font-size: 1rem;
    font-family: inherit;
    resize: none;
}
.input-group textarea {
    min-height: 100px;
}
.main-footer {
    background: var(--secondary);
    color: #fff;
    padding: 2rem 0 1rem 0;
    text-align: center;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.footer-links a {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 0.5rem;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: var(--primary);
}
.advanced-header {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    background: linear-gradient(90deg, #1d3557 80%, #e63946 100%);
}
.advanced-hero {
    background: linear-gradient(120deg, #1d3557 60%, #e63946 100%);
    position: relative;
    overflow: hidden;
}
.hero-sub {
    font-size: 1.2rem;
    color: #f1faee;
    margin-bottom: 1rem;
}
.hero-bullets {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem 0;
}
.hero-bullets li {
    color: #f1faee;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}
.hero-bullets i {
    color: #00d1b2;
    margin-right: 0.5rem;
}
.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.btn.secondary {
    background: #fff;
    color: #e63946;
    border: 2px solid #e63946;
}
.btn.secondary:hover {
    background: #e63946;
    color: #fff;
}
.app-badges {
    margin-top: 1.2rem;
    display: flex;
    gap: 0.7rem;
    justify-content: center;
}
.app-badges img {
    width: 40px;
    height: 40px;
}
.howto-section {
    background: #f1faee;
    padding: 3rem 0 2rem 0;
}
.howto-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}
.howto-steps {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.howto-step {
    background: #fff;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    padding: 2rem 1.5rem;
    text-align: center;
    flex: 1 1 220px;
    max-width: 300px;
    margin-bottom: 1rem;
}
.step-number {
    display: inline-block;
    background: #e63946;
    color: #fff;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    line-height: 36px;
    margin-bottom: 0.7rem;
}
.feature-list {
    list-style: disc inside;
    color: #444;
    font-size: 0.98rem;
    margin: 0.7rem 0 0 0;
    padding: 0 0 0 1rem;
    text-align: left;
}
.advanced-footer {
    background: linear-gradient(90deg, #1d3557 80%, #e63946 100%);
    color: #fff;
    padding: 2.5rem 0 1rem 0;
    text-align: center;
}
.footer-contact {
    margin: 1rem 0 0.5rem 0;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 1rem;
}
.footer-contact i {
    color: #00d1b2;
    margin-right: 0.5rem;
}
.advanced-contact {
    background: #fff;
    padding: 3rem 0 2rem 0;
    text-align: center;
}
.advanced-contact .contact-desc {
    color: #444;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}
.support-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.support-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #f1faee;
    color: #1d3557;
    padding: 0.9rem 1.5rem;
    border-radius: 2rem;
    font-size: 1.08rem;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: background 0.2s, color 0.2s;
}
.support-link:hover {
    background: #e63946;
    color: #fff;
}
.support-link i {
    font-size: 1.3rem;
}
.contact-note {
    color: #e63946;
    font-size: 0.98rem;
    margin-top: 1rem;
    font-style: italic;
}
@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .howto-steps {
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 700px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        right: 0;
        background: var(--secondary);
        flex-direction: column;
        width: 180px;
        box-shadow: var(--shadow);
        z-index: 1000;
    }
    .nav-links.open {
        display: flex;
    }
    .hamburger {
        display: flex;
    }
    .main-header .container {
        flex-wrap: wrap;
    }
    .support-options {
        flex-direction: column;
        gap: 1rem;
    }
}
