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

:root {
  --dark-bg: #1e1e1e;
  --dark-secondary: #1a1a1a;
  --light-bg: #f5f5f7;
  --accent-blue: #2f2f2f;
  --accent-purple: #3e3e3e;
  --text-light: #ffffff;
  --text-dark: #1a1a1a;
  --text-gray: #6b7280;
}

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

.color_black {
  color: white;
  }

.about_text {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
  font-size: 22px;
  }
  
.pop_btn_position {
  display: flex;
  justify-content: center;
  }

/* Header */
.header {
    background: #1f1f1f;
  backdrop-filter: blur(10px);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  }

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    
}

.mobile-logo {
    display: none;
}

.logo-text {
  text-transform: uppercase;
}

.logo-icon {
  width: 38px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
    opacity: 0.8;
}

.nav-link:hover {
    color: var(--accent-blue);
    opacity: 1;
}

.btn-login {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: var(--text-light);
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 200;
    transition: transform 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.56)
}

.mobile-login {
    display: none;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    position: relative;
    width: 25px;
    height: 20px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
    position: absolute;
    left: 0;
}

.burger-menu span:nth-child(1) {
    top: 0;
}

.burger-menu span:nth-child(2) {
    top: 8px;
}

.burger-menu span:nth-child(3) {
    top: 16px;
}

.burger-menu.active span:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.burger-menu.active span:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
}

/* Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s;
}

.popup-overlay.active {
    display: flex;
    opacity: 1;
}

.popup-content {
    background: var(--dark-secondary);
    border-radius: 20px;
    padding: 40px;
    max-width: 1000px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.popup-content::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.popup-close:hover {
    opacity: 1;
}

.popup-content h2 {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 2rem;
}

.popup-content p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.popup-image {
    margin: 25px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.popup-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.popup-content .btn-primary {
    margin-top: 20px;
    display: inline-block;
}

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

.banner_main {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    padding: 20px;

}

/* Hero Section */
.hero {
  background: #1e1e1e;
  padding: 10px 0 0;
  position: relative;
  z-index: 1;
  background-image: radial-gradient( rgba(34, 34, 34, 0.3) 100%), linear-gradient(rgba(55, 55, 55, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(74, 74, 74, 0.1) 1px, transparent 1px);
  background-size: 100% 100%, 50px 50px, 50px 50px;
  background-position: center, 0 0, 0 0;
  border-radius: 0 0 0 40px;
}

.hero .container {
    display: grid;
    grid-template-columns: 600px auto;
    gap: 60px;
    align-items: center;
    flex: 1;
    padding-bottom: 0;
    overflow: visible;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.offer-badge {
    display: inline-block;
    color: #10b981;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-title .title-part {
    color: var(--text-light);
}

.hero-title .title-highlight {
    color: var(--accent-purple);
    font-size: 4rem;
}
.main-btn-position {
  display: flex;
  gap: 40px;
  }
  
.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: var(--text-light);
    text-decoration: none;
    display: inline-block;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 200;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    width: fit-content;
    text-align: center;
    text-transform: uppercase;
}

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

.btn-two {
  color: var(--text-light);
  text-decoration: none;
  display: inline-block;
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 200;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  width: fit-content;
  text-align: center;
  text-transform: uppercase;
  border: solid 1px #3b3b3b;
}

.btn-two:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.56);
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
}

.earning-models {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.model-card {
    background: white;
    border-radius: 12px;
    padding: 12px 10px;
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.model-card h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--text-dark);
    font-weight: 700;
}

.model-card p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
}

.stats-banner {
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: -172px;
    left: 0;
    right: 0;
    padding: 40px 20px;
}


.stats-banner .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stats-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
    width: 100%;
}

.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    width: 100%;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-divider {
    color: var(--text-light);
    font-size: 1.2rem;
    opacity: 0.6;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-light);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0.9;
}

.hero-image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    overflow: visible;
}

.hero-image img {
    width: auto;
    max-width: none;
    height: auto;
    max-height: 90vh;
    border-radius: 0;
    box-shadow: none;
    margin-right: -12%;
    padding-top: 84px;
}

/* How It Works Section */
.how-it-works {
    background-color: var(--light-bg);
    color: var(--text-dark);
    padding: 182px 0 80px 0;
}

.works-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.works-text-block {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.works-text-block p {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.1rem;
    margin: 0;
}

.works-text-block .highlight {
    color: var(--accent-blue);
    font-weight: 600;
    background: rgba(59, 130, 246, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

/* Conditions Section */
.conditions {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
    color: var(--text-light);
    padding: 100px 0;
    border-radius: 40px;
}

.conditions .section-title {
    background: linear-gradient(135deg, #fff, #e1e1e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.conditions-content {
    margin-top: 60px;
}

.conditions-text {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px 40px;
    margin-bottom: 50px;
}

.conditions-text p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1.1rem;
    margin: 0;
}

.conditions-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.condition-item {
    display: flex;
    gap: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    transition: transform 0.3s, background 0.3s;
}

.condition-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.condition-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.condition-info h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff, #e1e1e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.condition-info p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirements-list li {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.requirements-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Ecosystem Section */
.ecosystem {
    background-color: var(--light-bg);
    color: var(--text-dark);
    padding: 140px 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.stats-preview {
    background: linear-gradient(135deg, #f0f9ff, #e0e7ff);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.stats-graph {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 100px;
    margin-bottom: 15px;
}

.graph-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--accent-blue), var(--accent-purple));
    border-radius: 4px 4px 0 0;
    min-height: 20px;
}

.stats-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stats-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-blue);
}

.btn-online {
    background: #10b981;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.retention-chart {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    height: 150px;
    margin-bottom: 20px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, #10b981, #34d399);
    border-radius: 8px 8px 0 0;
    min-height: 30px;
}

.app-stores {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.store-icon {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    flex: 1;
    text-align: center;
}

.world-map-section {
    margin: 60px 0;
    text-align: center;
}

.world-map-section h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.map-container img {
    width: 100%;
    height: auto;
    display: block;
}

.ecosystem .btn-primary {
    display: block;
    margin: 40px auto 0;
}

/* Conversion Section */
.conversion {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
    padding: 100px 0;
}

.conversion .section-title {
    color: var(--text-light);
}

.product-categories {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.category-card {
    background: rgba(59, 130, 246, 0.1);
    border: 2px solid var(--accent-blue);
    border-radius: 16px;
    padding: 40px 60px;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    background: rgba(59, 130, 246, 0.2);
}

.category-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 1.5rem;
    color: var(--text-light);
}

.games-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.game-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.game-item:hover {
    transform: scale(1.05);
}

.game-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* Profit Growth Section */
.profit-growth {
    background: #fff;
    padding: 100px 0;
    border-radius: 40px;
}

.profit-growth .section-title {
    color: #000;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    color: #000;
    font-size: 1.1rem;
    margin-bottom: 60px;
}

.profit-chart-container {
    background: rgba(32, 32, 32, 0.95);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.chart-wrapper {
    width: 100%;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.chart-title h3 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.chart-period {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.chart-legend {
    display: flex;
    gap: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.legend-color {
    width: 20px;
    height: 3px;
    border-radius: 2px;
}

.chart-area {
    width: 100%;
    height: 450px;
    margin-bottom: 30px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 20px;
    overflow: hidden;
}

.profit-chart {
    width: 100%;
    height: 100%;
}

.profit-line {
    stroke: url(#profitGradient);
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.5));
}

.profit-area {
    opacity: 0.6;
}

.data-points circle {
    fill: var(--accent-blue);
    stroke: white;
    stroke-width: 2;
    r: 5;
    transition: r 0.3s;
    cursor: pointer;
}

.data-points circle:hover {
    r: 7;
    fill: var(--accent-purple);
}

.data-points .point-label {
    fill: var(--text-light);
    font-size: 12px;
    font-weight: 600;
    text-anchor: middle;
    opacity: 0;
    transition: opacity 0.3s;
}

.data-points circle:hover + .point-label {
    opacity: 1;
}

.chart-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
}

.stat-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.stat-box.highlight {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border-color: var(--accent-blue);
}

.stat-box .stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.stat-box .stat-value {
    display: block;
    color: var(--text-light);
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff, #e1e1e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-box.highlight .stat-value {
    font-size: 2.2rem;
}

/* FAQ Section */
.faq-section {
    background-color: var(--light-bg);
    color: var(--text-dark);
    padding: 100px 0;
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

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

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

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

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

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

.faq-answer p {
    padding: 0 20px 20px;
    color: var(--text-gray);
    line-height: 1.6;
}

.chat-preview {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.chat-message {
    margin-bottom: 20px;
    padding: 15px 20px;
    border-radius: 12px;
    max-width: 80%;
}

.chat-message.bot {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: white;
    margin-right: auto;
}

.chat-message.user {
    background: #f3f4f6;
    color: var(--text-dark);
    margin-left: auto;
    text-align: left;
}

.chat-message p {
    margin: 0;
}

/* Footer */
.footer {
    background: #f5f5f7;
    padding: 40px 0;
    text-align: center;
}

.copyright {
    color: #000;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {

  .works-content {
  grid-template-columns: auto;
}

    .burger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--dark-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-link {
        font-size: 1.5rem;
        opacity: 1;
    }
    
    .mobile-logo {
        display: flex !important;
        margin-bottom: 30px;
    }
    
    .logo:not(.mobile-logo) {
        position: relative;
    }
    
    .mobile-login {
        margin-top: 30px;
        display: inline-block;
    }
    
    .desktop-login {
        display: none;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-bottom: 220px;
    }
    
    .hero-content .btn-primary {
        display: block;
        width: fit-content;
    }
    
    .hero-image {
        display: none;
    }
    
    .faq-container {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-divider {
        display: none;
    }

    .stats-banner {
        bottom: -260px;
    }

    .ecosystem {
        padding: 260px 0 80px 0;
      }

      .how-it-works {
        padding: 254px 0 80px 0;
      }
      
      .main-btn-position {
          justify-content: center;
          }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0 100px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-title .title-highlight {
        font-size: 3rem;
    }
    
    .hero-image img {
        margin-right: 0;
        padding-top: 0;
        max-width: 100%;
        width: 100%;
        max-height: 50vh;
    }
    
    .stats-banner {
        margin-top: 0;
        margin-bottom: 0;
        padding: 40px 20px;
        bottom: -177px;
    }
    
    .condition-item {
        flex-direction: column;
        text-align: center;
    }
    
    .condition-icon {
        margin: 0 auto;
    }
    
    .ecosystem {
        padding: 160px 0 100px;
    }
    
    .stats-grid {
        flex-direction: column;
        gap: 25px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .product-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .games-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .earning-models {
        flex-direction: column;
    }
    
    .profit-chart-container {
        padding: 20px;
    }
    
    .chart-area {
        height: 350px;
        padding: 15px;
    }
    
    .chart-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .chart-stats {
        grid-template-columns: 1fr;
    }
    
      .main-btn-position {
    justify-content: center;
    flex-direction: column;
    margin: 0 auto;
  }
  
  .btn-two {
  width: 254px;
}
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0 80px;
    }
    
    .hero-content .btn-primary {
        margin: 0 auto;
        display: block;
        width: fit-content;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-title .title-highlight {
        font-size: 2.2rem;
    }
    
    .hero-image img {
        margin-right: 0;
        padding-top: 0;
        max-width: 100%;
        width: 100%;
        max-height: 40vh;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .stats-banner {
        padding: 40px 20px;
        margin-top: 0;
        margin-bottom: 0;
        bottom: -164px;
    }
    
    .ecosystem {
        padding: 120px 0 60px;
    }
    
    .stats-intro {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .stats-grid {
        gap: 20px;
    }
    
    .games-showcase {
        grid-template-columns: 1fr;
    }
    
    .game-item img {
        height: 300px;
    }
    
    .model-card {
        padding: 15px 20px;
    }
    
    .category-card {
        padding: 30px 40px;
    }
    
    .profit-chart-container {
        padding: 15px;
    }
    
    .chart-area {
        height: 300px;
        padding: 10px;
    }
    
    .chart-title h3 {
        font-size: 1.2rem;
    }
    
    .stat-box .stat-value {
        font-size: 1.5rem;
    }
    
    .stat-box.highlight .stat-value {
        font-size: 1.8rem;
    }

    .how-it-works {
        padding: 172px 0 80px 0;
      }

}
