2025-09-18 13:25:17 -04:00
<!DOCTYPE html>
< html lang = "en" >
< head >
< meta charset = "UTF-8" >
< meta name = "viewport" content = "width=device-width, initial-scale=1.0" >
< title > PSX2 - PlayStation 2 Emulator</ title >
< style >
2025-11-16 21:27:53 -05:00
* {
margin : 0 ;
padding : 0 ;
box-sizing : border-box ;
}
2025-09-18 13:25:17 -04:00
body {
2025-11-16 21:40:45 -05:00
font-family : - apple-system , BlinkMacSystemFont , 'Segoe UI' , Roboto , sans-serif ;
background : #0F1419 ;
color : #DFE2EA ;
2025-11-16 21:27:53 -05:00
line-height : 1.6 ;
min-height : 100 vh ;
}
. container {
max-width : 900 px ;
2025-09-18 13:25:17 -04:00
margin : 0 auto ;
padding : 2 rem ;
}
2025-11-16 21:27:53 -05:00
2025-09-18 13:25:17 -04:00
. header {
text-align : center ;
2025-11-16 21:27:53 -05:00
margin-bottom : 3 rem ;
padding : 3 rem 2 rem ;
2025-11-16 21:40:45 -05:00
background : #1a1f2e ;
border : 2 px solid #9ECAFF ;
border-radius : 12 px ;
box-shadow : 0 4 px 12 px rgba ( 158 , 202 , 255 , 0.15 );
2025-09-18 13:25:17 -04:00
}
2025-11-16 21:27:53 -05:00
2025-09-18 13:25:17 -04:00
. header h1 {
2025-11-16 21:27:53 -05:00
font-size : 3.5 rem ;
2025-11-16 21:40:45 -05:00
color : #9ECAFF ;
2025-09-18 13:25:17 -04:00
margin-bottom : 0.5 rem ;
2025-11-16 21:40:45 -05:00
font-weight : 600 ;
letter-spacing : 1 px ;
2025-09-18 13:25:17 -04:00
}
2025-11-16 21:27:53 -05:00
2025-09-18 13:25:17 -04:00
. header p {
2025-11-16 21:40:45 -05:00
color : #BFC7D4 ;
font-size : 1.2 rem ;
opacity : 0.95 ;
2025-09-18 13:25:17 -04:00
}
2025-11-16 21:27:53 -05:00
. description {
2025-11-16 21:40:45 -05:00
background : #1a1f2e ;
border : 1 px solid #404752 ;
border-radius : 12 px ;
2025-11-16 21:27:53 -05:00
padding : 2 rem ;
margin-bottom : 2 rem ;
2025-11-16 21:40:45 -05:00
box-shadow : 0 2 px 8 px rgba ( 0 , 0 , 0 , 0.3 );
2025-11-16 21:27:53 -05:00
}
. description p {
margin-bottom : 1 rem ;
2025-11-16 21:40:45 -05:00
font-size : 1 rem ;
2025-11-16 21:27:53 -05:00
line-height : 1.8 ;
2025-11-16 21:40:45 -05:00
color : #DFE2EA ;
2025-11-16 21:27:53 -05:00
}
. features {
2025-11-16 21:40:45 -05:00
background : #1a1f2e ;
border : 1 px solid #404752 ;
border-radius : 12 px ;
2025-11-16 21:27:53 -05:00
padding : 2 rem ;
margin-bottom : 2 rem ;
2025-11-16 21:40:45 -05:00
box-shadow : 0 2 px 8 px rgba ( 0 , 0 , 0 , 0.3 );
2025-11-16 21:27:53 -05:00
}
. features h2 {
2025-11-16 21:40:45 -05:00
color : #9ECAFF ;
margin-bottom : 1.5 rem ;
2025-11-16 21:27:53 -05:00
font-size : 1.5 rem ;
2025-11-16 21:40:45 -05:00
font-weight : 600 ;
2025-11-16 21:27:53 -05:00
}
. features ul {
list-style : none ;
margin-left : 0 ;
}
. features li {
2025-11-16 21:40:45 -05:00
padding : 0.75 rem 0 ;
2025-11-16 21:27:53 -05:00
padding-left : 1.5 rem ;
position : relative ;
2025-11-16 21:40:45 -05:00
color : #DFE2EA ;
2025-11-16 21:27:53 -05:00
}
. features li : before {
2025-11-16 21:40:45 -05:00
content : "•" ;
2025-11-16 21:27:53 -05:00
position : absolute ;
left : 0 ;
2025-11-16 21:40:45 -05:00
color : #9ECAFF ;
font-weight : bold ;
2025-11-16 21:27:53 -05:00
}
2025-09-18 13:25:17 -04:00
. links {
display : flex ;
flex-wrap : wrap ;
gap : 1 rem ;
justify-content : center ;
margin : 2 rem 0 ;
}
2025-11-16 21:27:53 -05:00
2025-09-18 13:25:17 -04:00
. link-button {
display : inline-block ;
2025-11-16 21:40:45 -05:00
padding : 0.875 rem 1.75 rem ;
background : #33A1FF ;
color : #003258 ;
2025-09-18 13:25:17 -04:00
text-decoration : none ;
2025-11-16 21:40:45 -05:00
border-radius : 8 px ;
font-weight : 600 ;
transition : all 0.3 s ease ;
border : none ;
cursor : pointer ;
2025-09-18 13:25:17 -04:00
}
2025-11-16 21:27:53 -05:00
2025-09-18 13:25:17 -04:00
. link-button : hover {
2025-11-16 21:40:45 -05:00
background : #5BB3FF ;
transform : translateY ( -2 px );
box-shadow : 0 4 px 12 px rgba ( 51 , 161 , 255 , 0.3 );
2025-09-18 13:25:17 -04:00
}
2025-11-16 21:27:53 -05:00
2025-09-18 13:25:17 -04:00
. link-button . secondary {
2025-11-16 21:40:45 -05:00
background : transparent ;
color : #9ECAFF ;
border : 2 px solid #9ECAFF ;
2025-09-18 13:25:17 -04:00
}
2025-11-16 21:27:53 -05:00
2025-09-18 13:25:17 -04:00
. link-button . secondary : hover {
2025-11-16 21:40:45 -05:00
background : rgba ( 158 , 202 , 255 , 0.1 );
border-color : #5BB3FF ;
color : #5BB3FF ;
2025-09-18 13:25:17 -04:00
}
2025-11-16 21:27:53 -05:00
2025-09-18 13:25:17 -04:00
. footer {
text-align : center ;
2025-11-16 21:27:53 -05:00
padding : 2 rem ;
2025-11-16 21:40:45 -05:00
border-top : 1 px solid #404752 ;
2025-09-18 13:25:17 -04:00
margin-top : 2 rem ;
2025-11-16 21:27:53 -05:00
}
. footer p {
margin-bottom : 0.5 rem ;
2025-11-16 21:40:45 -05:00
color : #BFC7D4 ;
2025-11-16 21:27:53 -05:00
}
. footer a {
2025-11-16 21:40:45 -05:00
color : #9ECAFF ;
2025-11-16 21:27:53 -05:00
text-decoration : none ;
margin : 0 0.5 rem ;
2025-11-16 21:40:45 -05:00
transition : color 0.3 s ;
2025-11-16 21:27:53 -05:00
}
. footer a : hover {
2025-11-16 21:40:45 -05:00
color : #5BB3FF ;
2025-09-18 13:25:17 -04:00
}
</ style >
</ head >
< body >
< div class = "container" >
< div class = "header" >
2025-11-16 21:40:45 -05:00
< h1 > PSX2</ h1 >
2025-09-18 13:25:17 -04:00
< p > PlayStation 2 Emulator for Mobile</ p >
</ div >
< div class = "description" >
2025-11-16 21:40:45 -05:00
< p > PSX2 is a powerful PlayStation 2 emulator that brings your favorite PS2 games to mobile devices. Experience classic gaming with enhanced performance and modern convenience.</ p >
2025-11-16 21:27:53 -05:00
< p > Built on the legendary PCSX2 emulator and optimized for ARM64 Android devices, PSX2 delivers high compatibility and smooth gameplay.</ p >
</ div >
< div class = "features" >
< h2 > Key Features</ h2 >
< ul >
< li > High Compatibility - Play thousands of PS2 games</ li >
< li > Enhanced Graphics - Upscaling, texture filtering, and modern rendering</ li >
< li > Multiple Formats - ISO, CHD, CSO, ZSO, and compressed formats</ li >
< li > Touch Controls - Intuitive on-screen gamepad with customizable layout</ li >
< li > External Controllers - Full support for Bluetooth and USB gamepads</ li >
< li > Save States - Quick save and load functionality</ li >
< li > Game Covers - Automatic cover art downloading and display</ li >
< li > Per-Game Settings - Individual configuration for optimal performance</ li >
</ ul >
2025-09-18 13:25:17 -04:00
</ div >
< div class = "links" >
< a href = "https://github.com/izzy2lost/PSX2" class = "link-button" > View on GitHub</ a >
2025-11-16 21:27:53 -05:00
< a href = "https://play.google.com/store/apps/details?id=com.izzy2lost.psx2" class = "link-button" > Download on Play Store</ a >
2025-11-16 21:40:45 -05:00
< a href = "https://www.gnu.org/licenses/gpl-3.0.html" class = "link-button secondary" > License</ a >
2025-09-18 13:25:17 -04:00
< a href = "privacy-policy.html" class = "link-button secondary" > Privacy Policy</ a >
</ div >
< div class = "footer" >
< p > © 2025 PSX2. Licensed under GPL-3.0.</ p >
2025-11-16 21:27:53 -05:00
< p >
< a href = "https://github.com/izzy2lost/PSX2" > GitHub</ a > |
< a href = "mailto:izzynochill@gmail.com" > Contact</ a >
</ p >
< p style = "margin-top: 1rem; opacity: 0.7; font-size: 0.9rem;" > PlayStation and PlayStation 2 are trademarks of Sony Interactive Entertainment.</ p >
2025-09-18 13:25:17 -04:00
</ div >
</ div >
</ body >
</ html >