:root { --primary-color: #2874f0; --secondary-color: #7d7dff; --accent-color: #4caf50; --dark-color: #1a1a2e; --light-color: #f8f9fa; --success-color: #4caf50; --warning-color: #ff9800; --danger-color: #ff5722; --info-color: #03a9f4; --text-color: #333; --text-light: #777; --shadow: 0 4px 6px rgba(0, 0, 0, 0.1); --transition: all 0.3s ease; --card-bg: #ffffff; --container-border: 1px solid rgba(0, 0, 0, 0.1); } * { margin: 0; padding: 0; box-sizing: border-box; font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } body, html { margin: 0; padding: 0; background-color: var(--light-color); color: var(--text-color); scroll-behavior: smooth; } .loading-bar { position: fixed; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--secondary-color), var(--primary-color), var(--secondary-color)); background-size: 200% 100%; animation: loading 2s linear infinite; z-index: 1000; } @keyframes loading { 0% { background-position: 0 0; } 100% { background-position: 200% 0; } } header { position: relative; width: 100%; height: 120px; display: flex; align-items: center; justify-content: center; text-align: center; box-shadow: var(--shadow); overflow: hidden; background: linear-gradient(135deg, var(--secondary-color) 0, var(--primary-color) 100%); color: #fff; } .header-content { display: flex; width: 100%; height: 100%; align-items: center; justify-content: space-between; padding: 0 30px; position: relative; } .logo-container { display: flex; align-items: center; gap: 15px; } .logo { width: 60px; height: 60px; background-color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); animation: pulse 2s infinite; } @keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } } .logo i { font-size: 28px; color: var(--primary-color); } .logo-text { display: flex; flex-direction: column; align-items: flex-start; } .logo-text h1 { font-size: 1.4rem !important; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 5px; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); } @media (max-width: 768px) { .logo-text h1 { font-size: 1.1rem !important; } } .logo-text p { font-size: 0.9rem; opacity: 0.9; letter-spacing: 1px; } .menu-toggle { display: flex; flex-direction: column; justify-content: space-between; width: 30px; height: 21px; cursor: pointer; z-index: 100; position: relative; } .menu-toggle span { display: block; height: 3px; width: 100%; background-color: #fff; border-radius: 3px; transition: var(--transition); } .menu-toggle.active span:first-child { transform: translateY(9px) rotate(45deg); } .menu-toggle.active span:nth-child(2) { opacity: 0; } .menu-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); } .side-menu { position: fixed; top: 0; right: -300px; width: 300px; height: 100vh; background-color: var(--dark-color); z-index: 99; transition: var(--transition); padding: 80px 20px 20px; box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2); } .side-menu.active { right: 0; } .menu-header { display: flex; align-items: center; gap: 10px; margin-bottom: 30px; padding-bottom: 15px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); } .menu-header i { font-size: 24px; color: var(--primary-color); } .menu-header h3 { color: #fff; font-size: 1.2rem; } .menu-items { list-style: none; padding: 0; margin: 0; } .menu-items li { margin-bottom: 12px; transition: all 0.3s ease; } .menu-items a { display: flex; align-items: center; gap: 12px; color: rgba(255, 255, 255, 0.85); text-decoration: none; padding: 12px 15px; border-radius: 8px; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); background-color: rgba(255, 255, 255, 0.05); position: relative; overflow: hidden; font-size: 0.9rem; } .menu-items a::before { content: ""; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent); transition: all 0.5s ease; } .menu-items a:hover { background-color: rgba(255, 255, 255, 0.1); color: #fff; transform: translateX(8px); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); } .menu-items a:hover::before { left: 100%; } .menu-items i { width: 20px; text-align: center; font-size: 1rem; color: var(--primary-color); transition: all 0.3s ease; } .menu-items a:hover i { transform: scale(1.2); color: #fff; } .menu-description { position: fixed; bottom: 20px; left: 20px; right: 20px; background: rgba(40, 116, 240, 0.9); color: #fff; padding: 15px; border-radius: 10px; opacity: 0; visibility: hidden; transition: all 0.3s ease; transform: translateY(20px); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); z-index: 10; max-width: 300px; margin: 0 auto; } .menu-description.active { opacity: 1; visibility: visible; transform: translateY(0); } .menu-description h4 { margin-bottom: 8px; font-size: 1rem; color: #fff; display: flex; align-items: center; gap: 8px; } .menu-description h4 i { color: #fff; } .menu-description p { font-size: 0.85rem; line-height: 1.5; margin: 0; } .menu-items a.active { background-color: var(--primary-color); color: #fff; } .menu-items a.active i { color: #fff; } .server-status { margin-top: 30px; padding: 15px; background-color: rgba(0, 0, 0, 0.2); border-radius: 5px; color: #fff; } .status-item { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 0.9rem; } .status-label { opacity: 0.8; } .status-value { font-weight: 700; } .online { color: var(--success-color); } .offline { color: var(--danger-color); } #time-box { position: absolute; bottom: 10px; right: 20px; font-size: 0.6rem; background: rgba(0, 0, 0, 0.3); color: #fff; padding: 5px 10px; border-radius: 20px; font-weight: 600; text-align: center; z-index: 10; display: flex; align-items: center; gap: 5px; } .container { background: var(--card-bg); border-radius: 12px; width: 90%; max-width: 1200px; margin: 30px auto; padding: 30px; text-align: center; box-shadow: 0 18px 124px rgba(0, 0, 0, 0.08); transform: translateY(20px); opacity: 0; animation: fadeInUp 0.5s forwards; border: var(--container-border); } .cover-image { width: 100%; aspect-ratio: 16/9; background-color: #e0e0e0; border-radius: 22px; margin: 20px 0; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; } .cover-image img { width: 100%; height: 100%; object-fit: cover; } .cover-placeholder { color: #666; font-size: 1.2rem; font-weight: 500; } @keyframes fadeInUp { to { transform: translateY(0); opacity: 1; } } @keyframes fadeInUp { to { transform: translateY(0); opacity: 1; } } .container h2 { font-size: 1.8rem; margin-bottom: 2rem; font-weight: 700; color: var(--primary-color); position: relative; display: inline-block; } .container h2::after { content: ""; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background: var(--primary-color); border-radius: 3px; } .options-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin-top: 30px; } .option { display: flex; flex-direction: column; align-items: center; padding: 25px; border-radius: 12px; transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); background-color: var(--card-bg); border: var(--container-border); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); position: relative; overflow: hidden; transform-style: preserve-3d; perspective: 1000px; } .option::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: var(--primary-color); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; } .option:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15); border-color: rgba(0, 0, 0, 0.15); } .option:hover::before { transform: scaleX(1); } .option::after { content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0; border-radius: 12px; box-shadow: 0 0 15px rgba(0, 0, 0, 0.1); opacity: 0; transition: opacity 0.3s ease; } .option:hover::after { opacity: 1; } .option a { text-decoration: none; display: inline-block; padding: 14px 28px; font-size: 1.5rem; font-weight: 600; color: var(--primary-color); border-radius: 30px; background-color: transparent; border: 2px solid var(--primary-color); text-align: center; transition: all 0.3s ease; width: 100%; margin-top: 15px; position: relative; overflow: hidden; z-index: 1; } .option a::before { content: ""; position: absolute; top: 0; left: 0; width: 0; height: 100%; background: var(--primary-color); transition: width 0.3s ease; z-index: -1; } .option a:hover { color: #fff; transform: scale(1.02); } .option a:hover::before { width: 100%; } .icon-container { width: 100px; height: 100px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; position: relative; } .icon-bg { position: absolute; width: 100%; height: 100%; border-radius: 50%; opacity: 0.1; z-index: 0; } .icon { font-size: 3rem; z-index: 1; transition: all 0.4s ease; } .services-icon { color: var(--success-color); } .services-icon-bg { background: var(--success-color); } .pricing-icon { color: var(--danger-color); } .pricing-icon-bg { background: var(--danger-color); } .admin-icon { color: var(--info-color); } .admin-icon-bg { background: var(--info-color); } .status-icon { color: var(--warning-color); } .status-icon-bg { background: var(--warning-color); } .option:hover .icon { transform: rotate(10deg) scale(1.2); filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2)); } .option p { font-size: 1.3rem; font-weight: 600; color: var(--text-color); margin-top: 10px; position: relative; z-index: 1; } .description-container { background: rgba(0, 0, 0, 0.03); border-radius: 34px; padding: 6px 8px; margin-top: 10px; border: 0.5px solid rgba(0, 0, 0, 0.08); width: 92%; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); backdrop-filter: blur(4px); transform: scale(0.96); opacity: 0.9; margin-left: auto; margin-right: auto; } .description { font-size: 0.35rem !important; text-align: center; color: var(--text-color); opacity: 0.8; line-height: 1.3; font-weight: 400; margin: 0; letter-spacing: 0.02em; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; transform: scale(0.95); display: inline-block; } @media screen and (min-width: 768px) { .description { font-size: 0.4rem !important; } } .option:hover .description-container { transform: translateY(-2px) scale(0.98); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); background: rgba(0, 0, 0, 0.05); } @supports (font-size: 0.25rem) { .description { font-size: 1rem !important; } } footer { background: linear-gradient(135deg, var(--dark-color) 0, #2a2a4e 100%); color: #fff; padding: 25px 0 15px; position: relative; font-size: 0.85rem; box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2); } .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; max-width: 1100px; margin: 0 auto; padding: 0 15px; } .footer-section { margin-bottom: 15px; } .footer-section h3 { font-size: 1.1rem; margin-bottom: 10px; position: relative; padding-bottom: 5px; font-weight: 600; letter-spacing: 0.5px; } .footer-section h3::after { content: ""; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--primary-color); transition: width 0.3s ease; } .footer-section h3:hover::after { width: 50px; } .footer-section p { margin-bottom: 10px; line-height: 1.4; opacity: 0.85; font-size: 0.8rem; transition: opacity 0.3s ease; } .footer-section p:hover { opacity: 1; } .social-links { display: flex; gap: 10px; margin-top: 10px; } .social-links a { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2)); color: #fff; font-size: 0.9rem; transition: var(--transition), transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); } .social-links a:hover { background: var(--primary-color); transform: translateY(-3px) scale(1.1); box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); } .quick-links { list-style: none; } .quick-links li { margin-bottom: 6px; } .quick-links a { color: rgba(255, 255, 255, 0.85); text-decoration: none; font-size: 0.8rem; transition: var(--transition); gap: 8px; } .quick-links a:hover { color: #fff; transform: translateX(3px); } .quick-links i { font-size: 0.7rem; color: var(--primary-color); transition: transform 0.3s ease; } .quick-links a:hover i { transform: scale(1.2); } .contact-info { list-style: none; } .contact-info li { margin-bottom: 8px; gap: 8px; font-size: 0.8rem; align-items: center; } .contact-info i { color: var(--primary-color); font-size: 0.9rem; transition: transform 0.3s ease; } .contact-info li:hover i { transform: rotate(10deg); } .footer-bottom { text-align: center; padding-top: 15px; margin-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.08); font-size: 0.75rem; opacity: 0.8; font-weight: 700; } .footer-bottom p { margin: 3px 0; } .footer-bottom a { color: var(--primary-color); text-decoration: none; transition: color 0.3s ease; } .footer-bottom a:hover { color: var(--secondary-color); text-decoration: underline; } .back-to-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background-color: var(--primary-color); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; visibility: hidden; transition: var(--transition); z-index: 99; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); } .back-to-top.active { opacity: 1; visibility: visible; } .back-to-top:hover { background-color: var(--secondary-color); transform: translateY(-5px); } @media (max-width: 768px) { .header-content { padding: 0 15px; } .logo-text h1 { font-size: 1.4rem; } .logo-text p { font-size: 0.8rem; } .container { padding: 20px; width: 95%; } .options-grid { grid-template-columns: 1fr; } .footer-content { grid-template-columns: 1fr; } } @media (max-width: 480px) { .icon-container { width: 80px; height: 80px; } .icon { font-size: 2.5rem; } }
