/* Root Variables */
:root{font-size:62.5%;--gf56-primary:#F8F8FF;--gf56-secondary:#C0C0C0;--gf56-dark:#1B263B;--gf56-accent:#F08080;--gf56-warm:#DEB887;--gf56-text:#333333;--gf56-text-light:#666666;--gf56-border:#E0E0E0;--gf56-shadow:0 2px 10px rgba(0,0,0,0.1);--gf56-radius:8px;--gf56-max-width:430px;}

/* Reset and Base */
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;font-size:1.6rem;line-height:1.6;color:var(--gf56-text);background-color:var(--gf56-primary);max-width:var(--gf56-max-width);margin:0 auto;overflow-x:hidden;}

/* Typography */
h1,h2,h3,h4,h5,h6{font-weight:600;margin-bottom:1rem;color:var(--gf56-dark);}
h1{font-size:3.2rem;}
h2{font-size:2.8rem;}
h3{font-size:2.4rem;}
h4{font-size:2rem;}
p{margin-bottom:1.5rem;}
a{color:var(--gf56-accent);text-decoration:none;}
a:hover{text-decoration:underline;}

/* Header */
.gf56-header{position:fixed;top:0;left:0;right:0;background:linear-gradient(135deg,var(--gf56-dark) 0%,#2c3e50 100%);color:var(--gf56-primary);z-index:1000;box-shadow:var(--gf56-shadow);}
.gf56-header-container{display:flex;justify-content:space-between;align-items:center;padding:1.5rem 2rem;max-width:var(--gf56-max-width);margin:0 auto;}
.gf56-logo{display:flex;align-items:center;gap:1rem;font-size:2.4rem;font-weight:700;color:var(--gf56-primary);}
.gf56-logo-icon{font-size:3.2rem;color:var(--gf56-accent);}
.gf56-header-buttons{display:flex;gap:1rem;}
.gf56-btn{padding:1rem 2rem;border:none;border-radius:var(--gf56-radius);font-size:1.4rem;font-weight:600;cursor:pointer;transition:all 0.3s ease;min-width:44px;min-height:44px;display:flex;align-items:center;justify-content:center;}
.gf56-btn-register{background:var(--gf56-accent);color:var(--gf56-primary);}
.gf56-btn-register:hover{background:#e86a6a;transform:translateY(-2px);}
.gf56-btn-login{background:transparent;color:var(--gf56-primary);border:2px solid var(--gf56-primary);}
.gf56-btn-login:hover{background:var(--gf56-primary);color:var(--gf56-dark);}
.gf56-menu-toggle{display:none;background:none;border:none;color:var(--gf56-primary);font-size:2.4rem;cursor:pointer;}

/* Mobile Menu */
.gf56-mobile-menu{position:fixed;top:0;right:-100%;width:80%;max-width:320px;height:100vh;background:var(--gf56-dark);z-index:9999;transition:right 0.3s ease;overflow-y:auto;}
.gf56-mobile-menu.gf56-active{right:0;}
.gf56-menu-header{display:flex;justify-content:space-between;align-items:center;padding:2rem;border-bottom:1px solid rgba(255,255,255,0.1);}
.gf56-menu-close{background:none;border:none;color:var(--gf56-primary);font-size:2.4rem;cursor:pointer;}
.gf56-menu-list{list-style:none;padding:2rem 0;}
.gf56-menu-item{padding:1.5rem 2rem;border-bottom:1px solid rgba(255,255,255,0.05);}
.gf56-menu-link{color:var(--gf56-primary);font-size:1.6rem;display:block;transition:color 0.3s ease;}
.gf56-menu-link:hover{color:var(--gf56-accent);text-decoration:none;}
.gf56-menu-overlay{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,0.5);z-index:9998;display:none;}
.gf56-menu-overlay.gf56-active{display:block;}

/* Main Content */
.gf56-main{padding-top:80px;padding-bottom:80px;}
@media (max-width:768px){.gf56-main{padding-bottom:140px;}}

/* Hero Section */
.gf56-hero{position:relative;height:300px;overflow:hidden;border-radius:var(--gf56-radius);margin:2rem;}
.gf56-hero-slide{width:100%;height:100%;background-size:cover;background-position:center;display:none;animation:gf56-fade 1s ease-in-out;}
@keyframes gf56-fade{from{opacity:0.4;}to{opacity:1;}}
.gf56-hero-content{position:absolute;bottom:2rem;left:2rem;right:2rem;background:rgba(27,38,59,0.9);padding:2rem;border-radius:var(--gf56-radius);color:var(--gf56-primary);}
.gf56-hero-title{font-size:2.8rem;margin-bottom:1rem;color:var(--gf56-primary);}
.gf56-hero-text{font-size:1.6rem;margin-bottom:2rem;}
.gf56-hero-cta{background:var(--gf56-accent);color:var(--gf56-primary);padding:1.5rem 3rem;border:none;border-radius:var(--gf56-radius);font-size:1.6rem;font-weight:600;cursor:pointer;transition:all 0.3s ease;display:inline-block;}
.gf56-hero-cta:hover{background:#e86a6a;transform:translateY(-2px);text-decoration:none;}

/* Section Styles */
.gf56-section{padding:3rem 2rem;}
.gf56-section-title{text-align:center;margin-bottom:3rem;font-size:3.2rem;color:var(--gf56-dark);}
.gf56-section-subtitle{text-align:center;margin-bottom:2rem;font-size:1.8rem;color:var(--gf56-text-light);}

/* Game Categories */
.gf56-games-container{margin-bottom:3rem;}
.gf56-category-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:2rem;padding:0 1rem;}
.gf56-category-title{font-size:2.4rem;color:var(--gf56-dark);display:flex;align-items:center;gap:1rem;}
.gf56-category-icon{font-size:2.8rem;color:var(--gf56-accent);}
.gf56-category-more{color:var(--gf56-accent);font-size:1.4rem;font-weight:600;cursor:pointer;}
.gf56-games-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;padding:0 1rem;}
.gf56-game-card{background:var(--gf56-primary);border-radius:var(--gf56-radius);overflow:hidden;box-shadow:var(--gf56-shadow);transition:all 0.3s ease;cursor:pointer;}
.gf56-game-card:hover{transform:translateY(-4px);box-shadow:0 4px 20px rgba(0,0,0,0.15);}
.gf56-game-image{width:100%;height:120px;object-fit:cover;transition:transform 0.3s ease;}
.gf56-game-card:hover .gf56-game-image{transform:scale(1.05);}
.gf56-game-name{padding:1rem;font-size:1.2rem;text-align:center;color:var(--gf56-dark);font-weight:500;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}

/* Content Modules */
.gf56-module{background:var(--gf56-primary);border-radius:var(--gf56-radius);padding:2.5rem;margin:2rem;box-shadow:var(--gf56-shadow);}
.gf56-module-title{font-size:2.4rem;margin-bottom:1.5rem;color:var(--gf56-dark);display:flex;align-items:center;gap:1rem;}
.gf56-module-icon{font-size:2.8rem;color:var(--gf56-accent);}
.gf56-module-content{font-size:1.6rem;color:var(--gf56-text-light);line-height:1.8;}
.gf56-module-cta{margin-top:2rem;text-align:center;}
.gf56-module-btn{background:var(--gf56-accent);color:var(--gf56-primary);padding:1.2rem 2.5rem;border:none;border-radius:var(--gf56-radius);font-size:1.6rem;font-weight:600;cursor:pointer;transition:all 0.3s ease;display:inline-block;}
.gf56-module-btn:hover{background:#e86a6a;transform:translateY(-2px);text-decoration:none;}

/* Partners Section */
.gf56-partners{background:var(--gf56-dark);color:var(--gf56-primary);padding:3rem 2rem;text-align:center;}
.gf56-partners-title{font-size:2.8rem;margin-bottom:2rem;color:var(--gf56-primary);}
.gf56-partners-container{display:flex;flex-wrap:wrap;justify-content:center;align-items:center;gap:2rem;}
.gf56-partner-logo{height:40px;width:auto;filter:brightness(0) invert(1);opacity:0.8;transition:opacity 0.3s ease;cursor:pointer;}
.gf56-partner-logo:hover{opacity:1;}

/* Footer */
.gf56-footer{background:var(--gf56-dark);color:var(--gf56-primary);padding:3rem 2rem 2rem;text-align:center;}
.gf56-footer-section{margin-bottom:2rem;}
.gf56-footer-title{font-size:2rem;margin-bottom:1rem;color:var(--gf56-primary);}
.gf56-footer-links{display:flex;flex-wrap:wrap;justify-content:center;gap:1.5rem;margin-bottom:2rem;}
.gf56-footer-link{color:var(--gf56-secondary);transition:color 0.3s ease;}
.gf56-footer-link:hover{color:var(--gf56-accent);text-decoration:none;}
.gf56-footer-text{font-size:1.4rem;color:var(--gf56-secondary);line-height:1.6;}
.gf56-footer-bottom{border-top:1px solid rgba(255,255,255,0.1);padding-top:2rem;margin-top:2rem;font-size:1.2rem;color:var(--gf56-secondary);}

/* Mobile Bottom Navigation */
.gf56-bottom-nav{position:fixed;bottom:0;left:0;right:0;background:linear-gradient(135deg,var(--gf56-dark) 0%,#2c3e50 100%);z-index:1000;display:none;box-shadow:0 -2px 10px rgba(0,0,0,0.1);}
.gf56-bottom-nav-container{display:flex;justify-content:space-around;align-items:center;height:64px;max-width:var(--gf56-max-width);margin:0 auto;}
.gf56-bottom-nav-item{flex:1;display:flex;flex-direction:column;align-items:center;justify-content:center;min-height:60px;cursor:pointer;transition:all 0.3s ease;color:var(--gf56-secondary);}
.gf56-bottom-nav-item:hover{color:var(--gf56-primary);transform:translateY(-2px);}
.gf56-bottom-nav-item.gf56-active{color:var(--gf56-accent);}
.gf56-bottom-nav-icon{font-size:24px;margin-bottom:4px;}
.gf56-bottom-nav-text{font-size:10px;font-weight:500;}

/* Responsive Design */
@media (max-width:768px){.gf56-header-buttons{display:none;}
.gf56-menu-toggle{display:block;}
.gf56-games-grid{grid-template-columns:repeat(3,1fr);}
.gf56-bottom-nav{display:block;}
.gf56-main{padding-bottom:140px;}
.gf56-hero{margin:1rem;height:250px;}
.gf56-hero-title{font-size:2.4rem;}
.gf56-section{padding:2rem 1rem;}
.gf56-module{margin:1rem;padding:2rem;}
}
@media (max-width:480px){.gf56-games-grid{grid-template-columns:repeat(2,1fr);gap:0.5rem;}
.gf56-game-name{font-size:1.1rem;padding:0.8rem;}
.gf56-game-image{height:100px;}
.gf56-partner-logo{height:30px;}
}

/* Utility Classes */
.gf56-text-center{text-align:center;}
.gf56-text-left{text-align:left;}
.gf56-text-right{text-align:right;}
.gf56-mb-1{margin-bottom:1rem;}
.gf56-mb-2{margin-bottom:2rem;}
.gf56-mb-3{margin-bottom:3rem;}
.gf56-mt-1{margin-top:1rem;}
.gf56-mt-2{margin-top:2rem;}
.gf56-mt-3{margin-top:3rem;}
.gf56-bold{font-weight:600;}
.gf56-uppercase{text-transform:uppercase;}
.gf56-capitalize{text-transform:capitalize;}

/* Animations */
@keyframes gf56-pulse{0%{transform:scale(1);}50%{transform:scale(1.05);}100%{transform:scale(1);}}
.gf56-pulse{animation:gf56-pulse 2s infinite;}

/* Form Styles */
.gf56-form-group{margin-bottom:2rem;}
.gf56-form-label{display:block;margin-bottom:0.5rem;font-weight:500;color:var(--gf56-dark);}
.gf56-form-input{width:100%;padding:1rem;border:2px solid var(--gf56-border);border-radius:var(--gf56-radius);font-size:1.6rem;transition:border-color 0.3s ease;}
.gf56-form-input:focus{outline:none;border-color:var(--gf56-accent);}
.gf56-form-error{color:var(--gf56-accent);font-size:1.4rem;margin-top:0.5rem;}

/* Loading Animation */
.gf56-loading{display:inline-block;width:20px;height:20px;border:3px solid rgba(255,255,255,.3);border-radius:50%;border-top-color:var(--gf56-primary);animation:gf56-spin 1s ease-in-out infinite;}
@keyframes gf56-spin{to{transform:rotate(360deg);}}