/* Professional Header Styling */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #005d36;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 15px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Header container */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Logo styling */
.logo {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo a {
    display: block;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo:hover img {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

/* Hamburger menu (mobile only) */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.hamburger:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.hamburger span {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.hamburger:hover span {
    transform: scale(1.1);
}

/* Desktop navigation */
.nav_menu {
    display: flex;
    align-items: center;
}

.nav_menu .nav_links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav_menu .nav_links li a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #fdf851;
    font-weight: 500;
    font-size: 16px;
    padding: 12px 20px;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav_menu .nav_links li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    transition: left 0.3s ease;
    z-index: -1;
}

.nav_menu .nav_links li a:hover::before {
    left: 0;
}

.nav_menu .nav_links li a:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.nav_menu .nav_links li a i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.nav_menu .nav_links li a:hover i {
    transform: scale(1.1);
}

/* Mobile navigation */
.ham_menu {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    padding-top: 80px;
}

.ham_menu.active {
    left: 0;
}

.ham_menu .nav_links {
    list-style: none;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ham_menu .nav_links li a {
    display: block;
    text-decoration: none;
    color: #2d3748;
    font-weight: 500;
    font-size: 18px;
    padding: 15px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.ham_menu .nav_links li a:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: translateX(10px);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Mobile menu overlay */
.ham_menu::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: -1;
}

.ham_menu.active::before {
    opacity: 1;
    visibility: visible;
}

/* Notice marquee styling */
.notice-marquee {
    margin: 7px -10px -10px -10px;
    background: linear-gradient(135deg, #FFF900, #FFD700);
    color: #b4041c;
    border: 3px dotted #F70000;
    padding: 10px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(255, 249, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.notice-marquee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 75%, transparent 75%, transparent);
    background-size: 20px 20px;
    animation: moveStripes 20s linear infinite;
    pointer-events: none;
}

@keyframes moveStripes {
    0% { background-position: 0 0; }
    100% { background-position: 40px 40px; }
}

/* Modern marquee alternative */
.notice-scroll {
    margin: 7px -10px -10px -10px;
    background: linear-gradient(135deg, #FFF900, #FFD700);
    color: #b4041c;
    border: 3px dotted #F70000;
    padding: 10px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(255, 249, 0, 0.3);
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.notice-scroll .scroll-text {
    display: inline-block;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Responsive design */
@media (max-width: 768px) {
    .header {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav_menu {
        display: none;
    }
    
    .ham_menu {
        display: block;
    }
    
    .notice-marquee,
    .notice-scroll {
        font-size: 12px;
        padding: 8px;
        margin: 5px -5px -5px -5px;
    }
}

@media (max-width: 480px) {
    .header {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .logo img {
        height: 35px;
    }
    
    .ham_menu {
        width: 90%;
        max-width: 250px;
    }
    
    .ham_menu .nav_links li a {
        font-size: 16px;
        padding: 12px 15px;
    }
    
    .notice-marquee,
    .notice-scroll {
        font-size: 11px;
        padding: 6px;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .header,
    .logo,
    .hamburger,
    .nav_menu .nav_links li a,
    .ham_menu,
    .notice-marquee::before,
    .scroll-text {
        animation: none;
        transition: none;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .header {
        background: white;
        border-bottom: 2px solid #000;
    }
    
    .nav_menu .nav_links li a {
        color: #000;
        border: 1px solid #000;
    }
    
    .hamburger {
        background: #000;
        color: white;
    }
}

/* Focus styles for accessibility */
.nav_menu .nav_links li a:focus,
.ham_menu .nav_links li a:focus,
.hamburger:focus,
.logo a:focus {
    outline: 3px solid #667eea;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header {
        position: static;
        box-shadow: none;
        background: white;
        border-bottom: 1px solid #ccc;
    }
    
    .hamburger,
    .ham_menu {
        display: none;
    }
    
    .notice-marquee,
    .notice-scroll {
        display: none;
    }
}

.hero_slider {
    width: 100%;
    height: 490px;
    margin: 10px 0px 0px 0px;
    padding: 60px 20px 0px 10px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.slider-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.slot {
    width: 14%;  /* Smallest outer slot */
    background-color: #fff;
    border-radius: 10px;
    text-align: center;
    padding: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Scaling by position: middle slot is bigger */
.slot:nth-child(3) {
    width: 19%;
    transform: scale(1.2);
    z-index: 3;
    margin: 20px;
}

.slot:nth-child(2),
.slot:nth-child(4) {
    width: 14%;
    transform: scale(1.05);
    z-index: 2;
    margin: 30px;
}

.slot:nth-child(1),
.slot:nth-child(5) {
    width: 10%;
    transform: scale(0.9);
    z-index: 1;
    margin: 20px;
}

.slot img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.slot .name {
    font-size: 16px;
    margin: 8px 0;
}

.slot .grade {
    font-size: 14px;
    color: #666;
}

.slot .btn {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 12px;
    background-color: #b4041c;
    color: #fff;
    border-radius: 6px;
    font-size: 13px;
}

@media (max-width: 768px) {
    .slider-container {
        flex-direction: row;
        justify-content: center;
    }

    .slot {
        display: none;
    }

    .slot:nth-child(3) {
        display: block;
        width: 80%;
        transform: scale(1);
        margin-left: -10px;
        margin-right: 20px;
    }
}


/* Professional Banner Fixed Styling */
.banner_fixed {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Glassmorphism backdrop effect */
.banner_fixed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 75%, transparent 75%, transparent);
    background-size: 30px 30px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

/* Hover animation overlay */
.banner_fixed::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.8s ease;
    z-index: 2;
    pointer-events: none;
}

.banner_fixed:hover::after {
    left: 100%;
}

.banner_fixed:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Image styling */
.banner_fixed img {
    width: 100%;
    height: auto;
    min-height: 200px;
    max-height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 3;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.banner_fixed:hover img {
    transform: scale(1.02);
}

/* Loading state */
.banner_fixed img[src=""],
.banner_fixed img:not([src]) {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Responsive design */
@media (max-width: 1200px) {
    .banner_fixed {
        margin: 20px 15px;
        border-radius: 15px;
    }
    
    .banner_fixed img {
        border-radius: 15px;
        max-height: 350px;
    }
}

@media (max-width: 768px) {
    .banner_fixed {
        margin: 15px 10px;
        border-radius: 12px;
    }
    
    .banner_fixed img {
        border-radius: 12px;
        min-height: 150px;
        max-height: 250px;
    }
}

@media (max-width: 480px) {
    .banner_fixed {
        margin: 10px 5px;
        border-radius: 10px;
    }
    
    .banner_fixed img {
        border-radius: 10px;
        min-height: 120px;
        max-height: 200px;
    }
}

/* Alternative styles for different banner types */

/* Compact banner variant */
.banner_fixed.compact {
    max-height: 150px;
    margin: 20px auto;
}

.banner_fixed.compact img {
    min-height: 120px;
    max-height: 150px;
}

/* Full-width banner variant */
.banner_fixed.full-width {
    max-width: 100%;
    margin: 30px 0;
    border-radius: 0;
}

.banner_fixed.full-width img {
    border-radius: 0;
}

/* Sticky banner variant */
.banner_fixed.sticky {
    position: sticky;
    top: 20px;
    z-index: 100;
    margin: 20px auto;
}

/* Shadow variations */
.banner_fixed.shadow-light {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.banner_fixed.shadow-heavy {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

/* Animation variants */
.banner_fixed.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.banner_fixed.slide-up {
    transform: translateY(30px);
    opacity: 0;
    animation: slideUp 0.8s ease forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Click interaction */
.banner_fixed.clickable {
    cursor: pointer;
    user-select: none;
}

.banner_fixed.clickable:active {
    transform: scale(0.98);
}

/* Accessibility improvements */
.banner_fixed img {
    transition: filter 0.3s ease;
}

.banner_fixed:focus-within img {
    filter: brightness(1.1);
    outline: 3px solid #667eea;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .banner_fixed {
        border: 2px solid #000;
    }
    
    .banner_fixed::before {
        display: none;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .banner_fixed,
    .banner_fixed img,
    .banner_fixed::after {
        transition: none;
        animation: none;
    }
    
    .banner_fixed:hover {
        transform: none;
    }
    
    .banner_fixed:hover img {
        transform: none;
    }
}

/* Print styles */
@media print {
    .banner_fixed {
        box-shadow: none;
        background: none;
        border: 1px solid #ccc;
    }
    
    .banner_fixed::before,
    .banner_fixed::after {
        display: none;
    }
}

/* Game List Container */
.game_list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.game_list::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 75%, transparent 75%, transparent);
    background-size: 30px 30px;
    opacity: 0.3;
    pointer-events: none;
}

.tab_cont {
    position: relative;
    z-index: 1;
}

.sub_box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* List Reset and Base Styles */
#appList {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 20px;
}

/* Individual List Items */
#appList li {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

#appList li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

#appList li:hover::before {
    left: 100%;
}

#appList li:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

/* Flexbox Utilities */
.flex {
    display: flex;
    align-items: center;
}

.flex_grow {
    flex: 1;
}

/* Number Badge */
.num {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    margin-right: 20px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease;
}

#appList li:hover .num {
    transform: scale(1.1) rotate(360deg);
}

/* Game Image */
#appList li img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    margin-right: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

#appList li:hover img {
    transform: scale(1.05);
}

/* Info Section */
.info {
    min-width: 0; /* Prevents flex item from overflowing */
}

.info .name {
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 10px 0;
    line-height: 1.2;
    transition: color 0.3s ease;
}

#appList li:hover .info .name {
    color: #667eea;
}

.info .grade,
.info .txt {
    margin: 8px 0;
    color: #64748b;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.info .grade i,
.info .txt i {
    color: #667eea;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.info .grade {
    background: linear-gradient(135deg, #fef3c7, #fcd34d);
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid #f59e0b;
    color: #92400e;
    font-weight: 600;
}

.info .txt {
    background: linear-gradient(135deg, #ecfdf5, #10b981);
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid #059669;
    color: #065f46;
    font-weight: 600;
}

/* Download Button */
.btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5a67d8, #6b46c1);
}

.btn:active {
    transform: translateY(0);
}

.btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .game_list {
        margin: 0px;
        padding: 0px;
        border-radius: 15px;
    }
    
    #appList li {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
        align-items: center;
    }
    
    .num {
        display: none;
    }
    
    /* Image at the top */
    #appList li img {
        margin: 0 0 15px 0;
        width: 140px;
        height: 140px;
        align-self: center;
    }
    
    /* Name below image */
    .info {
        margin-bottom: 15px;
    }
    
    .info .grade,
    .info .txt {
        font-size: 12px;
    }
    
    .btn {
        padding: 12px;
    }
    
    .info .name {
        font-weight: 800;
        font-size: 22px;
        margin-bottom: 10px;
        display: block;
        text-align: left;
        margin-left: 17px;
    }
    
    .btn {
        align-self: stretch;
        justify-content: center;
    }
}

@media (max-width: 480px) {

    .info .name {
        font-size: 20px;
        font-weight: 800;
    }
    
    .info .grade,
    .info .txt {
        font-size: 9px;
        text-align: left;
        margin-right: -20px;
        margin-left: 10px;
    }
    
    .btn {
        padding: 10px;
        padding: 6px 10px;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    padding: 40px 0 20px 0;
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 900;
    text-decoration: underline;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16px;
    font-weight: 500;
}

.footer-links a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
}

.copyright {
    color: #fff;
    font-size: 14px;
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 30px;
    }
    
    .footer {
        padding: 30px 0 0px 0;
    }
}

.app-container2 {
            position: relative;
            max-width: 900px;
            margin: 20px auto;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .app-container2:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .app-header1 {
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: stretch;
        }

        .header-image {
            position: relative;
            overflow: hidden;
            border-radius: 20px 0 0 0;
            flex: 0 0 40%;
        }

        .header-image img {
            width: 100%;
            height: 100%;
            min-height: 300px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .header-image:hover img {
            transform: scale(1.05);
        }

        .header-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 50px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
        }

        .header-content12 {
            flex: 1;
            padding: 30px;
            text-align: center;
            background: linear-gradient(135deg, #0946ad, #0c1c69);
            color: white;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-radius: 0 20px 0 0;
        }

        .header-content12::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        .header-content12 h1 {
            font-size: 3em;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            letter-spacing: 1px;
        }

        .header-content12 p {
            font-size: 1.1em;
            font-weight: bold;
            color: #fff !important;
            background: rgba(255, 255, 255, 0.2);
            padding: 8px 16px;
            border-radius: 25px;
            display: inline-block;
            transition: all 0.3s ease;
            text-decoration: none;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .header-content12 a {
            text-decoration: none;
        }

        .header-content12 p:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .app-info {
            padding: 25px;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        }

        .rating-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: white;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
        }

        .rating-block, .download-block, .reviews-block {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex: 1;
            transition: transform 0.3s ease;
        }

        .rating-block:hover, .download-block:hover, .reviews-block:hover {
            transform: scale(1.05);
        }

        .rating-block span:first-child {
            font-size: 1.2em;
            color: #ffc107;
            margin-bottom: 5px;
        }

        .download-block span:first-child {
            font-size: 1.2em;
            color: #28a745;
            margin-bottom: 5px;
        }

        .reviews-block span:first-child {
            font-size: 1.2em;
            color: #17a2b8;
            margin-bottom: 5px;
        }

        .text1 {
            font-size: 0.9em;
            color: #666;
            font-weight: 500;
        }

        .separator {
            color: #ddd;
            font-size: 1.2em;
            margin: 0 10px;
        }

        .install-button {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1.2em;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
            position: relative;
            overflow: hidden;
        }

        .install-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.3s ease, height 0.3s ease;
        }

        .install-button:hover::before {
            width: 300px;
            height: 300px;
        }

        .install-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(40, 167, 69, 0.4);
        }

        .install-button:active {
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
        }

        .custom-button {
            background: linear-gradient(135deg, #0088cc, #0099e5);
            box-shadow: 0 8px 25px rgba(0, 136, 204, 0.3);
            margin-top: 15px;
        }

        .custom-button:hover {
            box-shadow: 0 12px 35px rgba(0, 136, 204, 0.4);
        }

        .ban {
            text-decoration: none;
            display: block;
            padding: 0 25px;
        }

        .fa-telegram {
            margin: 0 8px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        .fa-star {
            color: #ffc107;
            animation: sparkle 2s infinite;
        }

        @keyframes sparkle {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        .fa-download {
            color: #28a745;
        }

        .fa-cart-plus {
            color: #17a2b8;
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .app-container2 {
                max-width: 450px;
                margin: 10px;
                margin-top: 20px;
                border-radius: 15px;
            }

            .app-header1 {
                flex-direction: column;
            }

            .header-image {
                flex: none;
                border-radius: 15px 15px 0 0;
                min-height: 250px;
            }

            .header-image img {
                height: 250px;
                min-height: 250px;
            }

            .header-content12 {
                border-radius: 0;
                padding: 25px;
            }

            .header-content12 h1 {
                font-size: 2.2em;
                margin-bottom: 15px;
            }

            .rating-info {
                padding: 15px;
            }

            .install-button {
                font-size: 1em;
                padding: 15px;
            }

            .separator {
                display: none;
            }

            .rating-block, .download-block, .reviews-block {
                font-size: 0.9em;
            }
        }

        @media (max-width: 480px) {
            .header-image {
                min-height: 200px;
            }

            .header-image img {
                height: 200px;
                min-height: 200px;
            }

            .header-content12 h1 {
                font-size: 2em;
            }

            .header-content12 {
                padding: 20px;
            }
        }

        /* Floating animation */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }

        .app-container2 {
            animation: float 6s ease-in-out infinite;
        }

        /* Gradient text effect */
        .header-content12 h1 {
            background: linear-gradient(45deg, #fff, #f8f9fa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }