* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    font-size: 19px;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1680px;
    margin: 0 auto;
}

.logo-container {
    order: 2;
}

.site-logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.site-logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 30px;
    order: 1;
}

.nav-link {
    font-size: 18px;
    font-weight: 500;
    color: #2c3e50;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #27ae60;
    background-color: rgba(39, 174, 96, 0.1);
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background-color: #27ae60;
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    order: 3;
    padding: 10px;
}

.burger-menu span {
    width: 28px;
    height: 3px;
    background-color: #27ae60;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -7px);
}

.mobile-dropdown {
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transform: translateY(-150%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
}

.mobile-dropdown.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.mobile-link {
    display: block;
    padding: 15px 20px;
    font-size: 18px;
    color: #2c3e50;
    border-radius: 12px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.mobile-link:hover {
    background-color: rgba(39, 174, 96, 0.1);
    color: #27ae60;
    transform: translateX(10px);
}

main {
    margin-top: 90px;
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 5%;
    min-height: 600px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 22px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 16px;
    color: #666;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.floating-image {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

section {
    padding: 80px 5%;
    max-width: 1680px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.diagonal-header {
    position: relative;
    padding: 40px;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
    transform: skewY(-2deg);
    margin-bottom: 80px;
}

.diagonal-header .section-title,
.diagonal-header .section-description {
    transform: skewY(2deg);
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.diagonal-header .section-title {
    color: white;
}

.section-description {
    font-size: 20px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.diagonal-header .section-description {
    color: rgba(255, 255, 255, 0.95);
}

.featured-reviews {
    background-color: #f8f9fa;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.review-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.review-image-wrapper {
    position: relative;
    overflow: hidden;
}

.review-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.review-card:hover .review-image {
    transform: scale(1.1);
}

.review-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #27ae60;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.review-badge.hot {
    background-color: #e74c3c;
}

.review-badge.new {
    background-color: #3498db;
}

.review-content {
    padding: 25px;
}

.review-title {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.3;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
    color: #888;
}

.review-rating {
    color: #f39c12;
    font-weight: 600;
}

.review-excerpt {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-link {
    color: #27ae60;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.review-link:hover {
    color: #229954;
    transform: translateX(5px);
    display: inline-block;
}

.services-showcase {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.services-showcase::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(39, 174, 96, 0.1);
    border-radius: 50%;
}

.services-content {
    position: relative;
    z-index: 2;
}

.services-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.services-intro {
    font-size: 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    opacity: 0.95;
}

.services-diagonal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.service-card-diagonal {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 40px;
    transform: rotate(-2deg);
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.service-card-diagonal:hover {
    transform: rotate(0deg) translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: #27ae60;
}

.service-icon {
    margin-bottom: 25px;
}

.service-icon img {
    width: 80px;
    height: auto;
    filter: invert(1);
}

.service-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 25px;
}

.service-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #27ae60;
    color: white;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-button:hover {
    background-color: #229954;
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 10px 25px rgba(39, 174, 96, 0.3);
}

.testimonials-section {
    background-color: #f8f9fa;
}

.testimonials-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 5px solid #27ae60;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-icon {
    margin-bottom: 20px;
}

.testimonial-icon img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #27ae60;
}

.testimonial-text {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.testimonial-date {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}

.testimonial-rating {
    color: #f39c12;
    font-size: 18px;
}

.game-categories {
    padding: 80px 5%;
}

.categories-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.category-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    height: 250px;
}

.category-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 30px 20px;
    color: white;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.category-item:hover img {
    transform: scale(1.15);
}

.category-item:hover .category-overlay {
    background: linear-gradient(to top, rgba(39, 174, 96, 0.95), rgba(39, 174, 96, 0.7));
}

.category-overlay h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.category-overlay p {
    font-size: 16px;
    opacity: 0.9;
}

.gaming-news {
    background-color: #f8f9fa;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.news-title {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.view-all-link {
    color: #27ae60;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    color: #229954;
    transform: translateX(5px);
    display: inline-block;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 25px;
}

.news-category {
    display: inline-block;
    background-color: #27ae60;
    color: white;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.news-headline {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-summary {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-time {
    font-size: 14px;
    color: #888;
}

.faq-section {
    padding: 80px 5%;
}

.faq-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-horizontal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.faq-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #27ae60;
    background: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

.faq-answer {
    font-size: 17px;
    color: #666;
    line-height: 1.6;
}

.cta-section {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
    text-align: center;
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.cta-text {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background-color: white;
    color: #27ae60;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-5px) rotate(2deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.stats-section {
    background-color: #2c3e50;
    color: white;
    padding: 80px 5%;
}

.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.stat-box {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.stat-value {
    font-size: 48px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 18px;
    opacity: 0.9;
}

.main-footer {
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
    color: white;
    padding: 60px 5% 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 500px;
}

.footer-logo {
    height: 50px;
    width: 50px;
    margin-bottom: 20px;
    filter: invert(1);
}

.footer-description {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #27ae60;
    transform: translateY(-5px) rotate(10deg);
}

.social-link img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #27ae60;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 16px;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: #27ae60;
    transform: translateX(8px);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.footer-legal {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
}

.footer-legal a {
    opacity: 0.75;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    opacity: 1;
    color: #27ae60;
}

.footer-contact {
    font-size: 15px;
    opacity: 0.85;
}

.footer-contact a {
    color: #27ae60;
    font-weight: 600;
}

.footer-copyright {
    font-size: 14px;
    opacity: 0.7;
}

.services-hero {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 100px 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.services-hero-content {
    flex: 1;
}

.page-title {
    font-size: 52px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.page-subtitle {
    font-size: 20px;
    color: #666;
    line-height: 1.7;
}

.services-hero-image {
    flex: 1;
}

.hero-img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.services-detailed {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

.section-title-center {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.services-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
}

.package-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 3px solid transparent;
}

.package-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.package-card.premium {
    border-color: #27ae60;
}

.package-card.elite {
    border-color: #f39c12;
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
}

.package-card.team {
    border-color: #3498db;
}

.package-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background-color: #27ae60;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.package-badge.gold {
    background-color: #f39c12;
}

.package-badge.team-badge {
    background-color: #3498db;
}

.package-title {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    margin-top: 10px;
}

.package-price {
    margin-bottom: 30px;
}

.price-amount {
    font-size: 42px;
    font-weight: 700;
    color: #27ae60;
}

.price-period {
    font-size: 18px;
    color: #888;
}

.package-features {
    margin-bottom: 25px;
}

.package-features li {
    font-size: 16px;
    color: #555;
    margin-bottom: 12px;
    padding-left: 10px;
    line-height: 1.5;
}

.package-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.package-button {
    display: block;
    width: 100%;
    padding: 16px;
    background-color: #27ae60;
    color: white;
    text-align: center;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.package-button:hover {
    background-color: #229954;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
}

.coaching-process {
    padding: 80px 5%;
}

.process-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.process-step {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 5px solid #27ae60;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #27ae60;
    opacity: 0.3;
    margin-bottom: 15px;
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

.step-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.games-covered {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

.games-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.game-item {
    background: white;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.game-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.game-item img {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 15px;
}

.game-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

.game-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.coaches-intro {
    padding: 80px 5%;
    text-align: center;
}

.coaches-title {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.coaches-description {
    font-size: 20px;
    color: #666;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.coaches-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.coach-stat {
    text-align: center;
}

.coach-stat .stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 8px;
}

.coach-stat .stat-label {
    font-size: 18px;
    color: #666;
}

.success-stories {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

.success-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.stories-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.story-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.story-image {
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 4px solid #27ae60;
}

.story-image img {
    width: 100%;
    border-radius: 50%;
}

.story-name {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.story-text {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.story-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    font-weight: 700;
    color: #27ae60;
}

.progress-before {
    color: #e74c3c;
}

.progress-arrow {
    color: #888;
}

.story-achievement {
    display: inline-block;
    background-color: #27ae60;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
}

.cta-services {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    text-align: center;
    padding: 100px 5%;
}

.cta-services-content {
    max-width: 900px;
    margin: 0 auto;
}

.cta-services-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
}

.cta-services-text {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-services-button {
    display: inline-block;
    padding: 18px 45px;
    background-color: white;
    color: #3498db;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-services-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.about-hero {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
    padding: 100px 5%;
    text-align: center;
}

.about-main-title {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-lead {
    font-size: 22px;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.7;
}

.our-story {
    padding: 80px 5%;
}

.story-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-title {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.story-paragraph {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-image {
    flex: 1;
}

.story-img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.mission-vision {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.mv-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.mv-icon {
    font-size: 64px;
    margin-bottom: 25px;
}

.mv-title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.mv-text {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

.our-values {
    padding: 80px 5%;
}

.values-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.value-item {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #27ae60;
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-name {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

.value-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.team-section {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

.team-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.team-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 25px;
    border: 5px solid #27ae60;
}

.team-name {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.team-role {
    font-size: 18px;
    color: #27ae60;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-bio {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.achievements {
    padding: 80px 5%;
}

.achievements-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.achievements-timeline {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.timeline-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.timeline-year {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    min-width: 100px;
}

.timeline-content {
    flex: 1;
}

.timeline-title {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.timeline-description {
    font-size: 17px;
    color: #666;
    line-height: 1.6;
}

.partners {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

.partners-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    align-items: center;
}

.partner-logo {
    background: white;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partner-logo:hover img {
    opacity: 1;
}

.cta-about {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    text-align: center;
    padding: 100px 5%;
}

.cta-about-content {
    max-width: 900px;
    margin: 0 auto;
}

.cta-about-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
}

.cta-about-text {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-about-button {
    display: inline-block;
    padding: 18px 45px;
    background-color: white;
    color: #e74c3c;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-about-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.contact-hero {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 100px 5%;
    text-align: center;
}

.contact-title {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-subtitle {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.7;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-form-section {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-section-title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
    padding: 14px 18px;
    font-size: 16px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #27ae60;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
    border-radius: 20px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #666;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label a {
    color: #27ae60;
    font-weight: 600;
}

.form-submit-button {
    padding: 16px 40px;
    background-color: #27ae60;
    color: white;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.form-submit-button:hover {
    background-color: #229954;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(39, 174, 96, 0.3);
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-section-title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.contact-info-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    font-size: 32px;
    min-width: 50px;
    text-align: center;
}

.info-content {
    flex: 1;
}

.info-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.info-text {
    font-size: 17px;
    color: #27ae60;
    font-weight: 600;
    margin-bottom: 5px;
}

.info-text a {
    color: #27ae60;
}

.info-description {
    font-size: 15px;
    color: #888;
}

.social-links-contact {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link-contact {
    padding: 8px 16px;
    background-color: #27ae60;
    color: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link-contact:hover {
    background-color: #229954;
    transform: translateY(-3px);
}

.map-container {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-title {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.map-embed {
    border-radius: 15px;
    overflow: hidden;
}

.map-embed iframe {
    width: 100%;
    height: 350px;
    border: none;
}

.faq-contact {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

.faq-contact-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-contact-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-contact-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.faq-contact-question {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

.faq-contact-answer {
    font-size: 17px;
    color: #666;
    line-height: 1.6;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.thanks-content {
    background: white;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 700px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: #27ae60;
    color: white;
    font-size: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.3);
}

.thanks-title {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 20px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.thanks-submessage {
    font-size: 18px;
    color: #888;
    margin-bottom: 40px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.thanks-button {
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-button.primary {
    background-color: #27ae60;
    color: white;
}

.thanks-button.primary:hover {
    background-color: #229954;
    transform: translateY(-3px);
}

.thanks-button.secondary {
    background-color: #e9ecef;
    color: #2c3e50;
}

.thanks-button.secondary:hover {
    background-color: #dee2e6;
    transform: translateY(-3px);
}

.thanks-social {
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.thanks-social-text {
    font-size: 16px;
    color: #888;
    margin-bottom: 15px;
}

.thanks-social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.thanks-social-link img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.thanks-social-link:hover img {
    transform: scale(1.2) rotate(10deg);
}

.policy-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 80px 5%;
    text-align: center;
}

.policy-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.policy-date {
    font-size: 18px;
    opacity: 0.85;
}

.policy-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 5%;
}

.policy-section {
    margin-bottom: 50px;
}

.policy-heading {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #27ae60;
}

.policy-text {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-list {
    margin-left: 30px;
    margin-bottom: 20px;
}

.policy-list li {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 12px;
    position: relative;
    padding-left: 10px;
}

.policy-list li::before {
    content: "•";
    color: #27ae60;
    font-weight: 700;
    font-size: 24px;
    position: absolute;
    left: -20px;
}

.policy-footer {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-top: 50px;
}

.policy-footer-text {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 10px;
}

.policy-cta {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
    text-align: center;
    padding: 80px 5%;
}

.policy-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-cta-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
}

.policy-cta-text {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.policy-cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: white;
    color: #27ae60;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.policy-cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.guides-hero {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.95), rgba(52, 73, 94, 0.95)),
        url("../images/guides-hero.webp");
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 5%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guides-hero-overlay {
    text-align: center;
    max-width: 900px;
}

.guides-hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.guides-hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
}

.guides-search-bar {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    gap: 10px;
}

.guides-search-input {
    flex: 1;
    padding: 16px 24px;
    font-size: 17px;
    border: none;
    border-radius: 50px;
    font-family: Arial, sans-serif;
}

.guides-search-button {
    padding: 16px 35px;
    background-color: #27ae60;
    color: white;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.guides-search-button:hover {
    background-color: #229954;
    transform: scale(1.05);
}

.featured-guides {
    padding: 80px 5%;
}

.featured-guides-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.featured-guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.featured-guide-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.featured-guide-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.featured-guide-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #27ae60;
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    z-index: 10;
}

.featured-guide-badge.hot {
    background-color: #e74c3c;
}

.featured-guide-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.featured-guide-content {
    padding: 30px;
}

.featured-guide-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.guide-category,
.guide-difficulty,
.guide-time {
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 600;
}

.guide-category {
    background-color: #3498db;
    color: white;
}

.guide-difficulty {
    background-color: #f39c12;
    color: white;
}

.guide-time {
    background-color: #e9ecef;
    color: #666;
}

.featured-guide-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.featured-guide-excerpt {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.featured-guide-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 14px;
    color: #888;
}

.guide-stat {
    display: flex;
    align-items: center;
    gap: 5px;
}

.featured-guide-button {
    display: inline-block;
    padding: 12px 28px;
    background-color: #27ae60;
    color: white;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.featured-guide-button:hover {
    background-color: #229954;
    transform: translateX(5px);
}

.guides-by-game {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

.guides-by-game-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.game-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.game-tab {
    padding: 12px 28px;
    background-color: white;
    color: #666;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.game-tab:hover,
.game-tab.active {
    background-color: #27ae60;
    color: white;
    border-color: #27ae60;
}

.game-guides-content {
    display: none;
}

.game-guides-content.active {
    display: block;
}

.guides-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.guide-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    gap: 25px;
    align-items: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.guide-item:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.guide-item-icon img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
}

.guide-item-content {
    flex: 1;
}

.guide-item-title {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.guide-item-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.guide-item-meta {
    display: flex;
    gap: 10px;
    font-size: 14px;
    color: #888;
}

.guide-item-link {
    color: #27ae60;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.guide-item-link:hover {
    color: #229954;
    transform: translateX(5px);
    display: inline-block;
}

.strategy-tips {
    padding: 80px 5%;
}

.strategy-tips-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.tips-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.tip-card {
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.tip-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.tip-green {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.tip-blue {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.tip-purple {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
}

.tip-orange {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.tip-red {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
}

.tip-yellow {
    background: linear-gradient(135deg, #fffde7 0%, #fff9c4 100%);
}

.tip-icon {
    font-size: 42px;
    margin-bottom: 15px;
}

.tip-title {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

.tip-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.tip-category {
    display: inline-block;
    padding: 6px 14px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
}

.video-guides {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

.video-guides-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.video-guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.video-guide-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.video-guide-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(39, 174, 96, 0.9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.3s ease;
}

.video-guide-card:hover .video-play-button {
    background-color: #27ae60;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
}

.video-guide-info {
    padding: 20px;
}

.video-guide-title {
    font-size: 19px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.3;
}

.video-guide-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
}

.video-guide-stats {
    font-size: 13px;
    color: #888;
    display: flex;
    gap: 8px;
}

.guides-cta {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    color: white;
    text-align: center;
    padding: 100px 5%;
}

.guides-cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.guides-cta-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
}

.guides-cta-text {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.guides-cta-button {
    display: inline-block;
    padding: 18px 45px;
    background-color: white;
    color: #9b59b6;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.guides-cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.back-to-top {
    position: fixed;
    bottom: 10px;
    right: 10px;
    padding: 15px 20px;
    width: fit-content;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 900px) {

    .nav-links {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 60px 5%;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-stats {
        justify-content: center;
    }

    .reviews-grid,
    .services-diagonal-grid,
    .testimonials-container,
    .categories-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .services-diagonal-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .story-content {
        flex-direction: column;
    }

    .featured-guides-grid,
    .faq-contact-grid,
    .faq-horizontal,
    .services-packages,
    .stories-container,
    .video-guides-grid,
    .mv-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .mv-card {
        padding: 30px;
    }

    .guide-item {
        flex-direction: column;
        text-align: center;
    }

    .info-item {
        flex-direction: column;
    }

    .contact-info-card,
    .contact-form-section {
        padding: 20px;
    }

    .hero-stats {
        flex-direction: column;
        margin-bottom: 40px;
    }

    .testimonials-title,
    .cta-title {
        font-size: 38px;
    }

    .guides-hero-title,
    .about-main-title {
        font-size: 45px;
    }

    .guides-cta-title,
    .partners-title {
        font-size: 35px;
    }

    .guides-search-bar {
        flex-direction: column;
    }

    .timeline-item {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }
}

@media screen and (max-width: 320px) {
    body {
        font-size: 17px;
    }

    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 32px;
    }

    .page-title {
        font-size: 38px;
    }
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

html {
    scroll-behavior: smooth;
}

::selection {
    background-color: #27ae60;
    color: white;
}