* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a, a:link, a:visited {
    color: #1a1a1a;
    text-decoration: none;
}

a:hover, a:active {
    color: #d4306a;
}

body {
    background-color: #faf9f7;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
}

.accent-bar {
    height: 5px;
    background-color: #d4306a;
}

header {
    padding: 4rem 1.5rem 3rem;
    text-align: center;
    max-width: 740px;
    margin: 0 auto;
}

header h1 {
    font-family: 'Anton', sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #1a1a1a;
    margin-bottom: 0.4rem;
    line-height: 1.1;
}

header h1 .small {
    font-size: 1.6rem;
}

header h1 .big {
    font-size: 3rem;
}

header h1 .biggest {
    font-size: 3.6rem;
}

header .candidate {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 0.5rem;
}

header .hook {
    font-size: 1.15rem;
    color: #333;
    max-width: 600px;
    margin: 1rem auto 0;
}

.skyline {
    width: 100%;
    max-width: 700px;
    height: auto;
    margin: 1.5rem auto 0;
    display: block;
}

section {
    max-width: 740px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
}

section h2 {
    font-family: 'Anton', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    display: inline-block;
    position: relative;
}

section h2::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 10px;
    background-color: #d4306a;
    clip-path: polygon(10px 100%, 0% 0%, 100% 0%, 100% 100%);
    z-index: -1;
    opacity: 0.85;
}

section .subtitle {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

section p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

section ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

section li {
    padding: 0.4rem 0 0.4rem 1.2rem;
    position: relative;
    font-size: 1rem;
}

section li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 6px;
    height: 6px;
    background-color: #d4306a;
    border-radius: 50%;
}

section li strong {
    color: #1a1a1a;
}

.listening {
    border-left: 3px solid #d4306a;
    padding-left: 1.2rem;
    margin: 2rem 0;
    color: #555;
    font-size: 0.95rem;
}

.share-link {
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.share-link a {
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #d4306a;
    transition: color 0.2s;
}

.share-link a:hover {
    color: #d4306a;
}

footer {
    border-top: 1px solid #e0e0e0;
    max-width: 740px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
    text-align: center;
}

footer .vote {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

footer .platform-note {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.polling-link {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.polling-link a {
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #d4306a;
    transition: color 0.2s;
}

.polling-link a:hover {
    color: #d4306a;
}

footer .contact a {
    color: #1a1a1a;
    text-decoration: none;
    margin: 0 0.75rem;
    transition: color 0.2s;
}

footer .contact a:hover {
    color: #d4306a;
}

/* Feedback page */

.container {
    max-width: 540px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.container h1 {
    font-family: 'Anton', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.15;
    margin-bottom: 0.5rem;
}

.intro {
    color: #555;
    margin-bottom: 2rem;
    font-size: 1rem;
}

label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #333;
}

input, select, textarea {
    width: 100%;
    padding: 0.6rem 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    background-color: #fff;
    color: #1a1a1a;
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    padding-right: 2.5rem;
}

textarea {
    min-height: 150px;
    resize: vertical;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #d4306a;
}

button {
    background-color: #d4306a;
    color: #fff;
    border: none;
    padding: 0.7rem 2rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #1a1a1a;
}

.thanks {
    display: none;
    padding: 2rem 0;
}

.thanks h2 {
    font-family: 'Anton', sans-serif;
    font-size: 1.6rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.thanks p {
    color: #555;
    margin-bottom: 1rem;
}

.thanks a {
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #d4306a;
}

.thanks a:hover {
    color: #d4306a;
}

.hp { position: absolute; left: -9999px; }

@media (max-width: 600px) {
    header h1 .small { font-size: 1.2rem; }
    header h1 .big { font-size: 2.2rem; }
    header h1 .biggest { font-size: 2.6rem; }
    header { padding: 3rem 1.5rem 2rem; }
    section h2 { font-size: 1.3rem; }
}
