:root {
    --primary-gradient: linear-gradient(90deg, #ad7111, #d18c26, #f7a73a);
    --primary-accent: #d18c26;
    --text-dark: #000;
    --text-light: #fff;
    --error-color: #d81f9e;
    --success-color: #21fff8;
    --link-color: #d4179f;
    --border-error: #5b49c9;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Kanit', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.tra_header {
    background: var(--primary-gradient);
    padding: 1rem 0;
    position: relative;
    z-index: 1000;
}

.tra_header-container {
    max-width: 1480px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tra_header-left {
    display: flex;
    gap: 1rem;
}

.tra_header-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    color: var(--text-dark);
    background-color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tra_header-btn:hover {
    background-color: var(--text-light);
    transform: translateY(-2px);
}

.tra_header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.tra_header-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Kanit', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-light);
}

.tra_header-right {
    display: flex;
    align-items: center;
}

.tra_nav-list {
    display: flex;
    gap: 2rem;
}

.tra_nav-link {
    color: var(--text-light);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.tra_nav-link:hover {
    color: var(--text-dark);
}

.tra_burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.tra_burger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-light);
    border-radius: 3px;
    transition: var(--transition);
}

.tra_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tra_modal-content {
    background-color: var(--text-light);
    width: 50%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 8px;
    padding: 2rem;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.tra_modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.tra_modal-close:hover {
    transform: rotate(150deg);
    color: var(--primary-accent);
}

.tra_modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.tra_modal-header h2 {
    margin-top: 1rem;
    color: var(--primary-accent);
}

.tra_modal-logo {
    border-radius: 50%;
    object-fit: cover;
}

.tra_form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tra_form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tra_form-group label {
    font-weight: 500;
}

.tra_form-group input {
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: var(--transition);
}

.tra_form-group input:focus {
    outline: none;
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 2px rgba(209, 140, 38, 0.2);
}

.tra_form-group input.error {
    border-color: var(--border-error);
}

.tra_password-wrapper {
    position: relative;
}

.tra_toggle-password {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
    cursor: pointer;
}

.tra_error-message {
    color: var(--error-color);
    font-size: 0.875rem;
    min-height: 1.25rem;
}

.tra_checkbox-group {
    display: flex;
    flex-direction: column;
}

.tra_checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tra_checkbox-wrapper input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.tra_checkbox-wrapper input[type="checkbox"]:checked {
    background-color: var(--primary-accent);
    border-color: var(--primary-accent);
}

.tra_checkbox-wrapper input[type="checkbox"]:checked::after {
    content: '\f00c';
    font-family: 'Line Awesome Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-light);
}

.tra_checkbox-wrapper label {
    cursor: pointer;
}

.tra_checkbox-wrapper a {
    color: var(--link-color);
    text-decoration: underline;
}

.tra_form-actions {
    text-align: right;
}

.tra_form-actions a {
    color: var(--link-color);
    font-size: 0.875rem;
}

.tra_form-submit {
    padding: 0.75rem;
    background: var(--primary-gradient);
    color: var(--text-light);
    font-weight: 500;
    border-radius: 4px;
    transition: var(--transition);
}

.tra_form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tra_form-submit:disabled {
    background: #ddd;
    color: #777;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.tra_form-footer {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.875rem;
}

.tra_form-footer a {
    color: var(--link-color);
    font-weight: 500;
}

.tra_success-icon {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 4rem;
    color: var(--success-color);
}

.tra_success-icon i {
    animation: scaleIn 0.5s ease;
}

.tra_success-close {
    margin-top: 1.5rem;
    padding: 0.75rem 2rem;
    background: var(--primary-accent);
    color: var(--text-light);
    border-radius: 4px;
    transition: var(--transition);
}

.tra_success-close:hover {
    background: #b87715;
    transform: translateY(-2px);
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 1280px) {
    .tra_modal-content {
        width: 60%;
    }
}

@media (max-width: 1024px) {
    .tra_modal-content {
        width: 70%;
    }
    
    .tra_nav-list {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .tra_header-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        padding: 1rem;
    }
    
    .tra_header-left {
        order: 2;
    }
    
    .tra_header-center {
        position: static;
        order: 1;
        transform: none;
        width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .tra_header-right {
        order: 3;
    }
    
    .tra_modal-content {
        width: 80%;
    }
    
    .tra_nav {
        display: none;
    }
    
    .tra_nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-gradient);
        padding: 1rem;
    }
    
    .tra_nav-list {
        flex-direction: column;
        gap: 1rem;
    }
    
    .tra_burger-menu {
        display: flex;
    }
    
    .tra_burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .tra_burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .tra_burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

@media (max-width: 480px) {
    .tra_modal-content {
        width: 90%;
        padding: 1.5rem;
    }
    
    .tra_header-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 320px) {
    .tra_modal-content {
        width: 95%;
        padding: 1rem;
    }
    
    .tra_header-logo {
        font-size: 1.25rem;
    }
    
    .tra_header-btn {
        padding: 0.5rem;
        font-size: 0.75rem;
    }
}

.tra-timer-section {
    width: 100%;
    padding: 80px 20px;
    background: var(--primary-gradient);
    color: var(--text-light);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.tra-timer-container {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tra-timer-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    animation: skewScaleRotate 1s ease-out forwards;
}

.tra-timer-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    animation: fadeInUp 1.2s ease-out forwards;
}

.tra-timer-display {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tra-timer-unit {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.tra-timer-unit:hover {
    transform: scale(1.1);
}

.tra-timer-value {
    font-size: 3rem;
    font-weight: 700;
    display: block;
}

.tra-timer-label {
    font-size: 1rem;
    opacity: 0.8;
}

.tra-timer-button {
    background: var(--success-color);
    color: var(--text-dark);
    font-size: 1.1rem;
    padding: 15px 30px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.tra-timer-button:hover {
    background: #f7a73a;
    transform: rotate(2deg) scale(1.05);
}

@keyframes skewScaleRotate {
    0% {
        transform: skewX(-10deg) scale(0.9);
        opacity: 0;
    }
    100% {
        transform: skewX(0deg) scale(1);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 1280px) {
    .tra-timer-title {
        font-size: 2.2rem;
    }

    .tra-timer-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 1024px) {
    .tra-timer-title {
        font-size: 2rem;
    }

    .tra-timer-description {
        font-size: 1rem;
    }

    .tra-timer-display {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .tra-timer-title {
        font-size: 1.8rem;
    }

    .tra-timer-description {
        font-size: 0.95rem;
    }

    .tra-timer-display {
        flex-direction: column;
        align-items: center;
    }

    .tra-timer-unit {
        min-width: 150px;
    }
}

@media (max-width: 480px) {
    .tra-timer-title {
        font-size: 1.5rem;
    }

    .tra-timer-description {
        font-size: 0.9rem;
    }

    .tra-timer-unit {
        min-width: 130px;
        padding: 15px 20px;
    }

    .tra-timer-value {
        font-size: 2.5rem;
    }
}

@media (max-width: 320px) {
    .tra-timer-title {
        font-size: 1.3rem;
    }

    .tra-timer-description {
        font-size: 0.85rem;
    }

    .tra-timer-unit {
        min-width: 120px;
        padding: 10px 15px;
    }

    .tra-timer-value {
        font-size: 2rem;
    }
}

.tra-superjackpot-section {
    position: relative;
    width: 100%;
    min-height: 80vh;
    background: url('../tra-image/tra-image-background-1.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tra-superjackpot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.tra-superjackpot-container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    max-width: 1320px;
    margin: 0 auto;
    animation: fadeInUpRotate 1.5s ease-out forwards;
}

.tra-superjackpot-title {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px #000;
    animation: scaleIn 1s ease-out forwards;
}

.tra-superjackpot-description {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
    text-shadow: 1px 1px 4px #000;
    animation: fadeIn 1.2s ease-out forwards;
}

.tra-superjackpot-value {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--primary-accent);
    color: var(--text-light);
    font-size: 2.5rem;
    font-weight: 700;
    padding: 20px 40px;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    animation: pulseGlow 2s infinite alternate;
}

@keyframes fadeInUpRotate {
    0% {
        transform: translateY(40px) rotate(-2deg);
        opacity: 0;
    }
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
}

@keyframes scaleIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(209, 140, 38, 0.6);
    }
    100% {
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(209, 140, 38, 0.9);
    }
}

@media (max-width: 1280px) {
    .tra-superjackpot-title {
        font-size: 2.8rem;
    }

    .tra-superjackpot-description {
        font-size: 1.1rem;
    }

    .tra-superjackpot-value {
        font-size: 2.2rem;
        padding: 18px 35px;
    }
}

@media (max-width: 1024px) {
    .tra-superjackpot-title {
        font-size: 2.5rem;
    }

    .tra-superjackpot-description {
        font-size: 1rem;
    }

    .tra-superjackpot-value {
        font-size: 2rem;
        padding: 16px 30px;
    }
}

@media (max-width: 768px) {
    .tra-superjackpot-title {
        font-size: 2.2rem;
    }

    .tra-superjackpot-description {
        font-size: 0.95rem;
    }

    .tra-superjackpot-value {
        font-size: 1.8rem;
        padding: 14px 25px;
    }
}

@media (max-width: 480px) {
    .tra-superjackpot-title {
        font-size: 1.8rem;
    }

    .tra-superjackpot-description {
        font-size: 0.85rem;
    }

    .tra-superjackpot-value {
        font-size: 1.5rem;
        padding: 12px 20px;
        gap: 10px;
    }
}

@media (max-width: 320px) {
    .tra-superjackpot-title {
        font-size: 1.5rem;
    }

    .tra-superjackpot-description {
        font-size: 0.8rem;
    }

    .tra-superjackpot-value {
        font-size: 1.3rem;
        padding: 10px 15px;
    }
}

.tra-startnow-section {
    width: 100%;
    padding: 100px 20px;
    background: var(--primary-gradient);
    color: var(--text-light);
    display: flex;
    justify-content: center;
    align-items: center;
}

.tra-startnow-container {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
}

.tra-startnow-left {
    flex: 1 1 45%;
    min-width: 300px;
    animation: skewInLeft 1s ease-out forwards;
}

.tra-startnow-title {
    font-size: 3rem;
    line-height: 1.2;
    text-shadow: 2px 2px 6px #000;
}

.tra-startnow-right {
    flex: 1 1 45%;
    min-width: 300px;
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    animation: scaleFadeIn 1.2s ease-out forwards;
}

.tra-startnow-subtitle {
    font-size: 1.8rem;
    margin-bottom: 15px;
    opacity: 0.95;
}

.tra-startnow-text {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.tra-startnow-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.tra-startnow-howtoplay,
.tra_startnow_login {
    background: var(--success-color);
    color: var(--text-dark);
    font-size: 1rem;
    padding: 12px 25px;
    border-radius: 30px;
    transition: var(--transition);
}

.tra-startnow-howtoplay:hover,
.tra_startnow_login:hover {
    transform: rotate(2deg) scale(1.05);
    background: #f7a73a;
}

@keyframes skewInLeft {
    0% {
        transform: skewX(-10deg) translateX(-30px);
        opacity: 0;
    }
    100% {
        transform: skewX(0deg) translateX(0);
        opacity: 1;
    }
}

@keyframes scaleFadeIn {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 1280px) {
    .tra-startnow-title {
        font-size: 2.8rem;
    }

    .tra-startnow-subtitle {
        font-size: 1.6rem;
    }
}

@media (max-width: 1024px) {
    .tra-startnow-title {
        font-size: 2.5rem;
    }

    .tra-startnow-subtitle {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .tra-startnow-container {
        flex-direction: column;
        text-align: center;
    }

    .tra-startnow-left,
    .tra-startnow-right {
        flex: 1 1 100%;
    }

    .tra-startnow-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .tra-startnow-title {
        font-size: 2rem;
    }

    .tra-startnow-subtitle {
        font-size: 1.3rem;
    }

    .tra-startnow-text {
        font-size: 1rem;
    }

    .tra-startnow-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 320px) {
    .tra-startnow-title {
        font-size: 1.8rem;
    }

    .tra-startnow-subtitle {
        font-size: 1.1rem;
    }

    .tra-startnow-text {
        font-size: 0.9rem;
    }

    .tra-startnow-buttons button {
        width: 100%;
    }
}

.tra-about-section {
    width: 100%;
    padding: 100px 20px;
    background-color: #1a1a1a;
    color: var(--text-light);
    text-align: center;
}

.tra-about-container {
    max-width: 1320px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out forwards;
}

.tra-about-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    animation: scaleIn 1s ease-out forwards;
}

.tra-about-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    opacity: 0.85;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1.2s ease-out forwards;
}

.tra-about-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.tra-about-card {
    background: linear-gradient(135deg, #2d2d2d, #1f1f1f);
    border-radius: 15px;
    padding: 30px;
    flex: 1 1 calc(25% - 40px);
    min-width: 260px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.tra-about-card:hover {
    transform: translateY(-10px) scale(1.03);
}

.tra-about-icon {
    font-size: 2.5rem;
    color: var(--primary-accent);
    margin-bottom: 15px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.tra-about-card:hover .tra-about-icon {
    transform: rotate(15deg);
}

.tra-about-card-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.tra-about-card-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    opacity: 0.8;
}

.tra-about-login-btn {
    margin-top: 40px;
    background: var(--success-color);
    color: var(--text-dark);
    font-size: 1.1rem;
    padding: 15px 35px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.tra-about-login-btn:hover {
    transform: rotate(1deg) scale(1.05);
    background: #f7a73a;
}

@keyframes fadeInUp {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes scaleIn {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@media (max-width: 1280px) {
    .tra-about-title {
        font-size: 2.5rem;
    }

    .tra-about-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 1024px) {
    .tra-about-title {
        font-size: 2.2rem;
    }

    .tra-about-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .tra-about-cards {
        flex-direction: column;
        align-items: center;
    }

    .tra-about-card {
        flex: 1 1 80%;
    }
}

@media (max-width: 480px) {
    .tra-about-title {
        font-size: 2rem;
    }

    .tra-about-subtitle {
        font-size: 0.95rem;
    }

    .tra-about-card {
        flex: 1 1 100%;
    }
}

@media (max-width: 320px) {
    .tra-about-title {
        font-size: 1.7rem;
    }

    .tra-about-subtitle {
        font-size: 0.85rem;
    }

    .tra-about-card-desc {
        font-size: 0.85rem;
    }
}

.tra-process-start-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: url('../tra-image/tra-image-background-2.jpg') no-repeat center center / cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    overflow: hidden;
}

.tra-process-start-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.tra-process-start-container {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-light);
    animation: fadeInUpRotate 1.5s ease-out forwards;
}

.tra-process-start-title {
    font-size: 2.6rem;
    margin-bottom: 40px;
    text-shadow: 2px 2px 6px #000;
    animation: scaleIn 1s ease-out forwards;
}

.tra-process-start-subtitle {
    font-size: 1.4rem;
    margin-top: 15px;
    margin-bottom: 10px;
}

.tra-process-start-desc {
    font-size: 0.95rem;
    opacity: 0.9;
}

.tra-process-start-block {
    margin-bottom: 80px;
}

.tra-process-start-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.tra-process-start-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    flex: 1 1 calc(25% - 40px);
    min-width: 260px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.tra-process-start-card:hover {
    transform: translateY(-10px) scale(1.03);
}

.tra-process-start-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 2px solid var(--primary-accent);
}

.tra-process-start-icon {
    font-size: 2.5rem;
    color: var(--primary-accent);
    margin-bottom: 15px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.tra-process-start-card:hover .tra-process-start-icon {
    transform: rotate(15deg);
}

.tra-process-start-list {
    text-align: left;
    margin-bottom: 10px;
    font-size: 0.9rem;
    opacity: 0.85;
}

.tra-process-start-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
}

.tra-process-start-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-accent);
}

.tra-process-start-cta {
    background: var(--primary-accent);
    color: var(--text-light);
    font-size: 1.2rem;
    padding: 18px 40px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    margin-top: 60px;
}

.tra-process-start-cta:hover {
    transform: rotate(1deg) scale(1.05);
    background: #f7a73a;
}

@keyframes fadeInUpRotate {
    0% {
        transform: translateY(40px) rotate(-2deg);
        opacity: 0;
    }
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
}

@keyframes scaleIn {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 1280px) {
    .tra-process-start-title {
        font-size: 2.4rem;
    }

    .tra-process-start-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 1024px) {
    .tra-process-start-title {
        font-size: 2.2rem;
    }

    .tra-process-start-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .tra-process-start-card {
        flex: 1 1 45%;
    }
}

@media (max-width: 480px) {
    .tra-process-start-title {
        font-size: 1.8rem;
    }

    .tra-process-start-subtitle {
        font-size: 1.1rem;
    }

    .tra-process-start-card {
        flex: 1 1 100%;
    }
}

@media (max-width: 320px) {
    .tra-process-start-title {
        font-size: 1.6rem;
    }

    .tra-process-start-subtitle {
        font-size: 1rem;
    }

    .tra-process-start-list li {
        font-size: 0.85rem;
    }
}

.tra-reviews-section {
    width: 100%;
    padding: 100px 20px;
    background: var(--primary-gradient);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tra-reviews-container {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
}

.tra-reviews-content {
    flex: 1 1 45%;
    min-width: 300px;
    text-align: left;
    animation: fadeInLeft 1s ease-out forwards;
}

.tra-reviews-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.tra-reviews-desc {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.tra-reviews-login-btn {
    background: var(--success-color);
    color: var(--text-dark);
    font-size: 1.1rem;
    padding: 14px 30px;
    border-radius: 50px;
    transition: var(--transition);
}

.tra-reviews-login-btn:hover {
    transform: rotate(1deg) scale(1.05);
    background: #f7a73a;
}

.tra-reviews-carousel-wrapper {
    flex: 1 1 50%;
    min-width: 300px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 900px) {
    .tra-reviews-carousel-wrapper {
        display: none;
    }
}

.tra-reviews-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
    flex-wrap: nowrap;
}

.tra-reviews-card {
    flex: 0 0 calc(50% - 10px);
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.tra-reviews-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.tra-reviews-card-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.tra-reviews-card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 10px;
}

.tra-reviews-card-text {
    font-size: 0.95rem;
    margin-bottom: 15px;
    flex-grow: 1;
}

.tra-reviews-card-prize {
    font-size: 1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tra-reviews-card-img {
    width: 100%;
    height: 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
}

.tra-reviews-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.tra-reviews-prev,
.tra-reviews-next {
    background: var(--primary-accent);
    color: var(--text-light);
    font-size: 1.2rem;
    padding: 10px 15px;
    border-radius: 50%;
    transition: var(--transition);
}

.tra-reviews-prev:hover,
.tra-reviews-next:hover {
    background: #f7a73a;
    transform: rotate(2deg) scale(1.1);
}

@keyframes fadeInLeft {
    0% {
        transform: translateX(-30px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 1024px) {
    .tra-reviews-carousel {
        gap: 15px;
    }

    .tra-reviews-card {
        flex: 0 0 calc(50% - 7.5px);
    }
}

@media (max-width: 768px) {
    .tra-reviews-container {
        flex-direction: column;
        text-align: center;
    }

    .tra-reviews-content {
        text-align: center;
        flex: 1 1 100%;
    }

    .tra-reviews-carousel {
        flex-wrap: nowrap;
        overflow: hidden;
    }

    .tra-reviews-card {
        flex: 0 0 90vw;
        max-width: 90vw;
    }

    .tra-reviews-carousel-wrapper {
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .tra-reviews-container {
        align-content: center;
    }

    .tra-reviews-title {
        font-size: 1.8rem;
    }

    .tra-reviews-desc {
      width: 300px;
      text-align: center;
    }

    .tra-reviews-card {
        flex: 0 0 95vw;
        max-width: 95vw;
    }

    .tra-reviews-card-title {
        font-size: 1.4rem;
    }

    .tra-reviews-card-meta {
        font-size: 0.8rem;
    }

    .tra-reviews-card-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 320px) {
    .tra-reviews-title {
        font-size: 1.4rem;
    }

    .tra-reviews-desc {
      width: 290px;
      text-align: center;
    }

    .tra-reviews-card {
        flex: 0 0 100vw;
        max-width: 100vw;
        padding: 20px;
    }

    .tra-reviews-card-title {
        font-size: 1.3rem;
    }

    .tra-reviews-card-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .tra-reviews-card-prize {
        font-size: 0.9rem;
    }
}

.tra-responsible-section {
    width: 100%;
    padding: 100px 20px;
    background: var(--primary-gradient);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tra-responsible-container {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
}

.tra-responsible-content {
    flex: 1 1 50%;
    width: 300px;
    text-align: left;
    background-color: var(--border-error);
    padding: 8px 14px;
    border-radius: 11px;
    animation: fadeInLeft 1s ease-out forwards;
}

.tra-responsible-title {
    font-size: 2.6rem;
    margin-bottom: 20px;
}

.tra-responsible-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.tra-responsible-link {
    color: var(--text-dark);
    font-weight: 600;
    position: relative;
}

.tra-responsible-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    margin-top: 15px;
    background: var(--text-dark);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tra-responsible-link:hover::after {
    color: var(--text-dark);
    transform: scaleX(1);
}

.tra-responsible-logos {
    flex: 1 1 40%;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    text-align: center;
}

.tra-responsible-logo {
    display: block;
    border: none;
    transition: transform 0.3s ease;
}

.tra-responsible-logo:hover {
    transform: scale(1.05) rotate(1deg);
}

.tra-responsible-logo-age {
    margin-top: -40px;
    margin-bottom: -40px;
    z-index: 1;
    transform: rotate(10deg);
    filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.3));
}

@keyframes fadeInLeft {
    0% {
        transform: translateX(-30px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 1024px) {
    .tra-responsible-container {
        flex-direction: column;
        text-align: center;
    }

    .tra-responsible-content {
        flex: 1 1 100%;
    }

    .tra-responsible-logos {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .tra-responsible-title {
        font-size: 2.2rem;
    }

    .tra-responsible-desc {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .tra-responsible-title {
        font-size: 2rem;
    }

    .tra-responsible-desc {
        font-size: 0.95rem;
    }

    .tra-responsible-logo {
        width: 100px;
        height: auto;
    }

    .tra-responsible-logo-age {
        width: 50px;
        height: 50px;
        margin-top: -30px;
        margin-bottom: -30px;
    }
}

@media (max-width: 320px) {
    .tra-responsible-title {
        font-size: 1.8rem;
    }

    .tra-responsible-desc {
        font-size: 0.85rem;
    }

    .tra-responsible-logo {
        width: 90px;
        height: auto;
    }

    .tra-responsible-logo-age {
        width: 40px;
        height: 40px;
        margin-top: -25px;
        margin-bottom: -25px;
    }
}

.tra-footer-section {
    width: 100%;
}

.tra-responsible-block {
    background-color: #1a1a1a;
    padding: 60px 20px;
    color: var(--text-light);
    text-align: center;
    position: relative;
}

.tra-responsible-content {
    max-width: 1320px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out forwards;
}

.tra-responsible-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.tra-responsible-icon {
    font-size: 1.5rem;
    color: var(--primary-accent);
    transition: transform 0.3s ease;
}

.tra-responsible-icon:hover {
    transform: rotate(10deg) scale(1.2);
}

.tra-responsible-desc {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 900px;
    margin: 0 auto;
}

.tra-responsible-link {
    color: var(--link-color);
    font-weight: 500;
    position: relative;
}

.tra-responsible-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: var(--link-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tra-responsible-link:hover::after {
    transform: scaleX(1);
}

.tra-responsible-block::after {
    content: "";
    display: block;
    width: 100%;
    height: 5px;
    background: var(--primary-accent);
    animation: pulseLine 2s infinite alternate;
}

@keyframes pulseLine {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

.tra-main-footer {
    background-color: #111;
    color: var(--text-light);
    padding: 40px 20px;
    font-size: 0.95rem;
}

.tra-footer-container {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.tra-footer-links {
    width: 100%;
    text-align: center;
}

.tra-footer-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.tra-footer-link {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.tra-footer-link:hover {
    color: var(--primary-accent);
}

.tra-footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.tra-footer-logo {
    filter: brightness(0.9);
    transition: transform 0.3s ease;
}

.tra-footer-logo:hover {
    transform: scale(1.05);
}

.tra-footer-copyright {
    font-size: 0.9rem;
    opacity: 0.7;
}

@keyframes fadeInUp {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 1024px) {
    .tra-responsible-title {
        font-size: 2rem;
    }

    .tra-footer-list {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .tra-responsible-title {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 10px;
    }

    .tra-footer-list {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .tra-responsible-title {
        font-size: 1.6rem;
    }

    .tra-responsible-desc {
        font-size: 0.9rem;
    }

    .tra-footer-copyright {
        font-size: 0.85rem;
    }
}

@media (max-width: 320px) {
    .tra-responsible-content {
      width: 225px;
    }
    .tra-responsible-title {
        font-size: 1.4rem;
    }

    .tra-responsible-desc {
        font-size: 0.8rem;
    }
}

.tra_age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

.tra_age-modal.active {
    visibility: visible;
    opacity: 1;
}

.tra_age-modal-overlay {
    max-width: 500px;
    width: 90%;
    background: #1a1a1a;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    position: relative;
    animation: fadeInUp 1s ease-out forwards;
}

.tra_age-modal-title {
    font-family: 'Kanit', sans-serif;
    font-size: 2rem;
    margin-bottom: 15px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tra_age-modal-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 25px;
    opacity: 0.8;
}

.tra_age-modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.tra_age-modal-btn {
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
}

.tra_age-modal-yes {
    background: var(--success-color);
    color: var(--text-dark);
}

.tra_age-modal-yes:hover {
    background: #f7a73a;
    transform: scale(1.05);
}

.tra_age-modal-no {
    background: var(--error-color);
    color: var(--text-light);
}

.tra_age-modal-no:hover {
    transform: rotate(-2deg) scale(1.05);
}

.tra_cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1a1a1a;
    color: var(--text-light);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 9998;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

.tra_cookie-banner.active {
    visibility: visible;
    opacity: 1;
}

.tra_cookie-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    max-width: 1320px;
    margin: 0 auto;
}

.tra_cookie-icon {
    font-size: 1.5rem;
    color: var(--primary-accent);
}

.tra_cookie-text {
    font-size: 0.95rem;
    color: var(--text-light);
    flex: 1 1 auto;
    text-align: center;
}

.tra_cookie-link {
    color: var(--link-color);
    font-weight: 600;
    position: relative;
}

.tra_cookie-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: var(--link-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tra_cookie-link:hover::after {
    transform: scaleX(1);
}

.tra_cookie-btn {
    background: var(--primary-accent);
    color: var(--text-light);
    font-size: 0.95rem;
    padding: 10px 25px;
    border-radius: 30px;
    transition: var(--transition);
}

.tra_cookie-btn:hover {
    background: #f7a73a;
    transform: scale(1.05);
}

.tra_back-to-top {
    position: fixed;
    bottom: 160px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-accent);
    color: var(--text-light);
    font-size: 1.2rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9997;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.tra_back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tra_back-to-top:hover {
    background: #f7a73a;
    transform: translateY(-5px);
}

@keyframes fadeInUp {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .tra_cookie-content {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .tra_age-modal-buttons {
        flex-direction: column;
        width: 100%;
    }

    .tra_age-modal-btn {
        width: 100%;
    }
}

.trapage_contact-section {
    width: 100%;
    padding: 80px 20px;
    background-color: #1e1e1e;
    color: var(--text-light);
    text-align: center;
}

.trapage_container-main {
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out forwards;
}

.trapage_title {
    font-size: 2.6rem;
    margin-bottom: 20px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trapage_description {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.trapage_form-section {
    width: 100%;
    padding: 60px 20px;
    background-color: #141414;
    color: var(--text-light);
}

.trapage_container-form {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.trapage_form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.trapage_form-title {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: left;
}

.trapage_form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.trapage_input {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    background: #2d2d2d;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.trapage_input:focus {
    outline: none;
    box-shadow: 0 0 5px var(--primary-accent);
}

.trapage_textarea {
    resize: vertical;
    min-height: 100px;
}

.trapage_checkbox-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.trapage_checkbox-label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 0.95rem;
    user-select: none;
}

.trapage_checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.trapage_checkbox-checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #2d2d2d;
    border: 2px solid #555;
    border-radius: 4px;
}

.trapage_checkbox:checked ~ .trapage_checkbox-checkmark {
    background-color: var(--primary-accent);
}

.trapage_checkbox:checked ~ .trapage_checkbox-checkmark::after {
    content: "\f00c";
    font-family: "Line Awesome Free";
    font-size: 14px;
    position: absolute;
    top: 2px;
    left: 5px;
    color: var(--text-dark);
}

.trapage_error-message {
    color: var(--error-color);
    font-size: 0.85rem;
    margin-top: 3px;
    min-height: 18px;
    text-align: left;
}

.trapage_submit-btn {
    align-self: flex-start;
    background: var(--primary-accent);
    color: var(--text-light);
    font-size: 1rem;
    padding: 12px 30px;
    border-radius: 30px;
    cursor: not-allowed;
    opacity: 0.6;
    transition: var(--transition);
}

.trapage_submit-btn.active {
    cursor: pointer;
    opacity: 1;
    background: #f7a73a;
    transform: scale(1.03);
}

.trapage_submit-btn:hover.active {
    background: #ad7111;
    transform: scale(1.05) rotate(-1deg);
}

.trapage_success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

.trapage_success-modal.active {
    visibility: visible;
    opacity: 1;
}

.trapage_success-content {
    background: #1a1a1a;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    position: relative;
}

.trapage_success-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    color: var(--primary-accent);
    background: none;
    border: none;
    cursor: pointer;
}

.trapage_success-icon {
    font-size: 3rem;
    color: var(--success-color);
    margin-bottom: 15px;
}

.trapage_success-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.trapage_success-text {
    font-size: 1rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .trapage_form-title {
        font-size: 1.8rem;
    }

    .trapage_input {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .trapage_form {
        padding: 20px;
    }

    .trapage_submit-btn {
        width: 100%;
    }
}

.trapage_responsible-section {
    width: 100%;
    padding: 80px 20px;
    background-color: #1e1e1e;
    color: var(--text-light);
    text-align: center;
}

.trapage_container-main {
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out forwards;
}

.trapage_title {
    font-size: 2.6rem;
    margin-bottom: 20px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trapage_description {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.trapage_faq-section {
    width: 100%;
    padding: 60px 20px;
    background-color: #141414;
    color: var(--text-light);
}

.trapage_container-faq {
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out forwards;
}

.trapage_faq-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trapage_faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trapage_faq-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.trapage_faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    transition: background 0.3s ease;
}

.trapage_faq-question:hover {
    background: rgba(255, 255, 255, 0.07);
}

.trapage_faq-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.trapage_faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
    opacity: 0.9;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trapage_faq-card.open .trapage_faq-answer {
    max-height: 450px;
    padding: 15px 20px;
    transition: max-height 0.3s ease-in;
}

@media (max-width: 768px) {
    .trapage_faq-title {
        font-size: 1.8rem;
    }

    .trapage_faq-question {
        font-size: 1rem;
    }

    .trapage_faq-answer {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .trapage_faq-title {
        font-size: 1.6rem;
    }

    .trapage_faq-question {
        font-size: 0.95rem;
    }

    .trapage_faq-icon {
        font-size: 1rem;
    }
}

.trapage_responsible-section {
    width: 100%;
    padding: 80px 20px;
    background-color: #1e1e1e;
    color: var(--text-light);
    text-align: center;
}

.trapage_responsible-header {
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out forwards;
}

.trapage_responsible-title {
    font-size: 2.6rem;
    margin-bottom: 20px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trapage_responsible-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.trapage_responsible-content {
    width: 100%;
    padding: 60px 20px;
    background-color: #141414;
    color: var(--text-light);
}

.trapage_responsible-container {
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out forwards;
}

.trapage_responsible-subtitle {
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trapage_responsible-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.trapage_responsible-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    padding-left: 40px;
    position: relative;
    transition: transform 0.3s ease;
}

.trapage_responsible-item:hover {
    transform: skew(-1deg, 0deg) scale(1.02);
}

.trapage_responsible-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background: var(--primary-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.trapage_responsible-icon {
    font-size: 1.3rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .trapage_responsible-title {
        font-size: 2rem;
    }

    .trapage_responsible-subtitle {
        font-size: 1.8rem;
    }

    .trapage_responsible-item {
        font-size: 0.95rem;
        padding-left: 50px;
    }

    .trapage_responsible-item::before {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .trapage_responsible-title {
        font-size: 1.8rem;
    }

    .trapage_responsible-subtitle {
        font-size: 1.6rem;
    }

    .trapage_responsible-item {
        font-size: 0.9rem;
        padding-left: 50px;
    }

    .trapage_responsible-item::before {
        width: 26px;
        height: 26px;
    }
}

@keyframes fadeInUp {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.trapage_privacy-section {
    width: 100%;
    padding: 80px 20px;
    background-color: #1e1e1e;
    color: var(--text-light);
    text-align: center;
}

.trapage_privacy-header {
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out forwards;
}

.trapage_privacy-title {
    font-size: 2.6rem;
    margin-bottom: 20px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trapage_privacy-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.trapage_privacy-content {
    width: 100%;
    padding: 60px 20px;
    background-color: #141414;
    color: var(--text-light);
}

.trapage_privacy-container {
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out forwards;
}

.trapage_privacy-subtitle {
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trapage_privacy-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.trapage_privacy-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    padding-left: 40px;
    position: relative;
    transition: transform 0.3s ease;
}

.trapage_privacy-item:hover {
    transform: skew(-1deg, 0deg) scale(1.02);
}

.trapage_privacy-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background: var(--primary-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.trapage_privacy-icon {
    font-size: 1.3rem;
    color: var(--text-light);
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .trapage_privacy-title {
        font-size: 2rem;
    }

    .trapage_privacy-subtitle {
        font-size: 1.8rem;
    }

    .trapage_privacy-item {
        font-size: 0.95rem;
        padding-left: 50px;
    }

    .trapage_privacy-item::before {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .trapage_privacy-title {
        font-size: 1.8rem;
    }

    .trapage_privacy-subtitle {
        font-size: 1.6rem;
    }

    .trapage_privacy-item {
        font-size: 0.9rem;
        padding-left: 50px;
    }

    .trapage_privacy-item::before {
        width: 26px;
        height: 26px;
    }
}

@keyframes fadeInUp {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.trapage_cookie-policy-section {
    width: 100%;
    padding: 80px 20px;
    background-color: #1e1e1e;
    color: var(--text-light);
    text-align: center;
}

.trapage_cookie-header {
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out forwards;
}

.trapage_cookie-title {
    font-size: 2.6rem;
    margin-bottom: 20px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trapage_cookie-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.trapage_cookie-content-section {
    width: 100%;
    padding: 60px 20px;
    background-color: #141414;
    color: var(--text-light);
}

.trapage_cookie-container {
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out forwards;
}

.trapage_cookie-subtitle {
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trapage_cookie-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.trapage_cookie-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    padding-left: 40px;
    position: relative;
    transition: transform 0.3s ease;
}

.trapage_cookie-item:hover {
    transform: skew(-1deg, 0deg) scale(1.02);
}

.trapage_cookie-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background: var(--primary-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.trapage_cookie-icon {
    font-size: 1.3rem;
    color: var(--text-light);
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .trapage_cookie-title {
        font-size: 2rem;
    }

    .trapage_cookie-subtitle {
        font-size: 1.8rem;
    }

    .trapage_cookie-item {
        font-size: 0.95rem;
        padding-left: 50px;
    }

    .trapage_cookie-item::before {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .trapage_cookie-title {
        font-size: 1.8rem;
    }

    .trapage_cookie-subtitle {
        font-size: 1.6rem;
    }

    .trapage_cookie-item {
        font-size: 0.9rem;
        padding-left: 50px;
    }

    .trapage_cookie-item::before {
        width: 26px;
        height: 26px;
    }
}

@keyframes fadeInUp {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}