 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
        }

        .background-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 2px, transparent 2px),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 1px, transparent 1px),
                radial-gradient(circle at 40% 80%, rgba(255,255,255,0.08) 3px, transparent 3px);
            background-size: 100px 100px, 60px 60px, 120px 120px;
            z-index: 1;
        }

       
       .main-content{
        background-image: url(/assets/images/background-section1.png);
       }

        .main-title {
            color: #000000;
            font-size: 3.5rem;
            font-weight: 600;
            text-align: center;
            margin-bottom: 60px;

            line-height: 1.2;
        }

        .games-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            flex-wrap: wrap;
            padding: 0 20px;
        }

        .game-card {
            width: 280px;
            height: 350px;
            border-radius: 25px;
            position: relative;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            overflow: hidden;
        }

        .game-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        }

        .game-card.left {
            background: linear-gradient(135deg, #ff6b6b 0%, #d63384 100%);
            transform: rotate(-5deg);
        }

        .game-card.center {
            background: linear-gradient(135deg, #4fc3f7 0%, #29b6f6 100%);
            z-index: 2;
        }

        .game-card.right {
            background: linear-gradient(135deg, #ffd54f 0%, #ff9800 100%);
            transform: rotate(5deg);
        }

        .game-card:hover.left {
            transform: rotate(-2deg) translateY(-10px) scale(1.02);
        }

        .game-card:hover.right {
            transform: rotate(2deg) translateY(-10px) scale(1.02);
        }

        .card-header {
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .card-title {
            color: white;
            font-size: 1.4rem;
            font-weight: 700;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .card-icon {
            background: rgba(255, 255, 255, 0.2);
            width: 40px;
            height: 40px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
        }

        .card-icon i {
            color: white;
            font-size: 1.2rem;
        }

        .card-content {
            flex: 1;
            padding: 0 20px 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .character-placeholder {
            width: 120px;
            height: 120px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .character-placeholder i {
            font-size: 3rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 50;
        }

        .floating-shape {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .floating-shape:nth-child(1) {
            width: 60px;
            height: 60px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-shape:nth-child(2) {
            width: 40px;
            height: 40px;
            top: 60%;
            left: 85%;
            animation-delay: 2s;
        }

        .floating-shape:nth-child(3) {
            width: 80px;
            height: 80px;
            top: 80%;
            left: 15%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        @media (max-width: 768px) {
            .main-title {
                font-size: 2.5rem;
                margin-bottom: 40px;
            }

            .games-container {
                flex-direction: column;
                gap: 20px;
            }

            .game-card {
                width: 300px;
                transform: none !important;
            }

            .game-card.left,
            .game-card.right {
                transform: none;
            }

            .game-card:hover.left,
            .game-card:hover.right {
                transform: translateY(-10px) scale(1.02);
            }
        }

        @media (max-width: 576px) {
            .main-title {
                font-size: 2rem;
            }

            .game-card {
                width: 280px;
                height: 320px;
            }

            .main-content {
                padding: 40px 0;
            }
        }

        /* game intro section st5yles */

        .games-intro{
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 70px 0px;
        }
        .game-section {
            display: flex;
            align-items: center;
            margin-bottom: 80px;
            background: white;
            justify-content: space-between;
         
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .game-section:hover {
            transform: translateY(-5px);
            cursor: pointer;
            
        }

        .section-content {
            
            width: 40%;
        }

        .section-visual {
           
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
        }

        .character img{
            width: 220px;
        }

        .logo {
            width: 40px;
            height: 40px;
            margin-bottom: 60px;
          
        }

        .game-section:nth-child(2){
            flex-direction: row-reverse;
        }

        .discover-button{
            text-decoration: none;
            color:#F5864A ;
        }
      

       
