html, body {
    width: 100%;
    font: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}

h1 {
    font-size: 2.0em !important;
    padding-top: 10px;
    letter-spacing: 5px;
}

h1, h2, h3, h4 {
    font-weight: 600;
}

/*Header*/

.blue {
    color: white;
    background: rgba(45,62,80,1);
    background: -moz-linear-gradient(left, rgba(45,62,80,1) 0%, rgba(16,79,143,1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(45,62,80,1)), color-stop(100%, rgba(16,79,143,1)));
    background: -webkit-linear-gradient(left, rgba(45,62,80,1) 0%, rgba(16,79,143,1) 100%);
    background: -o-linear-gradient(left, rgba(45,62,80,1) 0%, rgba(16,79,143,1) 100%);
    background: -ms-linear-gradient(left, rgba(45,62,80,1) 0%, rgba(16,79,143,1) 100%);
    background: linear-gradient(to right, rgba(45,62,80,1) 0%, rgba(16,79,143,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2d3e50', endColorstr='#104f8f', GradientType=1 );
}

    .blue a {
        opacity: .7;
    }

        .blue a:hover {
            opacity: 1;
            color: white;
            text-decoration: none;
            display: inline;
            padding-bottom: 3px;
            border-bottom: solid 2px white;
        }

    .blue .project-tagline {
        font-style: italic !important;
        margin-bottom: 0;
        font-weight: normal;
        color: white;
        opacity: 0.8;
        text-align: center;
    }

        .blue .project-tagline a {
            color: white;
        }



nav ul {
    color: white;
    padding: 10px;
    margin-right: 10px;
    color: white;
    text-align: center;
}

nav li {
    color: white;
    display: inline-block;
    padding-bottom: 5px;
    padding-top: 5px;
}

    nav li a {
        padding: 10px 15px;
        color: white;
    }



/*Content*/


.left-image {
    float: left;
    margin: 10px;
    padding: 10px;
    padding-right: 25px;
}

.right-image {
    float: right;
    margin: 10px;
    padding: 10px;
    padding-left: 25px;
}

.vcenter {
    display: inline-block;
    vertical-align: middle;
    float: none;
}

.center {
    text-align: center;
    margin: 5px;
    padding: 5px;
}


hr.small {
    width: 90%;
    max-width: 600px;
}


p {
    line-height: 1.6;
    margin: 5px;
}

.img-center img {
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 15px;
    padding-top: 5px!important;
}


.super-grid .row {
    padding-top: 2px !important;
    padding-bottom: 15px !important;
}

.pricing-table, .col-md-4 {
    height: 100%;
}




footer {
    color: white;
    background: rgba(45,62,80,1);
    background: -moz-linear-gradient(left, rgba(45,62,80,1) 0%, rgba(16,79,143,1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(45,62,80,1)), color-stop(100%, rgba(16,79,143,1)));
    background: -webkit-linear-gradient(left, rgba(45,62,80,1) 0%, rgba(16,79,143,1) 100%);
    background: -o-linear-gradient(left, rgba(45,62,80,1) 0%, rgba(16,79,143,1) 100%);
    background: -ms-linear-gradient(left, rgba(45,62,80,1) 0%, rgba(16,79,143,1) 100%);
    background: linear-gradient(to right, rgba(45,62,80,1) 0%, rgba(16,79,143,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2d3e50', endColorstr='#104f8f', GradientType=1 );
}

footer a {
    border-color: transparent !important;
}

footer li {
    padding-right: 2px !important;
    padding-left: 2px !important;
}

.container.super-grid {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.super-grid p {
}

/* Home page */
.home-page {
    overflow-x: hidden;
}

.home-lead-section {
    padding-top: 1.25rem;
}

.section-title--flush-top {
    margin-top: 0;
}

/* Featured Sections */
.addictive-clicks-section {
    margin: 0;
    padding: 0;
}

.games-list {
    display: flex;
    flex-direction: row;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.game-row {
    flex: 0 1 calc(33.333% - 10px);
    min-width: 0;
    max-width: calc(33.333% - 10px);
    padding: 10px 0;
    transition: all 0.3s ease;
}

@media (max-width: 767px) {
    .game-row {
        flex: 0 1 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .game-row {
        flex: 1 1 100%;
        max-width: 100%;
    }
}




.game-banner-link {
    position: relative;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
}

.game-status-banner {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: 5px 11px;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #fff;
    border-radius: 0 0 0 7px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
    pointer-events: none;
}

.game-status-banner--release {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
}

.game-status-banner--beta {
    background: linear-gradient(135deg, #e65100 0%, #f57c00 100%);
}

.game-status-banner--closed-alpha {
    background: linear-gradient(135deg, #4a148c 0%, #6a1b9a 100%);
}

.game-status-banner--example {
    background: linear-gradient(135deg, #01579b 0%, #0277bd 100%);
}

.game-banner-link:active {
    transform: scale(0.98);
}

.game-banner-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}





.featured-game-section {
    margin: 40px 0;
    padding: 30px 0;
}

.featured-game-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.featured-game-image {
    text-align: center;
    margin-bottom: 20px;
}

.featured-game-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.featured-game-description {
    font-size: 1.1em;
    line-height: 1.6;
    margin: 20px 0;
}

/* Legacy “featured clients” row — renamed for clarity */
.home-trusted-by-section {
    margin: 0;
    padding: 0 0 2rem;
}

.trusted-by-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.trusted-by-row > div {
    flex: 0 1 calc(33.333% - 15px);
    min-width: 0;
    max-width: calc(33.333% - 15px);
}

.clients-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #666;
    font-size: 1.05em;
    line-height: 1.6;
}

.featured-apps-section {
    margin: 40px 0;
    padding: 20px 0;
}

.client-logo {
    text-align: center;
    padding: 20px 15px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    transform-origin: center center;
}

.client-logo:hover {
    transform: scale(1.1);
}

.client-logo a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    width: 100%;
}

.client-logo img {
    max-width: 120px;
    max-height: 80px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    margin-bottom: 10px;
}

.client-logo:hover img {
    opacity: 1;
}

.client-name {
    margin: 12px 0 0;
    font-size: 1em;
    color: #444;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    transition: color 0.3s ease, transform 0.3s ease;
}

.client-logo:hover .client-name {
    color: #222;
    transform: translateY(-2px);
}

.section-title {
    text-align: center;
    margin: 15px 0 10px;
    padding: 5px 0;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    margin: 25px 0 20px;
    font-weight: 500;
    color: #666;
    font-size: 1.3em;
}

.blog-section {
    margin: 0;
    padding: 0;
}

.autoscale {font-size: 16px; font-size: 4vw;}

/* Blog */

article p
{
    line-height: 1.5;
    margin: 30px 0;
}

article p a
{
    text-decoration: underline;
}

article h1,
article h2,
article h3,
article h4,
article h5,
article h6
{
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 800;
}

article a
{
    color: #404040;
}

article a:hover,
article a:focus
{
    color: #0085a1;
}

article a img:hover,
article a img:focus
{
    cursor: zoom-in;
}

article blockquote
{
    color: #808080;
    font-style: italic;
}

article hr.small
{
    max-width: 100px;
    margin: 15px auto;
    border-width: 4px;
    border-color: white;
}

@media (max-width: @screen-md)
{
    h2{
        font-size: 2.0em;
    }
    body
    {
        font-size: 20px;
        line-height : 1.5;
    }
}

@media (max-width: @screen-sm)
{
    h2
    {
        font-size: 1.5em;
    }
    body
    {
        font-size: 25px;
        line-height: 1.25;
    }
}
.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}

    .flex > [class*='col-'] {
        display: flex;
        flex-direction: column;
    }
    .flex > a {
        display: inline-block;
        vertical-align: middle;
        float: none;
    }

.pricing-table {
    display: flex;
    flex-direction :column;
    justify-content : space-between;
   
}

    .pricing-table img {
        max-width: 156px;
    }

/* HoneyHex post: tall Phase 2 GIF stays visible beside long text */
@media (min-width: 768px) {
    article.honeyhex-post .honeyhex-phase2-gif {
        position: sticky;
        top: 0.75rem;
    }
}

/* HoneyHex: flex columns must shrink so img-fluid can scale on narrow viewports */
article.honeyhex-post .row > [class*="col-"] {
    min-width: 0;
}

article.honeyhex-post figure.figure {
    max-width: 100%;
}

article.honeyhex-post figure.figure img {
    max-width: 100%;
    height: auto;
}