@font-face {
    font-family: 'Desolate';
    src: url('./assets/fonts/YomiyasuSansSerif.otf') format('truetype'), url('fonts/EntezareZohoor2.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    color: #fff;
    font-family: Desolate, sans-serif;
    overflow-x: hidden;
    background-image: url('./assets/img/bg.png');
    background-position: center;
    background-size: cover;
}

a {
    color: #fff;
    text-decoration: none;
}

a:hover {
    color: #1900ff;
}

.container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styling */
header {
    margin-bottom: 20px;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #fff;
    background-color: #000;
    padding: 5px 10px;
    border: 2px solid #fff;
}

.dot {
    color: #FF0033;
    font-size: 40px;
    margin: 0 15px;
}

.tagline {
    font-size: 28px;
    letter-spacing: 5px;
}

/* Content Area */
.content-area {
    display: flex;
    margin-bottom: 30px;
}

/* Sidebar Navigation */
.sidebar {
    width: 180px;
    padding-right: 15px;
}

.sidebar ul {
    list-style-type: none;
}

.sidebar li {
    margin-bottom: 10px;
    border-bottom: 1px solid #333;
}

.sidebar a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    display: block;
    padding: 5px 0;
}

.sidebar a:hover {
    color: #FF0033;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    position: relative;
}

.function-content {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 20px;
}

.text-function, .text-design {
    text-align: right;
    font-size: 16px;
    letter-spacing: 2px;
}

.text-content-box {
    border: 2px solid #fff;
    padding: 10px 20px;
    font-size: 24px;
    letter-spacing: 5px;
    text-align: center;
    margin-top: 10px;
}

.visual-element {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gear-animation {
    width: 100px;
    height: 100px;
    border: 1px solid #0066FF;
    border-radius: 50%;
    position: relative;
    animation: rotate 10s linear infinite;
    box-shadow: 0 0 15px #0066FF;
}

.gear-animation:before {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    border: 1px solid #0066FF;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px #0066FF;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Definition Area */
.definition {
    font-size: 12px;
    margin-bottom: 30px;
    font-style: italic;
    color: #CCC;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
}

/* Register Area */
.register {
    font-size: 14px;
    text-align: center;
    margin-top: 20px;
}

.register p:first-child {
    font-weight: bold;
    margin-bottom: 5px;
}

.register p:last-child {
    font-size: 12px;
    color: #CCC;
}

/* Responsive adjustments */
@media (max-width: 700px) {
    .content-area {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .sidebar ul {
        display: flex;
        flex-wrap: wrap;
    }
    
    .sidebar li {
        margin-right: 15px;
    }
}

.ascii-art-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}
        
.ascii-art {
    font-family: monospace;
    white-space: pre;
    line-height: 1;
    font-size: 8px;
    text-align: center;
    color: rgb(255, 0, 0);
    display: inline-block;
}