Website Template Free [new] - Guild

/* header / navbar */ .navbar position: sticky; top: 0; background: rgba(10, 12, 16, 0.92); backdrop-filter: blur(12px); z-index: 100; border-bottom: 1px solid rgba(79, 70, 229, 0.3); padding: 16px 0; .nav-container display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; .logo display: flex; align-items: center; gap: 12px; .logo-icon font-size: 32px; color: #818cf8; .logo h1 font-size: 1.8rem; font-weight: 800; letter-spacing: -0.5px; background: linear-gradient(135deg, #c7d2fe, #a5b4fc); background-clip: text; -webkit-background-clip: text; color: transparent; .nav-links display: flex; gap: 28px; list-style: none; .nav-links a text-decoration: none; color: #e2e8f0; font-weight: 500; transition: 0.2s; font-size: 1rem; .nav-links a:hover, .nav-links a.active color: #a5b4fc; border-bottom: 2px solid #4f46e5; padding-bottom: 4px; .btn-outline-light border: 1px solid #4f46e5; background: transparent; padding: 8px 20px; border-radius: 40px; color: #e2e8f0; font-weight: 600; cursor: pointer; transition: 0.2s; .btn-outline-light:hover background: #4f46e5; color: white; box-shadow: 0 4px 14px rgba(79, 70, 229, 0.4);

/* about / lore card */ .about-grid display: flex; gap: 40px; flex-wrap: wrap; background: #11161f; border-radius: 32px; padding: 40px; border: 1px solid #1e293b; .about-text flex: 2; .about-text h3 font-size: 1.8rem; margin-bottom: 16px; .about-text p margin-bottom: 20px; color: #cbd5e6; .about-stats flex: 1; background: #0f131a; border-radius: 24px; padding: 24px; display: flex; flex-direction: column; gap: 24px; .stat-item text-align: center; .stat-number font-size: 2.5rem; font-weight: 800; color: #a5b4fc; guild website template free

/* recruitment */ .recruit-box background: linear-gradient(145deg, #0f172a, #0a0f1a); border-radius: 40px; padding: 48px 32px; text-align: center; border: 1px solid #334155; .recruit-box h3 font-size: 2rem; margin-bottom: 16px; .recruit-tags display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 28px 0; .tag background: #1e293b; padding: 8px 18px; border-radius: 40px; font-size: 0.9rem; font-weight: 500; .btn-secondary background: transparent; border: 2px solid #818cf8; padding: 12px 32px; border-radius: 40px; font-weight: bold; color: white; cursor: pointer; transition: 0.2s; .btn-secondary:hover background: #818cf8; color: #0a0c10; /* header / navbar */

/* custom scroll */ ::-webkit-scrollbar width: 8px; ::-webkit-scrollbar-track background: #14181f; ::-webkit-scrollbar-thumb background: #4f46e5; border-radius: 12px; border-bottom: 1px solid rgba(79

@media (max-width: 800px) .hero-content h2 font-size: 2.3rem; .nav-container flex-direction: column; .nav-links gap: 20px; .hero-grid flex-direction: column-reverse; text-align: center; .hero-content p margin-left: auto; margin-right: auto; .hero-buttons justify-content: center; .section-title font-size: 2rem; </style> </head> <body>

// smooth scroll for anchor links document.querySelectorAll('.nav-links a, #rosterBtn, .btn-outline-light[href="#"]').forEach(anchor => anchor.addEventListener('click', function(e) const href = this.getAttribute('href'); if (href && href.startsWith('#')) e.preventDefault(); const targetId = href.substring(1); const targetElement = document.getElementById(targetId); if (targetElement) targetElement.scrollIntoView( behavior: 'smooth', block: 'start' ); else if (this.id === 'rosterBtn') e.preventDefault(); const rosterSection = document.getElementById('roster'); if (rosterSection) rosterSection.scrollIntoView( behavior: 'smooth' ); ); );