@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Playwrite+AU+SA:wght@100..400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Oswald', sans-serif;
    background-color: #0f1016;
    color: #e4e4e4;
    padding: 20px;
}

header {
    background-color: #1a2335;
    color: #00ffcc;
    padding: 20px 0;
    text-align: center;
    font-size: 28px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 2px solid #00ffcc;
}

.string-menu {
    padding: 10px;
    font-size: 16px;
    margin: 20px;
    cursor: pointer;
    background-color: #00ffcc;
    color: #1a2335;
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.string-menu:hover {
    background-color: #00e6b3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.sale-section {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.sale-item {
    background-color: #1b1f2b;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    padding: 20px;
    flex: 1;
    min-width: 250px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #333;
}

.sale-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 255, 204, 0.4);
}

.sale-item img {
    width: 100%;
    max-width: 180px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.sale-item img:hover {
    transform: scale(1.1);
}

.sale-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #00ffcc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sale-item p {
    font-size: 16px;
    color: #a8b2b7;
    margin-bottom: 20px;
}

.btn {
    padding: 12px 25px;
    background-color: #00ffcc;
    color: #1a2335;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #00e6b3;
}

.embed {
    background-color: #161b22;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.embed h4 {
    color: #00ffcc;
    margin-bottom: 10px;
}

.embed ul {
    list-style-type: none;
    padding: 0;
}

.embed ul li {
    margin-bottom: 8px;
    color: #a8b2b7;
}

.embed img {
    width: 100%;
    border-radius: 8px;
    margin-top: 10px;
}

footer {
    background-color: #1a2335;
    color: #00ffcc;
    padding: 20px;
    text-align: center;
    margin-top: 50px;
    font-size: 14px;
    letter-spacing: 1px;
    border-top: 2px solid #00ffcc;
}


.containers {
    max-width: 1200px;
    margin: 0 auto;
}

.sale-sections {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.sale-items {
    background-color: #1b1f2b;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    padding: 20px;
    flex: 1;
    min-width: 250px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #333;
}

.sale-items:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 255, 204, 0.4);
}

.sale-items img {
    width: 100%;
    max-width: 180px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.sale-items img:hover {
    transform: scale(1.1);
}

.sale-items h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #00ffcc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sale-items p {
    font-size: 16px;
    color: #a8b2b7;
    margin-bottom: 20px;
}

.sale-sections iframe {
    border-radius: 8px; /* Optional: for rounded corners */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Optional: for a soft shadow effect */
}

.tiktok-embed {
    background-color: #0d0d0d; /* Dark background for embedded content */
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #2b2b2b; /* Subtle border */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
}

/* TikTok user link styling */
.tiktok-embed a {
    color: #00f5ff; /* Cybersecurity accent color */
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tiktok-embed a:hover {
    color: #00d4ff; /* Slightly lighter accent on hover */
}

/* Title text style for the TikTok content */
.tiktok-embed p {
    font-size: 18px;
    font-weight: 600;
    color: #00f5ff;
    margin: 10px 0;
}

/* Link to the music with hover effect */
.tiktok-embed a[title] {
    color: #00ff7f; /* Accent color for music link */
    font-size: 16px;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.tiktok-embed a[title]:hover {
    color: #00e86f; /* Slightly brighter accent */
}

/* Responsive design */
@media screen and (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .tiktok-embed {
        max-width: 100%;
        min-width: 100%;
    }
}

/* sun and night design */
.cybersecurity-mode {
    color: #00ffcc;
    border-bottom: 2px solid #00ffcc;
}

.grey-mode {
    background-color: #333;
    color: #fff;
}

.toggle-btn {
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    margin: 20px;
    transition: background-color 0.3s;
}

.toggle-btn:hover {
    background-color: #45a049;
}


#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;   /* Full width of the body */
    height: 100%;  /* Full height of the body */
    z-index: -1;    /* Keeps particles behind all other content */
}

.price {
    font-size: 1.5em;
    color: #FF6347; /* Change the color as needed */
    font-weight: bold;
}

