* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Arial", sans-serif;
}

.bowlby-one-sc-regular {
    font-family: "Bowlby One SC", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.carter-one-regular {
    font-family: "Carter One", system-ui;
    font-weight: 400;
    font-style: normal;
}

body {
    background: linear-gradient(180deg, #0b2a5b, #071a3a);
    padding: 20px;
    color: #ffffff;
}

/* HERO */

.hero {
    text-align: center;
    padding: 32px 16px;
}

.logo {
    width: 192px;
    margin-bottom: 8px;
}

.hero h1 {
    font-size: 36px;
    color: #ffcc33;
    margin-bottom: 8px;
}

.subtitle {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.btns-block {
    display: inline
}

.btn-body {
    display: inline-flex;
    min-width: 242px;
    margin: 8px;
    text-align: center;
    justify-content: center;
    background-color: black;
    border-style: solid;
    border-radius: 12px;
    border-color: white;
    border-width: 1px;
    padding: 12px;
    align-content: center;
    cursor: pointer
}

.btn-body:active {
    color: rgba(255, 255, 255, 0.42);
}

.btn-text-content {
    align-content: center;
    font-size: 28px;
    margin-right: 12px
}

.btn-text-top {
    font-size: 12px
}

.btn-text-bottom {

}

.btn-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
}



/* CAROUSEL */
.screenshots-carousel {
    max-width: 780px;
    margin: 0 auto;
    position: relative;
}

.carousel-container {
    overflow: hidden;
    border-radius: 12px;
    background: transparent;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease;
    padding: 10px 0;
}

.screenshot {
    flex: 0 0 auto;
    width: 180px;
    margin: 0 8px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    cursor: pointer;
    font-size: 20px;
    color: #333;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: #f8f8f8;
}

.carousel-btn.prev {
    left: -20px;
}

.carousel-btn.next {
    right: -20px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 15px;
}

.indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s;
}

.indicator.active {
    background: #666;
}

/* CONTENT */

.content {
    padding: 18px 0;
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
}

.content .content-header {
    font-size: 22px;
    margin: 24px 0 0;
    color: #ffcc33;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.95;
}

.email-ref {
    color: #ffcc33;
}

.feedback-form {
    background: white;
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 500px;
    margin: auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-title {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 28px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 12px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: #4a6ee0;
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
    font-family: inherit;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #4a6ee0;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background: #3a5ed0;
}

.submit-btn:active {
    transform: scale(0.98);
}

.success-message {
    background: #4CAF50;
    color: white;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    margin-top: 20px;
    display: none;
}

/* FOOTER */

.footer {
    text-align: center;
    padding: 20px 16px;
    font-size: 13px;
    opacity: 0.7;
}

