/*
Theme Name: Blank Affiliate Canvas
Author: OpenAI
Version: 1.0
Description: Blank fullscreen canvas theme for affiliate landing pages.
*/

html,body{
margin:0 !important;
padding:0 !important;
width:100%;
height:100%;
background:#000;
overflow-x:hidden;
font-family:Arial,sans-serif;
}

#wpadminbar{
position:fixed !important;
}

body *{
box-sizing:border-box;
}

.site,
.site-content,
.content-area,
.site-main{
margin:0 !important;
padding:0 !important;
width:100% !important;
max-width:100% !important;
}

img{
max-width:100%;
height:auto;
display:block;
}

/* Remove theme spacing */
.entry-content,
.post,
.page{
margin:0 !important;
padding:0 !important;
max-width:100% !important;
}

/* Responsive image helper */
.fullscreen-image{
width:100%;
min-height:100vh;
object-fit:contain;
display:block;
background:#000;
}

/* Desktop */
@media(min-width:769px){

.fullscreen-image{
object-fit:cover;
height:100vh;
}

}

/* Mobile */
@media(max-width:768px){

.fullscreen-image{
object-fit:contain;
height:auto;
min-height:100vh;
background:#fff;
}

}
