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

body {
    font-family: Arial, sans-serif;
    background-color: #1a0d2b;
    color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.logo {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}

h1 {
    font-size: 24px;
    color: #8a2be2;
}

.hero {
    text-align: center;
    padding: 50px 0;
}

h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    margin-bottom: 50px;
    color: #d3d3d3;
}

.activate-btn {
    background-color: transparent;
    border: 2px solid #ff8c00;
    color: #ff8c00;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.activate-btn:hover {
    background-color: #ff8c00;
    color: white;
}

.video-section {
    text-align: center;
    margin-top: 40px;
}

.video-placeholder {
    position: relative;
    display: inline-block;
}

.video-img {
    width: 300px;
    border-radius: 10px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 0, 0, 0.8);
    border-radius: 50%;
    cursor: pointer;
}

.play-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 58%;
    transform: translate(-50%, -50%);
    border-left: 15px solid white;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.video-placeholder p {
    margin-top: 10px;
    font-size: 16px;
    color: #d3d3d3;
}

/* Previous CSS remains the same... */

.mining-section {
    margin-top: 40px;
    padding: 20px;
    background-color: white;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.mining-header {
    background-color: #4b0082;
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 10px 10px 0 0;
    font-size: 18px;
    line-height: 1.5;
}

.mining-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 20px;
}

.phone-img {
    width: 300px;
    border-radius: 10px;
}

.mining-text {
    text-align: center;
}

.mining-text h3 {
    font-size: 28px;
    color: #4b0082;
    margin-bottom: 15px;
}

.mining-text p {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
}

.learn-btn {
    background-color: #4b0082;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.learn-btn:hover {
    background-color: #35006b;
}

/* Ensure responsiveness */
@media (min-width: 768px) {
    .mining-content {
        flex-direction: row;
        justify-content: center;
        gap: 40px;
    }

    .mining-text {
        text-align: left;
        max-width: 400px;
    }
}