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

body {
    font-family: Arial, sans-serif;
}

.header {
    background-color: #dc2626; /* Red background */
    width: 100%;
    padding: 15px 20px;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-icon {
    height: 60px;
    object-fit: contain;
    display: block;
}

.logo-text {
    color: white;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Navigation Items */
.nav-items {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
    justify-content: center;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 4px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s;
}

.nav-item:hover {
    opacity: 0.8;
}

.nav-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
}

.nav-text {
    white-space: nowrap;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-login {
    background-color: white;
    color: #1e3a8a; /* Dark blue text */
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-login:hover {
    opacity: 0.9;
}

.btn-register {
    background-color: #84cc16; /* Lime green */
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-register:hover {
    opacity: 0.9;
}

/* Hero Section */
.hero-section {
    background-color: #2d2d2d; /* Dark grey background */
    width: 100%;
    padding: 60px 20px;
    min-height: 600px;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-heading {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

.hero-text {
    font-size: 18px;
    line-height: 1.6;
    color: white;
}

.hero-btn {
    background-color: white;
    color: black;
    border: none;
    padding: 15px 40px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.3s;
    width: fit-content;
    margin: 10px 0;
}

.hero-btn:hover {
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Contents Section */
.contents-section {
    padding: 60px 20px;
    background-color: #2d2d2d;
}

.contents-heading {
    text-align: center;
    color: white;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
}

.contents-buttons {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.content-btn {
    background-color: #2d2d2d;
    color: white;
    border: 2px solid #dc2626;
    border-radius: 12px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.content-btn:hover {
    background-color: #dc2626;
    color: white;
}

/* What Section */
.what-section {
    background-color: #2d2d2d;
    width: 100%;
    padding: 60px 20px;
}

.what-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.what-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.what-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.what-content {
    flex: 1;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.what-heading {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 5px;
}

.what-text {
    font-size: 18px;
    line-height: 1.6;
    color: white;
    margin: 0;
}

.what-subheading {
    font-size: 22px;
    font-weight: 600;
    color: white;
    margin: 10px 0 8px 0;
}

.what-points {
    margin: 8px 0;
    padding-left: 25px;
    color: white;
}

.what-point {
    font-size: 18px;
    line-height: 1.8;
    color: white;
    margin-bottom: 10px;
}

.what-point strong {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.what-points li::marker {
    color: white;
    font-weight: bold;
}

/* Info Table Section */
.info-table-section {
    background-color: #2d2d2d;
    width: 100%;
    padding: 60px 20px;
}

.info-table-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.info-table {
    width: 100%;
    max-width: 800px;
    border: 2px solid #dc2626;
    border-collapse: collapse;
    background-color: #2d2d2d;
}

.info-table tr {
    border-bottom: 1px solid #444;
}

.info-table tr:last-child {
    border-bottom: none;
}

.table-category {
    padding: 15px 20px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    width: 40%;
    border-right: 1px solid #444;
}

.table-value {
    padding: 15px 20px;
    color: white;
    font-size: 18px;
    width: 60%;
}

.invite-code-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.invite-code {
    border: 2px dashed #dc2626;
    padding: 8px 15px;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.copy-btn {
    background-color: #dc2626;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.copy-btn:hover {
    opacity: 0.9;
}

/* Colour Trading Section */
.colour-trading-section {
    background-color: #2d2d2d;
    width: 100%;
    padding: 60px 20px;
}

.colour-trading-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.colour-trading-content {
    flex: 1;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.colour-trading-heading {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 5px;
}

.colour-trading-text {
    font-size: 18px;
    line-height: 1.6;
    color: white;
    margin: 0;
}

.colour-trading-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.colour-trading-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Screenshots Section */
.screenshots-section {
    background-color: #2d2d2d;
    width: 100%;
    padding: 60px 20px;
}

.screenshots-container {
    max-width: 1400px;
    margin: 0 auto;
}

.screenshots-heading {
    text-align: center;
    color: white;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.screenshots-text {
    text-align: center;
    color: white;
    font-size: 18px;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.screenshots-grid {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.screenshot-img {
    width: 150px;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}

/* Lottery Section */
.lottery-section {
    background-color: #2d2d2d;
    width: 100%;
    padding: 60px 20px;
}

.lottery-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.lottery-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lottery-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.lottery-content {
    flex: 1;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lottery-heading {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 5px;
}

.lottery-text {
    font-size: 18px;
    line-height: 1.6;
    color: white;
    margin: 0;
}

.lottery-steps {
    margin: 8px 0;
    padding-left: 25px;
    color: white;
}

.lottery-step {
    font-size: 18px;
    line-height: 1.8;
    color: white;
    margin-bottom: 10px;
}

.lottery-advantages {
    margin: 8px 0;
    padding-left: 25px;
    color: white;
    list-style-type: disc;
}

.lottery-advantage {
    font-size: 18px;
    line-height: 1.8;
    color: white;
    margin-bottom: 10px;
}

.lottery-steps li::marker,
.lottery-advantages li::marker {
    color: white;
    font-weight: bold;
}

/* Login and Registration Section */
.login-reg-section {
    background-color: #2d2d2d;
    width: 100%;
    padding: 60px 20px;
}

.login-reg-container {
    max-width: 1400px;
    margin: 0 auto;
}

.login-reg-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.login-reg-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.login-reg-content {
    color: white;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 900px;
    margin: 0 auto;
}

.login-reg-heading {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 5px;
    text-align: center;
}

.login-reg-text {
    font-size: 18px;
    line-height: 1.6;
    color: white;
    margin: 0;
}

.login-reg-subheading {
    font-size: 22px;
    font-weight: 600;
    color: white;
    margin: 10px 0 8px 0;
}

/* Safety Section */
.safety-section {
    background-color: #2d2d2d;
    width: 100%;
    padding: 60px 20px;
}

.safety-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.safety-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.safety-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.safety-content {
    flex: 1;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.safety-heading {
    font-size: 36px;
    font-weight: bold;
    color: white;
    margin-bottom: 5px;
}

.safety-text {
    font-size: 18px;
    line-height: 1.6;
    color: white;
    margin: 0;
}

/* Trustworthiness Section */
.trustworthiness-section {
    background-color: #2d2d2d;
    width: 100%;
    padding: 60px 20px;
}

.trustworthiness-container {
    max-width: 1400px;
    margin: 0 auto;
}

.trustworthiness-content {
    color: white;
    display: flex;
    flex-direction: column;
    gap: 5px;
    max-width: 900px;
    margin: 0 auto;
}

.trustworthiness-heading {
    font-size: 18px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

.trustworthiness-factors {
    margin: 8px 0;
    padding-left: 25px;
    color: white;
}

.trustworthiness-factor {
    font-size: 18px;
    line-height: 1.6;
    color: white;
    margin-bottom: 8px;
}

.trustworthiness-factor strong {
    font-weight: 600;
    display: block;
    margin-bottom: 0;
}

.trustworthiness-factors li::marker {
    color: white;
    font-weight: bold;
}

.trustworthiness-text {
    font-size: 18px;
    line-height: 1.6;
    color: white;
    margin: 8px 0 0 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-items {
        gap: 15px;
    }
    
    .nav-text {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .nav-items {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    
    .action-buttons {
        margin-left: auto;
    }

    .hero-container {
        flex-direction: column;
        gap: 30px;
    }

    .hero-heading {
        font-size: 28px;
    }

    .hero-text {
        font-size: 16px;
    }

    .contents-heading {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .contents-buttons {
        gap: 10px;
    }

    .content-btn {
        font-size: 14px;
        padding: 10px 20px;
    }

    .what-container {
        flex-direction: column;
        gap: 30px;
    }

    .what-heading {
        font-size: 28px;
    }

    .what-text {
        font-size: 16px;
    }

    .table-category,
    .table-value {
        font-size: 16px;
        padding: 12px 15px;
    }

    .invite-code-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .invite-code {
        font-size: 14px;
        padding: 6px 12px;
    }

    .copy-btn {
        font-size: 14px;
        padding: 6px 16px;
    }

    .colour-trading-container {
        flex-direction: column;
        gap: 30px;
    }

    .colour-trading-heading {
        font-size: 28px;
    }

    .colour-trading-text {
        font-size: 16px;
    }

    .lottery-container {
        flex-direction: column;
        gap: 30px;
    }

    .lottery-heading {
        font-size: 28px;
    }

    .lottery-text {
        font-size: 16px;
    }

    .lottery-step,
    .lottery-advantage {
        font-size: 16px;
    }

    .screenshots-heading {
        font-size: 28px;
    }

    .screenshots-text {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .screenshot-img {
        width: 120px;
    }

    .login-reg-heading {
        font-size: 28px;
    }

    .login-reg-text {
        font-size: 16px;
    }

    .login-reg-subheading {
        font-size: 20px;
    }

    .safety-container {
        flex-direction: column;
        gap: 30px;
    }

    .safety-heading {
        font-size: 28px;
    }

    .safety-text {
        font-size: 16px;
    }

    .trustworthiness-heading {
        font-size: 16px;
    }

    .trustworthiness-text {
        font-size: 16px;
    }

    .trustworthiness-factor {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .screenshots-grid {
        gap: 10px;
    }

    .screenshot-img {
        width: 100px;
    }
}

@media (max-width: 480px) {
    .screenshot-img {
        width: 80px;
    }
}

