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

        body {
            background: white;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            min-height: 100vh;
            padding: 40px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .header {
            text-align: center;
            margin-bottom: 40px;
            color: #333;
            background: url('https://play-lh.googleusercontent.com/vPAHC5bB2uV0VjAiXjwqvuNLcWM2GT3C_pl477dAprGwGFjB1PPIgxAwX_ndVhjUX7c=w3840-h2160-rw');
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
            padding: 50px 60px;
            border-radius: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 800px;
            position: relative;
            overflow: hidden;
            min-height: 300px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 25px;
            pointer-events: none;
        }

        .header > * {
            position: relative;
            z-index: 1;
        }

        .header h1 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 10px;
            color: white;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }

        .header p {
            font-size: 16px;
            opacity: 0.9;
            color: white;
            text-shadow: 0 1px 5px rgba(0,0,0,0.5);
        }

        .phone-container {
            max-width: 380px;
            width: 100%;
            background: rgba(0, 0, 0, 0.05);
            backdrop-filter: blur(20px);
            border-radius: 30px;
            padding: 30px 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        /* Desktop Layout */
        @media (min-width: 1024px) {
            .header {
                min-height: 400px;
                max-width: 1200px;
            }
            
            .phone-container {
                max-width: 1200px;
                padding: 50px 40px;
            }
            
            .app-grid {
                grid-template-columns: repeat(8, 1fr);
                gap: 30px;
                margin-bottom: 40px;
            }
            
            .app-icon {
                width: 80px;
                height: 80px;
                font-size: 32px;
            }
            
            .app-name {
                font-size: 14px;
                max-width: 90px;
            }
            
            .section-title {
                font-size: 18px;
                margin: 40px 0 25px 0;
            }
        }

        /* Tablet Layout */
        @media (min-width: 768px) and (max-width: 1023px) {
            .header {
                min-height: 350px;
                max-width: 800px;
            }
            
            .phone-container {
                max-width: 800px;
                padding: 40px 30px;
            }
            
            .app-grid {
                grid-template-columns: repeat(6, 1fr);
                gap: 25px;
                margin-bottom: 35px;
            }
            
            .app-icon {
                width: 70px;
                height: 70px;
                font-size: 28px;
            }
            
            .app-name {
                font-size: 13px;
                max-width: 80px;
            }
            
            .section-title {
                font-size: 16px;
                margin: 35px 0 20px 0;
            }
        }

        /* Games and Apps Section Background - Yeşil tonlar mavi yapıldı */
        .games-section, .apps-section {
            background: linear-gradient(to bottom, 
                rgba(135, 206, 250, 0.9) 0%,
                rgba(100, 149, 237, 0.8) 30%,
                rgba(70, 130, 180, 0.8) 60%,
                rgba(25, 25, 112, 0.9) 100%);
            border-radius: 20px;
            padding: 20px;
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .games-section::before, .apps-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 20%, rgba(255,255,255,0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255,255,255,0.2) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(255,255,255,0.1) 0%, transparent 50%);
            border-radius: 20px;
            pointer-events: none;
        }

        .games-section > *, .apps-section > * {
            position: relative;
            z-index: 1;
        }

        .app-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }

        .app-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            transition: transform 0.2s ease;
            cursor: pointer;
        }

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

        .app-icon {
            width: 60px;
            height: 60px;
            border-radius: 15px;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            color: white;
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            position: relative;
            overflow: hidden;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .app-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
            border-radius: 15px;
        }

        .app-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px;
        }

        .app-name {
            color: #333;
            font-size: 12px;
            text-align: center;
            line-height: 1.2;
            max-width: 70px;
            text-shadow: none;
        }

        .notification-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background: #ff3b30;
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            border: 2px solid white;
        }

        .section-title {
            color: #333;
            font-size: 14px;
            font-weight: 600;
            margin: 30px 0 15px 0;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Game Icons - Yeşil tonlar mavi yapıldı */
        .pizza-kebab { background: linear-gradient(135deg, #FF6B35, #F7931E); }
        .subway-run { background: linear-gradient(135deg, #1976d2, #42a5f5); }
        .safari-tour { background: linear-gradient(135deg, #2196f3, #64b5f6); }
        .cheap-hotel { background: linear-gradient(135deg, #ff5722, #ff8a65); }
        .empire-dwarfs { background: linear-gradient(135deg, #9c27b0, #ba68c8); }
        .head-football { background: linear-gradient(135deg, #ff9800, #ffb74d); }
        .finger-football { background: linear-gradient(135deg, #795548, #a1887f); }
        .online-billiards { background: linear-gradient(135deg, #607d8b, #90a4ae); }
        .online-ludo { background: linear-gradient(135deg, #e91e63, #f06292); }
        .head-basketball { background: linear-gradient(135deg, #3f51b5, #7986cb); }
        .racer { background: linear-gradient(135deg, #ffc107, #ffeb3b); }
        .space-adventure { background: linear-gradient(135deg, #673ab7, #9c27b0); }
        .zombie-shooter { background: linear-gradient(135deg, #f44336, #e91e63); }
        .puzzle-master { background: linear-gradient(135deg, #00bcd4, #4fc3f7); }
        .car-drift { background: linear-gradient(135deg, #ff5722, #ff7043); }
        .ninja-run { background: linear-gradient(135deg, #424242, #616161); }

        /* App Icons - Yeşil renk mavi yapıldı */
        .calculator { background: linear-gradient(135deg, #2196F3, #21CBF3); }
        .weather-app { background: linear-gradient(135deg, #FF9800, #FFC107); }
        .note-taking { background: linear-gradient(135deg, #2196f3, #64b5f6); }
        .photo-editor { background: linear-gradient(135deg, #E91E63, #F06292); }
        .music-player { background: linear-gradient(135deg, #9C27B0, #BA68C8); }
        .fitness-tracker { background: linear-gradient(135deg, #FF5722, #FF8A65); }

        /* Footer Styles */
        .footer-info {
            max-width: 800px;
            width: 100%;
            margin-top: 50px;
            padding: 30px;
            background: rgba(0, 0, 0, 0.03);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            color: #333;
            text-align: center;
        }

        .footer-info h2 {
            font-size: 24px;
            margin-bottom: 20px;
            color: #222;
        }

        .footer-info p {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .footer-info .website-link {
            color: #4fc3f7;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .footer-info .website-link:hover {
            color: #81d4fa;
        }

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

        .feature-item {
            background: rgba(0, 0, 0, 0.03);
            padding: 20px;
            border-radius: 15px;
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        .feature-item h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: #4fc3f7;
        }

        .feature-item p {
            font-size: 14px;
            line-height: 1.5;
            color: #555;
        }

        @media (max-width: 420px) {
            .header {
                min-height: 250px;
                padding: 30px 40px;
            }
            
            .phone-container {
                margin: 0 10px;
                padding: 20px 15px;
            }
            
            .app-grid {
                gap: 15px;
            }
            
            .app-icon {
                width: 55px;
                height: 55px;
                font-size: 20px;
            }
            
            .app-name {
                font-size: 11px;
                max-width: 65px;
            }

            .footer-info {
                margin: 30px 10px 0;
                padding: 20px;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
        }

        /* Desktop Footer Adjustments */
        @media (min-width: 1024px) {
            .footer-info {
                max-width: 1200px;
                padding: 40px 50px;
            }
            
            .footer-info h2 {
                font-size: 28px;
                margin-bottom: 25px;
            }
            
            .footer-info p {
                font-size: 18px;
                margin-bottom: 20px;
            }
            
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
                margin-top: 40px;
            }
            
            .feature-item {
                padding: 30px;
            }
            
            .feature-item h3 {
                font-size: 20px;
                margin-bottom: 15px;
            }
            
            .feature-item p {
                font-size: 16px;
            }
        }
    body
{
   background-color: #FFFFFF;
   color: #000000;
   font-family: Arial;
   font-weight: normal;
   font-size: 13px;
   line-height: 1.1875;
   margin: 0;
   padding: 0;
}
