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

:root {
    --primary-color: #e91e63;
    --primary-dark: #c2185b;
    --secondary-color: #667eea;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 10px 25px rgba(0,0,0,0.15);
}

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

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

/* Navigation */
.navbar {
    background: var(--white);
    padding: 1rem 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: var(--white);
    color: var(--text-color);
    padding: 5rem 2rem;
}

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

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

.hero-left {
    text-align: left;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-color);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.hero-features {
    list-style: none;
    margin-bottom: 2.5rem;
    padding: 0;
}

.hero-features li {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.hero-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1.4;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-interface-form {
    background: #fafafa;
    border-radius: 20px;
    padding: 2.5rem;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8e8e8;
}

.player-input-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.player-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--white);
    color: var(--text-color);
    transition: border-color 0.3s;
}

.player-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.player-input::placeholder {
    color: #999;
}

.gender-select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--white);
    color: var(--text-color);
    cursor: pointer;
    transition: border-color 0.3s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.gender-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.play-button {
    width: 100%;
    padding: 1.2rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    margin-top: 1rem;
}

.play-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
    background: var(--primary-dark);
}

.play-button:active {
    transform: translateY(0);
}

/* Game Screen Styles */
.game-screen {
    background: #fafafa;
    border-radius: 20px;
    padding: 2.5rem;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8e8e8;
    text-align: center;
}

.game-player-turn {
    margin-bottom: 2rem;
}

.current-player-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.player-turn-text {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
}

.game-choice-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.choice-btn {
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    color: var(--white);
}

.truth-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.truth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.dare-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.dare-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.choice-btn:active {
    transform: translateY(0);
}

.game-question-display {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e8e8e8;
}

.question-type {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.question-text {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 2rem;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.next-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.next-button {
    width: 100%;
    padding: 1.2rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.next-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
    background: var(--primary-dark);
}

.next-button:active {
    transform: translateY(0);
}

.heat-level-dropdown {
    width: 100%;
    padding: 1.2rem 2rem;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: inherit;
    background: var(--white);
    color: var(--text-color);
    cursor: pointer;
    transition: border-color 0.3s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.heat-level-dropdown:focus {
    outline: none;
    border-color: var(--primary-color);
}

.upgrade-message {
    text-align: center;
    padding: 2rem 0;
    position: relative;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    border-radius: 15px;
    border: 2px solid var(--primary-color);
    padding-top: 3.5rem;
}

.close-upgrade-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s, color 0.3s;
    line-height: 1;
    padding: 0;
    z-index: 10;
}

.close-upgrade-btn:hover {
    background: #f0f0f0;
    color: var(--text-color);
}

.upgrade-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(233, 30, 99, 0.1);
}

.upgrade-text-first {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 1rem 1.5rem;
    border-radius: 10px;
    display: inline-block;
}

.upgrade-question {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(233, 30, 99, 0.15);
    letter-spacing: 0.5px;
}

.upgrade-app-store-link {
    display: inline-block;
    transition: transform 0.3s;
}

.upgrade-app-store-link:hover {
    transform: translateY(-3px);
}

.app-store-badge {
    height: 60px;
    width: auto;
    display: block;
}

.hero-buttons {
    margin-bottom: 2rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.4);
}

.hero-trust {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.stars {
    color: #ffd700;
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.hero-trust p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* Features Section */
.features {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Heat Levels Section */
.heat-levels {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

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

.heat-card {
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
    color: var(--text-color);
}

.heat-card:hover {
    transform: scale(1.05);
}

.heat-card.light {
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
}

.heat-card.spark {
    background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
    color: var(--white);
}

.heat-card.hot {
    background: linear-gradient(135deg, #ff7675 0%, #d63031 100%);
    color: var(--white);
}

.heat-card.extreme {
    background: linear-gradient(135deg, #6c5ce7 0%, #5f3dc4 100%);
    color: var(--white);
}

.heat-card h4 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.heat-card p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* How to Play Section */
.how-to-play {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.game-interface-container {
    max-width: 600px;
    margin: 3rem auto;
    text-align: center;
}

.game-interface-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    display: block;
    margin: 0 auto;
}

.game-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.game-step {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.game-step p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* Reviews Section */
.reviews {
    padding: 5rem 2rem;
    background: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--bg-light);
    padding: 0;
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.review-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.review-stars {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.review-author {
    font-weight: 600;
    color: var(--text-color);
}

/* Plans Section */
.plans {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
}

.plan-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.plan-card.popular {
    border-color: var(--primary-color);
    border-width: 3px;
}

.plan-card.best-value {
    border-color: #4caf50;
    border-width: 3px;
}

.popular-badge,
.value-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 0.35rem 1rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.value-badge {
    background: #4caf50;
}

.plan-title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
    font-weight: 700;
}

.plan-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.plan-period {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.plan-features {
    list-style: none;
    margin: 1rem 0;
    text-align: left;
    min-height: 150px;
    font-size: 0.9rem;
    flex-grow: 1;
}

.plan-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-light);
}

.plan-features li:last-child {
    border-bottom: none;
}

.btn-plan {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
}

.btn-plan:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
}

/* Help/FAQ Section */
.help {
    padding: 5rem 2rem;
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    color: var(--text-color);
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem;
}

.faq-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s;
    color: var(--primary-color);
    font-weight: 300;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Promotional Banner Section */
.promo-banner {
    background: var(--primary-color);
    padding: 4rem 2rem;
    text-align: center;
}

.promo-container {
    max-width: 800px;
    margin: 0 auto;
}

.promo-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.promo-subtitle {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.promo-button {
    background: #ffd700;
    color: var(--text-color);
    padding: 1rem 3rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 2rem;
}

.promo-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.promo-offer {
    font-size: 1rem;
    color: var(--white);
    opacity: 0.9;
    margin: 0;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: var(--white);
    padding: 3rem 2rem 2rem;
}

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

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

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-app-link {
    display: inline-block;
    margin-top: 0.5rem;
}

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

.footer-bottom p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-disclaimer {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-left {
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-trust {
        align-items: center;
    }

    .player-input-group {
        grid-template-columns: 1fr;
    }

    .game-interface-form,
    .game-screen {
        padding: 2rem;
    }

    .game-choice-buttons {
        grid-template-columns: 1fr;
    }

    .next-controls {
        grid-template-columns: 1fr;
    }

    .current-player-name {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid,
    .reviews-grid,
    .game-steps {
        grid-template-columns: 1fr;
    }

    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .heat-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .heat-levels,
    .reviews,
    .plans,
    .help,
    .how-to-play,
    .promo-banner {
        padding: 3rem 1rem;
    }

    .promo-title {
        font-size: 2rem;
    }

    .promo-subtitle {
        font-size: 1.1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1200px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

