 .character-cards-container { width: 100%; margin-bottom: 4rem; } .cards-title { font-size: 2.5rem; color: #00ff73; text-align: center; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 2px; text-shadow: 0 0 10px rgba(0, 255, 115, 0.5); } .cards-subtitle { color: #cccccc; text-align: center; font-size: 1.2rem; margin-bottom: 3rem; line-height: 1.6; } .character-cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; margin: 0 auto; } .character-card { background-color: #1a1a1a; border: 2px solid #373636; border-radius: 0px; overflow: hidden; width: 100%; max-width: 350px; transition: all 0.3s ease; display: flex; flex-direction: column; box-shadow: 0 0 20px rgba(0, 255, 115, 0.1); } .character-card:hover { transform: translateY(-10px); border-color: #00ff73; box-shadow: 0 0 30px rgba(0, 255, 115, 0.3); } .card-image-container { width: 100%; height: 250px; background-color: #222222; display: flex; align-items: center; justify-content: center; overflow: hidden; border-bottom: 2px solid #373636; } .card-image { width: 200px; height: 200px; object-fit: cover; border: 2px solid #00ff73; background-color: #0a2f0a; } .card-content { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; } .card-title { color: #00ff73; font-size: 1.2rem; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 1px; text-align: center; border-bottom: 1px solid #373636; padding-bottom: 0.5rem; } .card-description { color: #cccccc; font-size: 0.8rem; line-height: 1.6; margin-bottom: 1.5rem; flex-grow: 1; text-align: center; } .card-btn { background-color: #0a2f0a; color: #00ff73; border: 2px solid #00ff73; font-family: 'VT323', monospace; font-size: 1.2rem; padding: 12px 20px; text-transform: uppercase; letter-spacing: 2px; text-align: center; text-decoration: none; display: block; transition: all 0.3s ease; position: relative; overflow: hidden; cursor: pointer; } .card-btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(0, 255, 115, 0.2), transparent); transition: left 0.6s ease; } .card-btn:hover { background-color: #0f4f0f; box-shadow: 0 0 20px rgba(0, 255, 115, 0.7); transform: translateY(-3px); cursor: pointer; } .card-btn:hover::before { left: 100%; } .card-btn:active { transform: translateY(1px); box-shadow: 0 0 10px rgba(0, 255, 115, 0.7); } @media (min-width: 768px) { .character-card { width: calc(33.333% - 1.5rem); } } @media (max-width: 767px) { .cards-title { font-size: 1.8rem; } .cards-subtitle { font-size: 1rem; margin-bottom: 2rem; } .character-card { max-width: 100%; } .card-title { font-size: 1.3rem; } .card-description { font-size: 0.95rem; } .card-btn { font-size: 1rem; padding: 10px 15px; } } * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: "Roboto Condensed", sans-serif; background-color: #000000; color: #ffffff; line-height: 1.6; min-height: 100vh; display: flex; flex-direction: column; } header { background-color: #171717; border-bottom: 1px solid #373636; padding: 1rem 0; } .header-content { padding: 0 20px; width: 100%; position: relative; min-height: 60px; display: flex; align-items: center; } .header-content h1 { font-size: 2.5rem; font-weight: 700; text-align: left; letter-spacing: 1px; } #main-header { background-image: url('icon2.png'); background-repeat: no-repeat; background-position: left center; background-size: contain; padding-left: 70px; background-size: auto 100%; } main { flex: 1; padding: 2rem 0; } .beta-title { font-size: 0.7rem; margin-left: 9px; display: inline; position: absolute; margin-top: 25px; border: 1px solid #484848; background-color: #151515; border-radius: 2px; width: 40px; text-align: center; cursor: pointer; transition: all 0.3s ease; color: rgb(207, 206, 206); } .beta-title:hover { background-color: #1a1a1a; border-color: #6d6d6d; transition: all 0.3s ease; color: white; } .container { max-width: 1400px; margin: 0 auto; padding: 0 40px; display: flex; flex-direction: column; gap: 2rem; } .blog-title { padding: 3rem 0; } .blog-title-content { max-width: 1400px; margin: 0 auto; padding: 0 40px; text-align: center; } .blog-title h2 { font-size: 3rem; color: #00ff73; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; text-shadow: 0 0 10px rgba(0, 255, 115, 0.5); position: relative; padding-bottom: 1rem; } .blog-title h2::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 200px; height: 3px; background: linear-gradient(90deg, transparent, #00ff73, transparent); } .summary-container { width: 100%; margin-top: 3rem; padding-top: 3rem; border-top: 2px solid #373636; } .summary { background-color: #1a1a1a; border: 2px solid #00ff73; padding: 2.5rem; border-radius: 0px; max-width: 800px; margin: 0 auto; text-align: center; box-shadow: 0 0 30px rgba(0, 255, 115, 0.2); position: relative; overflow: hidden; } .summary::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, #00ff73, transparent); } .summary h2 { font-size: 2.2rem; margin-bottom: 1.5rem; color: #ffffff; border-bottom: 1px solid #00ff73; padding-bottom: 0.8rem; text-transform: uppercase; letter-spacing: 1px; } .summary p { margin-bottom: 1.5rem; color: #cccccc; font-size: 1.2rem; line-height: 1.8; } .mris-btn { background-color: #0a2f0a; color: #00ff73; border: 2px solid #00ff73; font-family: 'VT323', monospace; font-size: 1.3rem; padding: 15px 50px; text-transform: uppercase; letter-spacing: 2px; position: relative; z-index: 2; box-shadow: 0 0 15px rgba(0, 255, 115, 0.7); transition: all 0.3s ease; animation: fls-button-pulse 3s infinite; border-radius: 0px; width: auto; min-width: 100px; margin: 2rem auto 0 auto; display: block; text-align: center; overflow: hidden; text-decoration: none; cursor: pointer; } .mris-btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(0, 255, 115, 0.2), transparent); transition: left 0.6s ease; } .mris-btn:hover { background-color: #0f4f0f; box-shadow: 0 0 35px rgba(0, 255, 115, 1); transform: translateY(-3px); } .mris-btn:hover::before { left: 100%; } .mris-btn:active { transform: translateY(1px); box-shadow: 0 0 15px rgba(0, 255, 115, 0.7); } @keyframes fls-button-pulse { 0%, 100% { box-shadow: 0 0 15px rgba(0, 255, 115, 0.7); } 50% { box-shadow: 0 0 25px rgba(0, 255, 115, 1); } } .content { width: 100%; margin-bottom: 4rem; } .tab-container { border: 2px solid #373636; border-radius: 0px; overflow: hidden; background-color: #1a1a1a; box-shadow: 0 0 40px rgba(0, 255, 115, 0.1); } .tab-header { display: flex; background-color: #222222; border-bottom: 2px solid #373636; } .tab-btn { background-color: #222222; color: #cccccc; border: none; padding: 1.0rem 2rem; font-size: 1.0rem; font-family: "Roboto Condensed", sans-serif; cursor: pointer; flex: 1; text-align: center; transition: all 0.3s ease; border-radius: 0px; text-transform: uppercase; letter-spacing: 1px; position: relative; overflow: hidden; } .tab-btn::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 3px; background-color: #00ff73; transition: width 0.3s ease; } .tab-btn.active { background-color: #1a1a1a; color: #00ff73; font-weight: 700; } .tab-btn.active::after { width: 80%; } .tab-btn:not(.active):hover { background-color: #2a2a2a; color: #ffffff; } .tab-content { background-color: #1a1a1a; padding: 3rem; min-height: 500px; overflow-y: auto; max-height: 700px; } .tab-pane { display: none; animation: fadeIn 0.5s ease; } .tab-pane.active { display: block; } @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } } .define { text-align: center; padding: 2rem; background-color: rgba(26, 26, 26, 0.7); border: 1px solid #373636; border-radius: 0px; margin: 3rem auto; max-width: 800px; position: relative; overflow: hidden; transition: all 0.3s ease; } .define:hover { border-color: #00ff73; box-shadow: 0 0 25px rgba(0, 255, 115, 0.15); transform: translateY(-2px); } .define::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, #00ff73, transparent); opacity: 0; transition: opacity 0.3s ease; } .define:hover::before { opacity: 1; } .define h2 { color: #00ff73; font-size: 1.8rem; margin-bottom: 1.2rem; text-transform: uppercase; letter-spacing: 1.5px; text-shadow: 0 0 10px rgba(0, 255, 115, 0.3); border-bottom: 1px solid #373636; padding-bottom: 0.8rem; position: relative; } .define h2::after { content: ''; position: absolute; bottom: -1px; left: 50%; transform: translateX(-50%); width: 100px; height: 2px; background-color: #00ff73; } .define p { color: #cccccc; font-size: 1.1rem; line-height: 1.7; margin-bottom: 0; opacity: 0.9; } @media (max-width: 767px) { .define { padding: 1.5rem; margin: 2rem 20px; } .define h2 { font-size: 1.4rem; margin-bottom: 1rem; } .define p { font-size: 1rem; line-height: 1.6; } } @media (max-width: 480px) { .define { padding: 1.2rem; margin: 1.5rem 15px; } .define h2 { font-size: 1.2rem; } .define p { font-size: 0.95rem; } } .tab-pane h2 { font-size: 1.5rem; margin-bottom: 2rem; color: #00ff73; border-bottom: 2px solid #373636; padding-bottom: 0.8rem; text-transform: uppercase; letter-spacing: 1px; } .tab-pane p { margin-bottom: 1.5rem; color: #cccccc; font-size: 1.1rem; line-height: 1.8; } .tab-pane#story p:first-of-type { background-color: #222222; padding: 1.5rem; border-left: 4px solid #00ff73; margin-bottom: 2rem; font-size: 1.2rem; } .tab-pane#story p:first-of-type span { color: #6d6d6d; font-weight: bold; } footer { background-color: #171717; border-bottom: 1px solid #373636; padding: 2rem 0; margin-top: auto; } .footer-content { max-width: 1400px; margin: 0 auto; padding: 0 40px; display: flex; flex-direction: column; align-items: center; gap: 2rem; } .footer-text p { font-size: 1.1rem; color: #cccccc; text-align: center; font-family: 'VT323', monospace; letter-spacing: 1px; } .social-links { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; } .social-link { position: relative; overflow: hidden; border-radius: 50%; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; background-color: #222222; border: 1px solid #373636; transition: all 0.3s ease; } .social-link img { width: 30px; height: 30px; border-radius: 0px; transition: transform 0.3s ease; filter: brightness(0.9); } .social-link:hover { background-color: #00ff73; border-color: #00ff73; transform: translateY(-3px); box-shadow: 0 0 15px rgba(0, 255, 115, 0.5); } .social-link:hover img { transform: scale(1.2); filter: brightness(1); } ::-webkit-scrollbar { width: 12px; height: 12px; } ::-webkit-scrollbar-track { background: #1a1a1a; border: 1px solid #373636; } ::-webkit-scrollbar-thumb { background: #00ff73; border: 1px solid #373636; } ::-webkit-scrollbar-thumb:hover { background: #00cc5a; } ::-webkit-scrollbar-corner { background: #1a1a1a; } * { scrollbar-width: thin; scrollbar-color: #00ff73 #1a1a1a; } ::selection { background-color: #00ff73; color: #000000; text-shadow: none; } ::-moz-selection { background-color: #00ff73; color: #000000; text-shadow: none; } @media (min-width: 1024px) { .container { padding: 0 60px; } .blog-title-content { padding: 0 60px; } .tab-content { padding: 4rem; max-height: 800px; } .tab-btn { padding: 1.5rem 4rem; font-size: 1.4rem; } .summary { padding: 3rem; } .footer-content { flex-direction: row; justify-content: space-between; padding: 0 60px; } .footer-text p { text-align: left; } } @media (max-width: 767px) { .header-content h1 { font-size: 1.5rem; } .blog-title h2 { font-size: 1.8rem; } .container { padding: 0 20px; } .blog-title-content { padding: 0 20px; } .tab-btn { padding: 0.8rem 1.2rem; font-size: 0.9rem; } .tab-content { padding: 1.2rem; max-height: 500px; } .tab-pane h2 { font-size: 1.2rem; margin-bottom: 1.5rem; } .tab-pane p { font-size: 0.95rem; line-height: 1.6; } .tab-pane#story p:first-of-type { font-size: 1rem; padding: 1.2rem; } .summary { padding: 1.2rem; margin: 0 15px; } .summary h2 { font-size: 1.5rem; margin-bottom: 1.2rem; } .summary p { font-size: 0.95rem; line-height: 1.6; margin-bottom: 1.2rem; } .mris-btn { padding: 10px 25px; font-size: 1rem; min-width: 160px; } .social-links { gap: 0.8rem; } .social-link { width: 40px; height: 40px; } .social-link img { width: 22px; height: 22px; } .footer-text p { font-size: 0.9rem; } .panel-header h3 { font-size: 1.3rem; } .panel-item-title { font-size: 1.1rem; } .panel-link { font-size: 0.9rem; } } @media (max-width: 480px) { .header-content h1 { font-size: 1.5rem; } .blog-title h2 { font-size: 1.6rem; } .tab-btn { font-size: 0.85rem; padding: 0.7rem 1rem; } .tab-pane h2 { font-size: 1.1rem; } .tab-pane p { font-size: 0.9rem; } .summary h2 { font-size: 1.3rem; } .summary p { font-size: 0.9rem; } .beta-title { font-size: 0.6rem; margin-left: 7px; display: inline; position: absolute; margin-top: 11px; border: 1px solid #484848; background-color: #151515; border-radius: 2px; width: 35px; text-align: center; cursor: pointer; transition: all 0.3s ease; color: rgb(207, 206, 206); } }
