/*
Theme Name: Simple Fullscreen Theme
Author: ChatGPT
Version: 1.0
*/

html,body{
margin:0;
padding:0;
width:100%;
height:100%;
}

body{
background:#000;
font-family:Arial,sans-serif;
}

.fullscreen-wrapper{
position:fixed;
top:0;
left:0;
width:100%;
height:100vh;
background:url('background.jpg') center center/cover no-repeat;
display:flex;
justify-content:center;
align-items:center;
}

.popup-box{
background:#fff;
padding:30px;
border-radius:20px;
max-width:500px;
width:85%;
text-align:center;
box-shadow:0 10px 40px rgba(0,0,0,0.4);
}

.popup-box h2{
font-size:32px;
margin-bottom:15px;
}

.popup-box p{
font-size:18px;
line-height:1.6;
margin-bottom:25px;
}

.popup-box a{
display:block;
background:#000;
color:#fff;
padding:18px;
border-radius:12px;
font-size:18px;
text-decoration:none;
font-weight:bold;
}

@media(max-width:768px){

.popup-box{
width:90%;
padding:22px;
}

.popup-box h2{
font-size:26px;
}

.popup-box p{
font-size:16px;
}

.popup-box a{
font-size:16px;
padding:16px;
}

}
