
/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #000046, #1cb5e0);
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
    padding: 20px;
}
a {
    color: #1cb5e0;
    text-decoration: none;
}
a[rel="nofollow"] {
    /* No specific styling, just ensuring nofollow attribute is present */
}
h1, h2, h3, h4 {
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    margin-bottom: 20px;
}
h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-top: 20px;
}
h2 {
    font-size: 2rem;
    margin-top: 40px;
}
h3 {
    font-size: 1.75rem;
    margin-top: 30px;
}
h4 {
    font-size: 1.5rem;
    margin-top: 20px;
}
p {
    font-size: 1rem;
    margin-bottom: 15px;
}
ul {
    list-style: none;
    margin-bottom: 15px;
}
ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}
ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1cb5e0;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
table, th, td {
    border: 1px solid #1cb5e0;
}
th, td {
    padding: 10px;
    text-align: left;
}
pre {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    overflow-x: auto;
    margin-bottom: 20px;
}
code {
    font-family: 'Courier New', Courier, monospace;
    color: #1cb5e0;
}
.button {
    position: relative;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid #1cb5e0;
    color: #1cb5e0;
    font-size: 16px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.button:hover {
    background-color: rgba(28, 181, 224, 0.2);
    color: #ffffff;
}
.button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ripple 0.6s ease-out;
    opacity: 0;
}
.button:hover::before {
    animation: none;
    opacity: 1;
    width: 200px;
    height: 200px;
}
@keyframes ripple {
    0% { width: 0; height: 0; opacity: 1; }
    100% { width: 200px; height: 200px; opacity: 0; }
}
/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    z-index: 1000;
}
.navbar a {
    color: #1cb5e0;
    margin-left: 20px;
    font-size: 1rem;
    transition: color 0.3s ease;
}
.navbar a:hover {
    color: #00ffea;
}
.navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
}
/* Main Content */
.main {
    padding-top: 80px;
    max-width: 1200px;
    margin: 0 auto;
}
.section {
    margin-bottom: 60px;
}
.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #1cb5e0;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
}
.card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(28, 181, 224, 0.5);
}
.card img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
}
.card h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}
.card p {
    font-size: 0.95rem;
    margin-bottom: 15px;
}
.card a.button {
    font-size: 0.9rem;
}
/* Images */
.image-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
.image-grid img {
    width: calc(25% - 10px);
    border-radius: 5px;
}
@media (max-width: 1024px) {
    .image-grid img {
        width: calc(33.333% - 10px);
    }
}
@media (max-width: 768px) {
    .image-grid img {
        width: calc(50% - 10px);
    }
}
@media (max-width: 480px) {
    .image-grid img {
        width: 100%;
    }
}
/* Responsive Design */
@media (max-width: 1440px) {
    .main {
        padding: 60px 20px;
    }
}
@media (max-width: 1200px) {
    .card-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}
@media (max-width: 1024px) {
    .navbar a {
        margin-left: 15px;
    }
}
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }
    .navbar a {
        margin-left: 0;
        margin-top: 10px;
    }
    .main {
        padding: 50px 10px;
    }
}
@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.75rem;
    }
    h3 {
        font-size: 1.5rem;
    }
    h4 {
        font-size: 1.25rem;
    }
    .button {
        padding: 8px 16px;
        font-size: 14px;
    }
}
/* Interactive Particle Effects */
.particle-container {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}
.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(28, 181, 224, 0.5);
    border-radius: 50%;
    animation: moveParticle 5s infinite;
}
@keyframes moveParticle {
    from { transform: translateY(-100%); }
    to { transform: translateY(100%); }
}
/* Code Blocks Styling */
.code-block {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin-bottom: 20px;
}
.code-block code {
    display: block;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: 'Courier New', Courier, monospace;
    color: #1cb5e0;
}
/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid #1cb5e0;
}
.footer p {
    font-size: 0.9rem;
    color: #cccccc;
}
.footer .social-icons a {
    margin: 0 10px;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}
.footer .social-icons a:hover {
    color: #00ffea;
    transform: rotate(360deg);
}
/* Notification Banner */
.banner {
    text-align: center;
    padding: 10px 20px;
    background: rgba(28, 181, 224, 0.8);
    border-radius: 5px;
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #ffffff;
}

