* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-weight: 600;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    background: #188e73;
    color: white;
    padding: 40px;
    overflow-x: hidden;
    cursor: url('/Smiley.png'), auto;
}

.section {
    position: relative;
    overflow: hidden;
    background: url(/blue.png);
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px #00ff88;
    transition: transform 0.2s, box-shadow 0.3s;
    cursor: url('/Smiley.png'), auto;
}

.section:hover {
    box-shadow: 0 0 30px #e0fff1;
    transform: scale(1.01);
}

.section video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    opacity: 0.25;
    z-index: 0;
}

.section .content {
    position: relative;
    z-index: 2;
    padding: 30px;
}

h1 {
    font-size: 20px;
    text-transform: uppercase;
    color: #7afcb4;
    margin-bottom: 20px;
}

h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

h3 {
    font-size: 18px;
    margin-top: 15px;
}

ul {
    margin-left: 20px;
    margin-top: 10px;
}

li {
    font-size: 15px;
    margin-bottom: 8px;
}

.download-btn {
    display: inline-block;
    padding: 15px 30px;
    background: #00b66d;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    color: white;
    margin-top: 30px;
    transition: 0.3s;
    box-shadow: 0 0 10px #00ff99;
    cursor: url('images/cursor.png'), auto;
}

.download-btn:hover {
    background: #00ff99;
    color: black;
    transform: scale(1.05);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    transition: opacity 0.3s ease;
    opacity: 0;
}

.modal-content {
    margin: 10% auto;
    display: block;
    width: 80%;
    max-width: 800px;
    border-radius: 10px;
    transition: transform 0.3s ease;
    transform: scale(0.8);
}

.img {
    width: 460px;
    border-radius: 22px;
    cursor: pointer;
}

.mainbox {
    position: relative;
    overflow: hidden;
    background: url(/blue.png);
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px #00ff88;
    transition: transform 0.2s, box-shadow 0.3s;
    cursor: url('/Smiley.png'), auto;
}

.mainbox:hover {
    box-shadow: 0 0 30px #e0fff1;
    transform: scale(1.01);
}