: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); --gold-gradient: linear-gradient(135deg, #ffd700, #d4af37); --platinum-gradient: linear-gradient(135deg, #e5e4e2, #c0c0c0); --diamond-gradient: linear-gradient(135deg, #b9f2ff, #7ec8e3); } * { 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: 4px; background: linear-gradient(90deg, #7d7dff, #2874f0, #7d7dff); 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; } .main-container { max-width: 1200px; margin: 3rem auto; padding: 0 20px; } .hero-section { text-align: center; margin-bottom: 50px; position: relative; padding: 40px 0; } .hero-section::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at center, rgba(40, 116, 240, 0.1) 0, transparent 70%); z-index: -1; } .hero-title { font-size: 2.8rem; font-weight: 800; margin-bottom: 15px; background: linear-gradient(to right, #2874f0, #7d7dff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); } .hero-subtitle { font-size: 1.2rem; color: var(--text-light); max-width: 700px; margin: 0 auto 30px; line-height: 1.7; } .pricing-section { margin: 60px 0; } .section-title { font-size: 2rem; text-align: center; margin-bottom: 50px; position: relative; display: inline-block; left: 50%; transform: translateX(-50%); color: var(--dark-color); } .section-title::after { content: ""; position: absolute; bottom: -10px; left: 0; width: 100%; height: 4px; background: linear-gradient(to right, var(--primary-color), var(--secondary-color)); border-radius: 2px; } .pricing-cards { display: flex; justify-content: center; gap: 30px; margin: 50px 0; flex-wrap: wrap; } .pricing-card { background: #fff; border-radius: 20px; padding: 40px 30px; width: 320px; box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); position: relative; overflow: hidden; border: 1px solid rgba(0, 0, 0, 0.05); z-index: 1; } .pricing-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: linear-gradient(to right, var(--primary-color), var(--secondary-color)); } .pricing-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15); } .pricing-card.popular { border: 1px solid var(--primary-color); box-shadow: 0 15px 40px rgba(40, 116, 240, 0.2); } .pricing-card.popular::before { background: var(--gold-gradient); height: 8px; } .pricing-card.popular .plan-name { color: #d4af37; } .popular-tag { position: absolute; top: 15px; right: -30px; background: var(--gold-gradient); color: #fff; padding: 5px 40px; font-size: 0.8rem; font-weight: 600; transform: rotate(45deg); box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); } .plan-name { font-size: 1.6rem; font-weight: 700; margin-bottom: 15px; color: var(--dark-color); text-align: center; } .plan-price { font-size: 3rem; font-weight: 800; color: var(--primary-color); text-align: center; margin: 20px 0; position: relative; display: inline-block; left: 50%; transform: translateX(-50%); } .plan-price span { font-size: 1rem; font-weight: 400; color: var(--text-light); } .plan-features { list-style: none; margin: 30px 0; padding: 0; } .plan-features li { padding: 12px 0; border-bottom: 1px dashed #eee; display: flex; align-items: center; font-size: 0.95rem; } .plan-features li::before { content: "✓"; color: var(--success-color); margin-right: 10px; font-weight: 700; font-size: 1.1rem; } .plan-button { display: block; width: 100%; padding: 15px; border-radius: 50px; background: linear-gradient(to right, var(--primary-color), var(--secondary-color)); color: #fff; text-align: center; font-weight: 600; text-decoration: none; transition: all 0.3s ease; border: none; cursor: pointer; font-size: 1rem; box-shadow: 0 5px 15px rgba(40, 116, 240, 0.3); margin-top: 20px; } .plan-button:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(40, 116, 240, 0.4); background: linear-gradient(to right, var(--secondary-color), var(--primary-color)); } .plan-button.popular { background: var(--gold-gradient); box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3); } .plan-button.popular:hover { box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4); } .servers-section { margin: 80px 0; } .server-category { font-size: 1.8rem; margin: 60px 0 30px; color: var(--dark-color); position: relative; padding-left: 20px; } .server-category::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 8px; height: 40px; background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color)); border-radius: 4px; } .servers-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; } .server-card { background: #fff; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); transition: all 0.3s ease; position: relative; border: 1px solid rgba(0, 0, 0, 0.05); } .server-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15); } .server-status-badge { position: absolute; top: 15px; left: 15px; background-color: rgba(76, 175, 80, 0.9); color: #fff; padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; display: flex; align-items: center; gap: 5px; z-index: 2; backdrop-filter: blur(5px); border: 1px solid rgba(255, 255, 255, 0.2); } .server-status-badge::before { content: ""; display: inline-block; width: 8px; height: 8px; background-color: #fff; border-radius: 50%; animation: pulse 1.5s infinite; } .server-status-badge.free { background-color: rgba(76, 175, 80, 0.9); } .server-status-badge.premium { background-color: rgba(255, 152, 0, 0.9); } .server-image { width: 100%; height: 180px; object-fit: cover; transition: transform 0.5s ease; } .server-card:hover .server-image { transform: scale(1.05); } .server-content { padding: 20px; } .server-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; color: var(--dark-color); display: flex; align-items: center; justify-content: space-between; } .server-type { font-size: 0.8rem; padding: 3px 10px; border-radius: 15px; font-weight: 600; } .server-type.free { background-color: rgba(76, 175, 80, 0.1); color: var(--success-color); border: 1px solid var(--success-color); } .server-type.premium { background-color: rgba(255, 152, 0, 0.1); color: var(--warning-color); border: 1px solid var(--warning-color); } .server-description { color: var(--text-light); font-size: 0.95rem; margin-bottom: 20px; line-height: 1.6; } .server-stats { display: flex; justify-content: space-between; margin-bottom: 20px; font-size: 0.9rem; } .stat-item { display: flex; align-items: center; gap: 5px; color: var(--text-light); } .stat-item i { color: var(--primary-color); } .server-action { display: block; text-align: center; padding: 12px; border-radius: 8px; font-weight: 600; text-decoration: none; transition: all 0.3s ease; } .server-action.free { background-color: rgba(76, 175, 80, 0.1); color: var(--success-color); border: 1px solid var(--success-color); } .server-action.free:hover { background-color: var(--success-color); color: #fff; } .server-action.premium { background: linear-gradient(to right, var(--primary-color), var(--secondary-color)); color: #fff; } .server-action.premium:hover { background: linear-gradient(to right, var(--secondary-color), var(--primary-color)); box-shadow: 0 5px 15px rgba(40, 116, 240, 0.3); } 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; } @media (max-width: 992px) { .hero-title { font-size: 2.4rem; } .pricing-cards { gap: 20px; } } @media (max-width: 768px) { .header-content { padding: 0 20px; } .logo-text h1 { font-size: 1.6rem; } .hero-title { font-size: 2rem; } .pricing-card { width: 100%; max-width: 400px; } .side-menu { width: 300px; } } @media (max-width: 576px) { .logo-text h1 { font-size: 1.4rem; } .logo-text p { font-size: 0.8rem; } .hero-title { font-size: 1.8rem; } .hero-subtitle { font-size: 1rem; } .section-title { font-size: 1.6rem; } .server-category { font-size: 1.5rem; } }
