
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Cookie Notice */
.cookie-notice {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(240, 240, 240, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.cookie-notice.hidden {
    display: none;
}

.cookie-content {
    text-align: center;
    color: #333;
    max-width: 600px;
    padding: 40px;
}

.cookie-content h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 30px;
    color: #333;
}

.cookie-content p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 40px;
    color: #333;
}

.cookie-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cookie-btn {
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #333;
    color: white;
}

.cookie-btn.learn-more {
    background-color: transparent;
    color: #333;
    border: 2px solid #333;
}

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

body {
    font-family: 'Poppins', sans-serif;
    /*background-color: #f5e6d8;*/
    overflow-x: hidden;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    background: #FFF;
    position: relative;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #1a1a1a;
}

.logo-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 300;
    font-size: 1rem;
    transition: color 0.3s;
}

nav a:hover {
    color: #ff6b35;
}

.cta-button {
    background-color: #ff6b35;
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 300 !important;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
    background-color: #ff8c42;
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #1a1a1a;
    transition: all 0.3s;
}

a {
    text-decoration: none;
}

/* Main Section */
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 2rem;
    position: relative;
    min-height: calc(100vh - 100px);

}

/* Decorative Elements */
.decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.decoration.circle-1 {
    width: 40px;
    height: 40px;
    border: 3px solid #ffd6a5;
    top: 10%;
    left: 8%;
}

.decoration.circle-2 {
    width: 30px;
    height: 30px;
    border: 3px solid #64b5f6;
    top: 15%;
    right: 10%;
}

.decoration.circle-3 {
    width: 25px;
    height: 25px;
    border: 3px solid #ff6b6b;
    bottom: 30%;
    right: 15%;
}

.decoration.dot {
    width: 8px;
    height: 8px;
    background-color: #ff6b35;
}

.decoration.dot-1 {
    top: 25%;
    left: 20%;
}

.decoration.dot-2 {
    top: 40%;
    right: 25%;
}

.decoration.dot-3 {
    bottom: 35%;
    left: 12%;
}

/* Swirl Decorations */
.swirl {
    position: absolute;
    width: 150px;
    height: 300px;
    border: 3px solid #ffd6a5;
    border-radius: 50%;
    opacity: 0.4;
}

.swirl-left {
    left: -50px;
    top: 20%;
    border-right: none;
    transform: rotate(-15deg);
}

.swirl-right {
    right: -50px;
    top: 20%;
    border-left: none;
    transform: rotate(15deg);
}

/* Title */
h1 {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
}

h1::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 20px;
    background-color: #ffd97d;
    z-index: -1;
}

/* Buttons Container */
.button-container {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
}

.featured-button {
    background-color: #ff6b35;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.featured-button:hover {
    background-color: #ff8c42;
    transform: translateY(-2px);
}

.play-button {
    background-color: #ffe4b5;
    color: #ff6b35;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.play-button:hover {
    background-color: #ffd97d;
    transform: translateY(-2px);
}

/* Illustration */
.illustration {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 300px;
    margin-top: 2rem;
}

.blob {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 200px;
    background-color: #ffd6a5;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0.6;
}

.game-element {
    position: absolute;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.element-1 {
    width: 220px;
    height: 220px;
    bottom: 30px;
    left: 10%;
}

.element-2 {
    width: 200px;
    height: 200px;
    bottom: 30px;
    right: 10%;
}

.element-3 {
    width: 100px;
    height: 100px;
    top: 20px;
    right: 30%;
}

.gamer-icon {
    width: 70%;
    height: 70%;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border-radius: 50%;
    position: relative;
}

.gamepad-icon {
    width: 70%;
    height: 70%;
    background: linear-gradient(135deg, #ff9999 0%, #ffb3b3 100%);
    border-radius: 50%;
    position: relative;
}

.live-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #ff6b35;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 1rem 1.5rem;
    }

    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 70%;
        height: 100vh;
        background-color: #f5e6d8;
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: left 0.3s;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

    nav.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    h1 {
        font-size: 2.5rem;
    }

    h1::after {
        width: 200px;
        height: 15px;
    }

    .button-container {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
    }

    .featured-button,
    .play-button {
        width: 100%;
    }

    .illustration {
        height: 250px;
    }

    .element-1,
    .element-2 {
        width: 150px;
        height: 150px;
    }

    .element-3 {
        width: 80px;
        height: 80px;
    }

    .swirl {
        display: none;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h1::after {
        width: 150px;
        height: 12px;
    }

    main {
        padding: 2rem 1rem;
    }
}


.container {
    max-width: 1200px;
    margin: 60px auto !important;

}

/* Section Title */
.section-header {
    margin-bottom: 3rem;
}

.container_w {
    background: #FFF;
}

.section-title {
    font-family: 'Nunito', sans-serif;

    color: #1a1a1a;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    font-size: 36px;
    font-style: normal;
    font-weight: 800;
}


.section-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 1rem;
    max-width: 600px;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Card Styles */
.card {
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-blue {
    background-color: #e0f4f7;
}

.card-peach {
    background-color: #f5e6d8;
}

.card-purple {
    background-color: #f3e5f5;
}

/* Icon Container */
.icon-container {

    margin: 0 auto;


}

.icon {

    margin: 0 auto;

}


/* Card Title */
.card-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.4;
}

/* Card Description */
.card-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    /*body {*/
    /*    padding: 2rem 1rem;*/
    /*}*/
    .section-title {
        font-size: 2rem;
    }


    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .card-description {
        font-size: 0.9rem;
    }
}

/* Section Spacing */
section {
    margin-bottom: 5rem;
}

/* Section Title */
.section-title {
    font-family: 'Nunito', sans-serif;

    color: #1a1a1a;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;

    font-size: 36px;
    font-style: normal;
    font-weight: 800;
}

/* About Section */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    padding-right: 2rem;
}

.about-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Feature List */
.feature-list {
    list-style: none;
}

.feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    min-width: 28px;
    height: 28px;
    background-color: #ffd6a5;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b35;
    font-size: 1rem;
    font-weight: bold;
}

.feature-text {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.feature-text strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Illustration */
.about-illustration {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.illustration-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.illustration-wrapper img {

    width: 100%;

}

.beyond-illustration img {
    width: 100%;
}

.illustration-bg {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.gamer-character {
    width: 70%;
    height: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.character-head {
    width: 120px;
    height: 120px;
    background-color: #ffd4a3;
    border-radius: 50%;
    position: relative;
    margin-bottom: -20px;
    z-index: 2;
}

.character-hair {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 80px;
    background-color: #ff6b35;
    border-radius: 50% 50% 0 0;
}

.character-headphones {
    position: absolute;
    top: 25%;
    left: -10px;
    right: -10px;
    height: 80px;
    background-color: #7e57c2;
    border-radius: 50px;
}

.character-face {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.eyes {
    display: flex;
    gap: 20px;
}

.eye {
    width: 8px;
    height: 8px;
    background-color: #1a1a1a;
    border-radius: 50%;
}

.smile {
    width: 30px;
    height: 15px;
    border: 3px solid #1a1a1a;
    border-top: none;
    border-radius: 0 0 30px 30px;
}

.character-body {
    width: 180px;
    height: 140px;
    background-color: #7e57c2;
    border-radius: 50% 50% 40% 40%;
    position: relative;
    z-index: 1;
}

.thumbs-up {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: #ffd4a3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.thumb-left {
    top: 30%;
    left: -40px;
}

.thumb-right {
    top: 30%;
    right: -40px;
}

/* Hearts decoration */
.hearts-decoration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    display: flex;
    gap: 8px;
}

.heart {
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

.heart:nth-child(1) {
    animation-delay: 0s;
    opacity: 0.4;
}

.heart:nth-child(2) {
    animation-delay: 0.3s;
    opacity: 0.5;
}

.heart:nth-child(3) {
    animation-delay: 0.6s;
    opacity: 0.6;
}

.heart:nth-child(4) {
    animation-delay: 0.9s;
    opacity: 0.8;
    color: #7e57c2;
}

.heart:nth-child(5) {
    animation-delay: 1.2s;
    color: #7e57c2;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Testimonials Section */
.testimonials-header {
    margin-bottom: 2rem;
}

.testimonials-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 600px;
    margin-top: 1rem;
}

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

/* Testimonial Card */
.testimonial-card {
    background-color: #fef8f3;
    padding: 2rem;
    border-radius: 16px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card.blue {
    background-color: #e3f2fd;
}

.testimonial-card.peach {
    background-color: #fef8f3;
}

/* Quote Icon */
.quote-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    font-weight: bold;
    opacity: 0.3;
}

.testimonial-card.blue .quote-icon {
    color: #4dd0e1;
}

.testimonial-card.peach .quote-icon {
    color: #ff8a65;
}

/* User Info */
.user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    /*background-color: white;*/
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.user-details {
    flex: 1;
}

.user-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.user-role {
    color: #999;
    font-size: 0.85rem;
}

/* Rating */
.rating {
    display: flex;
    gap: 4px;
    margin-bottom: 1rem;
}

.star {
    color: #ffa726;
    font-size: 1.2rem;
}

.star.half {
    position: relative;
    color: #e0e0e0;
}

.star.half::before {
    content: '★';
    position: absolute;
    left: 0;
    color: #ffa726;
    width: 50%;
    overflow: hidden;
}

/* Testimonial Text */
.testimonial-text {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-content {
        padding-right: 0;
    }

    .illustration-wrapper {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    /*body {*/
    /*    padding: 2rem 1rem;*/
    /*}*/
    section {
        margin-bottom: 3rem;
    }

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


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

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .quote-icon {
        font-size: 3rem;
        top: 1.5rem;
        right: 1.5rem;
    }
}

.img {
    width: 100%;
}

/* Section Title */
.section-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 800 !important;
    font-size: 36px !important;
    color: #1a1a1a;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    border-bottom: 5px solid #F4D3A1;
}


/* Beyond Categories Section */
.beyond-section {
    /*padding: 5rem 2rem;*/
    background: linear-gradient(to bottom, #ffffff 0%, #fef8f3 100%);
}

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

.beyond-illustration {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

/* Gamepad Illustration */
.gamepad-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.gamepad {
    position: relative;
    width: 350px;
    height: 250px;
    z-index: 10;
}

.gamepad-body {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a7b7b 0%, #2a9d8f 100%);
    border-radius: 40% 60% 50% 50% / 60% 40% 60% 40%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gamepad-handle-left {
    position: absolute;
    bottom: -20px;
    left: -30px;
    width: 150px;
    height: 120px;
    background: linear-gradient(135deg, #1a7b7b 0%, #2a9d8f 100%);
    border-radius: 50% 30% 50% 60% / 40% 50% 50% 60%;
    z-index: -1;
}

.gamepad-handle-right {
    position: absolute;
    bottom: -20px;
    right: -30px;
    width: 150px;
    height: 120px;
    background: linear-gradient(135deg, #5db8a8 0%, #80cbc4 100%);
    border-radius: 30% 50% 60% 50% / 50% 40% 60% 50%;
    z-index: -1;
}

/* D-pad */
.dpad {
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dpad::before {
    content: '+';
    font-size: 3rem;
    color: #1a7b7b;
    font-weight: bold;
}

/* Buttons */
.buttons-group {
    position: absolute;
    top: 35%;
    right: 20%;
    transform: translateY(-50%);
}

.button-circle {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.button-top {
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.button-bottom {
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.button-left {
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
}

.button-right {
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
}

.button-center {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #5db8a8 0%, #80cbc4 100%);
}

.button-center::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
}

.button-center::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
}

/* Decorative circles */
.deco-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
}

.deco-1 {
    width: 100px;
    height: 100px;
    background-color: #b2dfdb;
    top: -20px;
    right: -20px;
}

.deco-2 {
    width: 80px;
    height: 80px;
    background-color: #80cbc4;
    top: 20%;
    left: -40px;
}

.deco-3 {
    width: 120px;
    height: 120px;
    background-color: #b2dfdb;
    bottom: -30px;
    right: 10%;
}

.deco-swirl {
    position: absolute;
    width: 100px;
    height: 150px;
    border: 3px solid #80cbc4;
    border-radius: 50%;
    opacity: 0.3;
    top: 30%;
    left: -50px;
    border-right: none;
}

/* Beyond Text Content */
.beyond-text {
    padding-left: 2rem;
}

.beyond-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
}

.feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    min-width: 28px;
    height: 28px;
    background-color: #ffe4b5;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b35;
    font-size: 1rem;
    font-weight: bold;
}

.feature-content {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.feature-content strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Join Section */
.join-section {
    padding: 5rem 2rem;
    /*background-color: #fef8f3;*/
    text-align: center;
    position: relative;
    overflow: hidden;
}

.swirl-decoration {
    position: absolute;
    width: 150px;
    height: 250px;
    border: 4px solid #ffd6a5;
    border-radius: 50%;
    opacity: 0.3;
}

.swirl-left {
    left: 5%;
    top: 20%;
    border-right: none;
    transform: rotate(-20deg);
}

.swirl-right {
    right: 5%;
    top: 20%;
    border-left: none;
    transform: rotate(20deg);
}

.join-content {
    position: relative;
    z-index: 10;
}

.join-title {
    text-align: center;
}

.join-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 1.5rem auto 2.5rem;
}

.cta-button {
    background-color: #ff6b35;
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    background-color: #ff8c42;
    transform: translateY(-2px);
}

/* Contact Section */
.contact-section {
    padding: 4rem 2rem;
    background: #F4ECE0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon {
    min-width: 80px;
    height: 80px;
    background-color: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details {
    padding-top: 0.5rem;
}

.contact-label {
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.contact-info {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5;
}

/* Footer */
footer {
    background: #241008;
    color: white;
    padding: 3rem 2rem 2rem;
}

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

.footer-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo-content {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
}

.footer-logo-icon {
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #444;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #ff6b35;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #444;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ff6b35;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #999;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 35px;
    height: 35px;
    background-color: #444;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-link:hover {
    background-color: #ff6b35;
}

/* Responsive Design */
@media (max-width: 968px) {
    .beyond-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .beyond-text {
        padding-left: 0;
        order: 2;
    }

    .beyond-illustration {
        order: 1;
    }

    .gamepad {
        width: 300px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .join-section {
        padding: 0;

    }

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


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

    .footer-nav,
    .footer-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .swirl-decoration {
        display: none;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }

    .gamepad {
        width: 250px;
        height: 180px;
    }

    .dpad {
        width: 50px;
        height: 50px;
    }

    .button-circle {
        width: 30px;
        height: 30px;
    }
}

.container {
    padding: 15px !important;
}

/* Description Text */
.description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Games Container */
.games-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    align-items: center;
    justify-content: center;
}

/* Game Card */
.game-card {
    position: relative;
    width: calc(33.333% - 1.5rem);
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    flex-shrink: 0;
}

.game-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* Featured Card - larger and centered */
.game-card.featured {
    width: 50%;
    order: -1;
    margin: 0 auto;
}

/* Game Image */
.game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Placeholder backgrounds for demo */
.game-card.game-1 {
    background: linear-gradient(135deg, #00bcd4 0%, #00acc1 100%);
}

.game-card.game-2 {
    background: linear-gradient(135deg, #ff8a80 0%, #ff6f60 100%);
}

.game-card.game-3 {
    background: linear-gradient(135deg, #90caf9 0%, #64b5f6 100%);
}

.game-card.game-4 {
    background: linear-gradient(135deg, #81d4fa 0%, #4fc3f7 100%);
}

.game-card.game-5 {
    background: linear-gradient(135deg, #ab47bc 0%, #9c27b0 100%);
}

.game-card.game-6 {
    background: linear-gradient(135deg, #aed581 0%, #9ccc65 100%);
}

/* Pixel Art Style Elements */
.pixel-art {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pixel-bird {
    width: 60%;
    height: 60%;
    background-image: radial-gradient(circle at 30% 30%, #ff4444 0%, #cc0000 100%);
    clip-path: polygon(
            20% 40%, 30% 30%, 40% 30%, 50% 35%,
            60% 30%, 70% 35%, 75% 45%, 70% 60%,
            60% 70%, 50% 75%, 40% 70%, 30% 60%
    );
    position: relative;
}

.pixel-crab {
    width: 80%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.crab-body {
    width: 100px;
    height: 100px;
    background-color: #ff8a65;
    border-radius: 50%;
    position: relative;
}

.crab-eye {
    position: absolute;
    width: 50px;
    height: 60px;
    background-color: #ff8a65;
    border-radius: 50%;
    top: -20px;
}

.crab-eye-left {
    left: 10px;
}

.crab-eye-right {
    right: 10px;
}

.eye-ball {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.eye-pupil {
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: #1a1a1a;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pixel-platform {
    width: 70%;
    height: 70%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-game {
    width: 100%;
    height: 80%;
    background-color: #64b5f6;
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 10px;
}

.pixel-character {
    width: 40px;
    height: 50px;
    background-color: #ff9800;
    position: relative;
}

.pixel-block {
    width: 30px;
    height: 30px;
    background-color: #fff;
    position: absolute;
    border: 2px solid #90caf9;
}

.minecraft-style {
    width: 70%;
    height: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mc-block {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff1493 0%, #9c27b0 100%);
    position: absolute;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.runner-game {
    width: 80%;
    height: 80%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.runner-character {
    width: 60px;
    height: 70px;
    background-color: #4dd0e1;
    position: relative;
}

.snake-game {
    width: 70%;
    height: 70%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.snake-body {
    width: 80%;
    height: 60%;
    background-color: #aed581;
    border-radius: 50% 20% 50% 20%;
    position: relative;
}

/* Ground elements */
.ground {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to bottom, rgba(139, 69, 19, 0.3) 0%, rgba(101, 67, 33, 0.5) 100%);
}

.sand-ground {
    background: linear-gradient(to bottom, rgba(244, 164, 96, 0.3) 0%, rgba(210, 180, 140, 0.5) 100%);
}

/* Row containers for layout */
.row-top {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
    margin-bottom: 2rem;
}

.row-middle {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 2rem;
}

.row-bottom {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
}

.row-top .game-card,
.row-bottom .game-card {
    width: calc(33.333% - 1.5rem);
}

.game-card img {
    width: 100%;
}

.row-middle .game-card {
    width: 50%;
}

/* Responsive Design */
@media (max-width: 968px) {
    .row-top,
    .row-bottom {
        justify-content: center;
        flex-wrap: wrap;
    }

    .row-top .game-card,
    .row-bottom .game-card {
        width: calc(50% - 1rem);
    }

    .row-middle .game-card {
        width: 60%;
    }
}

@media (max-width: 768px) {
    body {
        /*padding: 2rem 1rem;*/
    }

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

    .row-top,
    .row-middle,
    .row-bottom {
        flex-direction: column;
        align-items: center;
    }

    .row-top .game-card,
    .row-middle .game-card,
    .row-bottom .game-card {
        width: 80%;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }

    .description {
        font-size: 0.9rem;
    }

    .row-top .game-card,
    .row-middle .game-card,
    .row-bottom .game-card {
        width: 90%;
    }
}

/* Onekey Section */
.onekey-section {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 5rem;
    /*background: linear-gradient(to bottom right, #ffffff 0%, #fef8f3 100%);*/
    padding: 3rem 0;
}

.onekey-content {
    flex: 1;
    max-width: 500px;
}

.onekey-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}


.onekey-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-top: 1.5rem;
}

/* Game Preview */
.game-preview {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-circle {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    background: linear-gradient(135deg, #4dd0e1 0%, #00bcd4 100%);
}
.game-circle  img{
    width: 100%;
}

.pixel-game {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Pixel Bird Character */
.game-bird {
    width: 120px;
    height: 120px;
    position: relative;
    z-index: 10;
}

.bird-body {
    width: 100px;
    height: 80px;
    background: linear-gradient(135deg, #d32f2f 0%, #f44336 100%);
    border-radius: 50% 40% 40% 50% / 60% 60% 40% 40%;
    position: relative;
    box-shadow: inset -5px -5px 10px rgba(0, 0, 0, 0.2);
}

.bird-crown {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 25px;
    background-color: #d32f2f;
    clip-path: polygon(0% 100%, 25% 0%, 50% 100%, 75% 0%, 100% 100%);
}

.bird-eye {
    position: absolute;
    width: 35px;
    height: 35px;
    background-color: white;
    border-radius: 50%;
    top: 20px;
    right: 20px;
    border: 3px solid #1a1a1a;
}

.bird-pupil {
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: #1a1a1a;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bird-beak {
    position: absolute;
    right: -15px;
    top: 35px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 20px solid #ffa726;
}

.bird-wing {
    position: absolute;
    width: 50px;
    height: 40px;
    background: linear-gradient(135deg, #1976d2 0%, #2196f3 100%);
    border-radius: 50%;
    bottom: 10px;
    left: -10px;
    transform: rotate(-30deg);
}

/* Decorative background elements */
.bg-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
}

.bg-circle-1 {
    width: 100px;
    height: 100px;
    background-color: #80deea;
    top: 10%;
    left: 5%;
}

.bg-circle-2 {
    width: 80px;
    height: 80px;
    background-color: #4fc3f7;
    bottom: 15%;
    right: 10%;
}

.bg-ground {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to bottom, rgba(139, 69, 19, 0.4) 0%, rgba(101, 67, 33, 0.6) 100%);
}

.bg-grass {
    position: absolute;
    bottom: 25%;
    left: 10%;
    width: 80%;
    height: 10%;
    background: linear-gradient(to bottom, rgba(76, 175, 80, 0.5) 0%, rgba(46, 125, 50, 0.6) 100%);
    border-radius: 50% 50% 0 0;
}

/* Game Advantages Section */
.advantages-section {
    margin-top: 4rem;
}

.advantages-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.advantages-title::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: #ffd97d;
    z-index: -1;
}

.advantages-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Advantage Card */
.advantage-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.advantage-card.blue {
    background-color: #e0f4f7;
}

.advantage-card.peach {
    background-color: #f5e6d8;
}

.advantage-card.purple {
    background-color: #f3e5f5;
}

/* Icon Container */
.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/*.icon {*/
/*    width: 45px;*/
/*    height: 45px;*/
/*    position: relative;*/
/*}*/



/* Icon 2 - Levels */
.icon-levels {
    border: 3px solid #ff8a65;
    border-radius: 8px;
    position: relative;
}

.icon-levels::before {
    content: '⭐';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
}

/* Icon 3 - Brain */
.icon-brain {
    border: 3px solid #ba68c8;
    border-radius: 8px;
    position: relative;
}

.icon-brain::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #ba68c8;
}

.icon-brain::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ba68c8;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Card Title */
.advantage-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.4;
}

/* Card Description */
.advantage-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 968px) {
    .onekey-section {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .onekey-content {
        max-width: 100%;
    }

    .game-circle {
        width: 300px;
        height: 300px;
    }

    .advantages-grid {
        flex-direction: column;
    }

    .advantage-card {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    body {
        /*padding: 2rem 1rem;*/
    }

    .onekey-title,
    .advantages-title {
        font-size: 2rem;
    }

    .onekey-title::after,
    .advantages-title::after {
        height: 10px;
    }

    .game-circle {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 480px) {
    .onekey-title,
    .advantages-title {
        font-size: 1.75rem;
    }

    .game-circle {
        width: 250px;
        height: 250px;
    }

    .game-bird {
        width: 100px;
        height: 100px;
    }

    .bird-body {
        width: 80px;
        height: 65px;
    }
}
 /* Onekey Section */
        .onekey-section {
            display: flex;
            align-items: center;
            gap: 4rem;
            margin-bottom: 5rem;
            /*background: linear-gradient(to bottom right, #ffffff 0%, #fef8f3 100%);*/
            padding: 3rem 0;
        }

        .onekey-content {
            flex: 1;
            max-width: 500px;
        }

        .onekey-title {
            font-family: 'Nunito', sans-serif;
            font-weight: 800;
           font-size: 36px;
            color: #1a1a1a;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }


        .onekey-description {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.8;
            margin-top: 1.5rem;
        }

        /* Game Preview */
        .game-preview {
            position: relative;
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .game-circle {
            width: 350px;
            height: 350px;
            border-radius: 50%;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            position: relative;
            background: linear-gradient(135deg, #4dd0e1 0%, #00bcd4 100%);
        }

        .pixel-game {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        /* Pixel Bird Character */
        .game-bird {
            width: 120px;
            height: 120px;
            position: relative;
            z-index: 10;
        }

        .bird-body {
            width: 100px;
            height: 80px;
            background: linear-gradient(135deg, #d32f2f 0%, #f44336 100%);
            border-radius: 50% 40% 40% 50% / 60% 60% 40% 40%;
            position: relative;
            box-shadow: inset -5px -5px 10px rgba(0, 0, 0, 0.2);
        }

        .bird-crown {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 25px;
            background-color: #d32f2f;
            clip-path: polygon(0% 100%, 25% 0%, 50% 100%, 75% 0%, 100% 100%);
        }

        .bird-eye {
            position: absolute;
            width: 35px;
            height: 35px;
            background-color: white;
            border-radius: 50%;
            top: 20px;
            right: 20px;
            border: 3px solid #1a1a1a;
        }

        .bird-pupil {
            position: absolute;
            width: 15px;
            height: 15px;
            background-color: #1a1a1a;
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .bird-beak {
            position: absolute;
            right: -15px;
            top: 35px;
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 20px solid #ffa726;
        }

        .bird-wing {
            position: absolute;
            width: 50px;
            height: 40px;
            background: linear-gradient(135deg, #1976d2 0%, #2196f3 100%);
            border-radius: 50%;
            bottom: 10px;
            left: -10px;
            transform: rotate(-30deg);
        }

        /* Decorative background elements */
        .bg-decoration {
            position: absolute;
            border-radius: 50%;
            opacity: 0.3;
        }

        .bg-circle-1 {
            width: 100px;
            height: 100px;
            background-color: #80deea;
            top: 10%;
            left: 5%;
        }

        .bg-circle-2 {
            width: 80px;
            height: 80px;
            background-color: #4fc3f7;
            bottom: 15%;
            right: 10%;
        }

        .bg-ground {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 30%;
            background: linear-gradient(to bottom, rgba(139, 69, 19, 0.4) 0%, rgba(101, 67, 33, 0.6) 100%);
        }

        .bg-grass {
            position: absolute;
            bottom: 25%;
            left: 10%;
            width: 80%;
            height: 10%;
            background: linear-gradient(to bottom, rgba(76, 175, 80, 0.5) 0%, rgba(46, 125, 50, 0.6) 100%);
            border-radius: 50% 50% 0 0;
        }

        /* Game Advantages Section */
        .advantages-section {
            margin-top: 4rem;
        }

        .advantages-title {
            font-family: 'Nunito', sans-serif;
            font-weight: 900;
            font-size: 2.5rem;
            color: #1a1a1a;
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
        }

        .advantages-title::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 12px;
            background-color: #ffd97d;
            z-index: -1;
        }

        .advantages-grid {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        /* Advantage Card */
        .advantage-card {
            flex: 1;
            min-width: 280px;
            padding: 2.5rem 2rem;
            border-radius: 16px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .advantage-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .advantage-card.blue {
            background-color: #e0f4f7;
        }

        .advantage-card.peach {
            background-color: #f5e6d8;
        }

        .advantage-card.purple {
            background-color: #f3e5f5;
        }

        /* Icon Container */
        .advantage-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background-color: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        }

        /*.icon {*/
        /*    width: 45px;*/
        /*    height: 45px;*/
        /*    position: relative;*/
        /*}*/


        /* Icon 2 - Levels */
        .icon-levels {
            border: 3px solid #ff8a65;
            border-radius: 8px;
            position: relative;
        }

        .icon-levels::before {
            content: '⭐';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 1.2rem;
        }

        /* Icon 3 - Brain */
        .icon-brain {
            border: 3px solid #ba68c8;
            border-radius: 8px;
            position: relative;
        }

        .icon-brain::before {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-top: 8px solid #ba68c8;
        }

        .icon-brain::after {
            content: '✓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #ba68c8;
            font-size: 1.5rem;
            font-weight: bold;
        }

        /* Card Title */
        .advantage-title {
            font-family: 'Nunito', sans-serif;
            font-weight: 800;
            font-size: 1.15rem;
            color: #1a1a1a;
            margin-bottom: 1rem;
            line-height: 1.4;
        }

        /* Card Description */
        .advantage-description {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.7;
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .onekey-section {
                flex-direction: column;
                gap: 3rem;
                text-align: center;
            }

            .onekey-content {
                max-width: 100%;
            }

            .game-circle {
                width: 300px;
                height: 300px;
            }

            .advantages-grid {
                flex-direction: column;
            }

            .advantage-card {
                min-width: 100%;
            }
        }

        @media (max-width: 768px) {
            body {
                /*padding: 2rem 1rem;*/
            }

            .onekey-title,
            .advantages-title {
                font-size: 2rem;
            }

            .onekey-title::after,
            .advantages-title::after {
                height: 10px;
            }

            .game-circle {
                width: 280px;
                height: 280px;
            }
        }

        @media (max-width: 480px) {
            .onekey-title,
            .advantages-title {
                font-size: 1.75rem;
            }

            .game-circle {
                width: 250px;
                height: 250px;
            }

            .game-bird {
                width: 100px;
                height: 100px;
            }

            .bird-body {
                width: 80px;
                height: 65px;
            }
        }